2016-04-08 10:22:23 |
Laurynas Biveinis |
bug |
|
|
added bug |
2016-04-08 10:22:33 |
Laurynas Biveinis |
nominated for series |
|
percona-server/5.5 |
|
2016-04-08 10:22:33 |
Laurynas Biveinis |
bug task added |
|
percona-server/5.5 |
|
2016-04-08 10:22:33 |
Laurynas Biveinis |
nominated for series |
|
percona-server/5.7 |
|
2016-04-08 10:22:33 |
Laurynas Biveinis |
bug task added |
|
percona-server/5.7 |
|
2016-04-08 10:22:33 |
Laurynas Biveinis |
nominated for series |
|
percona-server/5.6 |
|
2016-04-08 10:22:33 |
Laurynas Biveinis |
bug task added |
|
percona-server/5.6 |
|
2016-04-08 10:22:39 |
Laurynas Biveinis |
percona-server/5.7: status |
New |
Invalid |
|
2016-04-08 10:22:41 |
Laurynas Biveinis |
percona-server/5.5: status |
New |
Won't Fix |
|
2016-04-08 10:22:43 |
Laurynas Biveinis |
percona-server/5.6: status |
New |
In Progress |
|
2016-04-08 10:22:45 |
Laurynas Biveinis |
percona-server/5.6: importance |
Undecided |
Low |
|
2016-04-08 10:22:47 |
Laurynas Biveinis |
percona-server/5.6: assignee |
|
Laurynas Biveinis (laurynas-biveinis) |
|
2016-04-08 10:40:42 |
Laurynas Biveinis |
description |
Minor issues discovered in 5.7 porting and fixed there:
- THD::extra_port field is unused
- A duplicated code fragment in open_tables:
if (need_prelocking && ! thd->lex->requires_prelocking())
thd->lex->mark_as_requiring_prelocking(save_query_tables_last);
if (need_prelocking && ! *start)
*start= thd->lex->query_tables;
if (need_prelocking && ! thd->lex->requires_prelocking())
thd->lex->mark_as_requiring_prelocking(save_query_tables_last);
if (need_prelocking && ! *start)
*start= thd->lex->query_tables;
- Leftover #define EXTENDED_FOR_COMMIT_ORDERED
- Unused LOCK_stats mutex
- The tail of percona_heap_blob.test tests MyISAM not MEMORY as intended (as a new connection takes the system default_storage_engine value)
- --let $rpl_skip_reset_master_and_slave=1 in rpl_backup_locks_mts is redundant
- hp_reallocate_chunkset has one plain return instead of DBUG_RETURN
- "--replace_column 3 CONNECTED_TIME 4 BUSY_TIME 5 CPU_TIME
SHOW CLIENT_STATISTICS;" in percona_userstat_test is one-off for replaced column names
- main.percona_processlist_pool_of_threads needs --source include/linux.inc
- threadpool_net_before_header_psi_noop, threadpool_net_after_header_psi can be made static
- mysqldump.c:skipped_keys_lsit can be made static
- QUERY_PROFILE::get_profiling can be made const
- PROFILING::enabled_getrusage can be made const
- PROFILING::print_current can be made const
- sys_vars.cc:void update_log_slow_verbosity(ulonglong* value_ptr) can be made static
- void threadpool_init_net_server_extension(THD *thd) can be made static
- int io_poll_associate_fd(int pollfd, int fd, void *data) can be made static
- int io_poll_start_read(int pollfd, int fd, void *data) can be made static
- plugin/percona-pam-for-mysql/.bzrignore can be deleted
- rpl.pseudo_server_id* testcases can have --source include/have_innodb.inc |
Minor issues discovered in 5.7 porting and fixed there:
- THD::extra_port field is unused
- A duplicated code fragment in open_tables:
if (need_prelocking && ! thd->lex->requires_prelocking())
thd->lex->mark_as_requiring_prelocking(save_query_tables_last);
if (need_prelocking && ! *start)
*start= thd->lex->query_tables;
if (need_prelocking && ! thd->lex->requires_prelocking())
thd->lex->mark_as_requiring_prelocking(save_query_tables_last);
if (need_prelocking && ! *start)
*start= thd->lex->query_tables;
- Leftover #define EXTENDED_FOR_COMMIT_ORDERED
- Unused LOCK_stats mutex
- The tail of percona_heap_blob.test tests MyISAM not MEMORY as intended (as a new connection takes the system default_storage_engine value)
- hp_reallocate_chunkset has one plain return instead of DBUG_RETURN
- "--replace_column 3 CONNECTED_TIME 4 BUSY_TIME 5 CPU_TIME
SHOW CLIENT_STATISTICS;" in percona_userstat_test is one-off for replaced column names
- main.percona_processlist_pool_of_threads needs --source include/linux.inc
- threadpool_net_before_header_psi_noop, threadpool_net_after_header_psi can be made static
- mysqldump.c:skipped_keys_lsit can be made static
- QUERY_PROFILE::get_profiling can be made const
- PROFILING::enabled_getrusage can be made const
- PROFILING::print_current can be made const
- sys_vars.cc:void update_log_slow_verbosity(ulonglong* value_ptr) can be made static
- void threadpool_init_net_server_extension(THD *thd) can be made static
- int io_poll_associate_fd(int pollfd, int fd, void *data) can be made static
- int io_poll_start_read(int pollfd, int fd, void *data) can be made static
- plugin/percona-pam-for-mysql/.bzrignore can be deleted
- rpl.pseudo_server_id* testcases can have --source include/have_innodb.inc |
|
2016-04-08 10:46:37 |
Laurynas Biveinis |
description |
Minor issues discovered in 5.7 porting and fixed there:
- THD::extra_port field is unused
- A duplicated code fragment in open_tables:
if (need_prelocking && ! thd->lex->requires_prelocking())
thd->lex->mark_as_requiring_prelocking(save_query_tables_last);
if (need_prelocking && ! *start)
*start= thd->lex->query_tables;
if (need_prelocking && ! thd->lex->requires_prelocking())
thd->lex->mark_as_requiring_prelocking(save_query_tables_last);
if (need_prelocking && ! *start)
*start= thd->lex->query_tables;
- Leftover #define EXTENDED_FOR_COMMIT_ORDERED
- Unused LOCK_stats mutex
- The tail of percona_heap_blob.test tests MyISAM not MEMORY as intended (as a new connection takes the system default_storage_engine value)
- hp_reallocate_chunkset has one plain return instead of DBUG_RETURN
- "--replace_column 3 CONNECTED_TIME 4 BUSY_TIME 5 CPU_TIME
SHOW CLIENT_STATISTICS;" in percona_userstat_test is one-off for replaced column names
- main.percona_processlist_pool_of_threads needs --source include/linux.inc
- threadpool_net_before_header_psi_noop, threadpool_net_after_header_psi can be made static
- mysqldump.c:skipped_keys_lsit can be made static
- QUERY_PROFILE::get_profiling can be made const
- PROFILING::enabled_getrusage can be made const
- PROFILING::print_current can be made const
- sys_vars.cc:void update_log_slow_verbosity(ulonglong* value_ptr) can be made static
- void threadpool_init_net_server_extension(THD *thd) can be made static
- int io_poll_associate_fd(int pollfd, int fd, void *data) can be made static
- int io_poll_start_read(int pollfd, int fd, void *data) can be made static
- plugin/percona-pam-for-mysql/.bzrignore can be deleted
- rpl.pseudo_server_id* testcases can have --source include/have_innodb.inc |
Minor issues discovered in 5.7 porting and fixed there:
- THD::extra_port field is unused
- A duplicated code fragment in open_tables:
if (need_prelocking && ! thd->lex->requires_prelocking())
thd->lex->mark_as_requiring_prelocking(save_query_tables_last);
if (need_prelocking && ! *start)
*start= thd->lex->query_tables;
if (need_prelocking && ! thd->lex->requires_prelocking())
thd->lex->mark_as_requiring_prelocking(save_query_tables_last);
if (need_prelocking && ! *start)
*start= thd->lex->query_tables;
- Leftover #define EXTENDED_FOR_COMMIT_ORDERED
- Unused LOCK_stats mutex
- The tail of percona_heap_blob.test tests MyISAM not MEMORY as intended (as a new connection takes the system default_storage_engine value)
- hp_reallocate_chunkset has one plain return instead of DBUG_RETURN
- "--replace_column 3 CONNECTED_TIME 4 BUSY_TIME 5 CPU_TIME
SHOW CLIENT_STATISTICS;" in percona_userstat_test is one-off for replaced column names
- main.percona_processlist_pool_of_threads needs --source include/linux.inc
- threadpool_net_before_header_psi_noop, threadpool_net_after_header_psi can be made static
- mysqldump.c:skipped_keys_list can be made static
- QUERY_PROFILE::get_profiling can be made const
- PROFILING::enabled_getrusage can be made const
- PROFILING::print_current can be made const
- sys_vars.cc:void update_log_slow_verbosity(ulonglong* value_ptr) can be made static
- void threadpool_init_net_server_extension(THD *thd) can be made static
- int io_poll_associate_fd(int pollfd, int fd, void *data) can be made static
- int io_poll_start_read(int pollfd, int fd, void *data) can be made static
- plugin/percona-pam-for-mysql/.bzrignore can be deleted
- rpl.pseudo_server_id* testcases can have --source include/have_innodb.inc |
|
2016-04-08 12:21:40 |
Laurynas Biveinis |
percona-server/5.6: status |
In Progress |
Fix Committed |
|
2016-04-11 10:42:08 |
Laurynas Biveinis |
tags |
|
low-hanging-fruit |
|
2016-04-12 10:27:18 |
Laurynas Biveinis |
percona-server/5.6: milestone |
|
5.6.29-76.3 |
|
2016-04-12 10:27:21 |
Laurynas Biveinis |
percona-server/5.7: status |
Invalid |
Fix Committed |
|
2016-04-12 10:27:23 |
Laurynas Biveinis |
percona-server/5.7: importance |
Undecided |
Low |
|
2016-04-12 10:27:25 |
Laurynas Biveinis |
percona-server/5.7: assignee |
|
Laurynas Biveinis (laurynas-biveinis) |
|
2016-04-12 10:27:27 |
Laurynas Biveinis |
percona-server/5.7: milestone |
|
5.7.11-5 |
|
2016-04-12 10:33:12 |
Laurynas Biveinis |
percona-server/5.7: status |
Fix Committed |
Fix Released |
|
2016-04-12 10:33:14 |
Laurynas Biveinis |
percona-server/5.6: status |
Fix Committed |
Fix Released |
|