mirror of
https://github.com/MariaDB/server.git
synced 2025-05-10 02:01:19 +03:00
- Added --verbose to BUILD scripts to get make to write out compile commands. - Detect if AM_EXTRA_MAKEFLAGS=VERBOSE=1 was used with build scripts. - Don't write warnings about replication variables when doing bootstrap. - Fixed that mysql_cond_wait() and mysql_cond_timedwait() will report original source file in case of errors. - Ignore some compiler warnings BUILD/FINISH.sh: Detect if AM_EXTRA_MAKEFLAGS=VERBOSE=1 or --verbose was used BUILD/SETUP.sh: Added --verbose to print out the full compile lines Updated help message client/mysqltest.cc: Fixed that one can use 'replace' with cat_file cmake/configure.pl: If --verbose is used, get make to write out compile commands debian/dist/Debian/rules: Added $AM_EXTRA_MAKEFLAGS to get VERBOSE=1 on buildbot builds debian/dist/Ubuntu/rules: Added $AM_EXTRA_MAKEFLAGS to get VERBOSE=1 on buildbot builds include/my_pthread.h: Made set_timespec_time_nsec() more portable. include/mysql/psi/mysql_thread.h: Fixed that mysql_cond_wait() and mysql_cond_timedwait() will report original source file in case of errors. mysql-test/suite/innodb/r/auto_increment_dup.result: Fixed wrong DBUG_SYNC mysql-test/suite/innodb/t/auto_increment_dup.test: Fixed wrong DBUG_SYNC mysql-test/suite/perfschema/include/upgrade_check.inc: Make test more portable for changes in *.sql files mysql-test/suite/perfschema/r/pfs_upgrade.result: Updated test results mysql-test/valgrind.supp: Ignore running Aria checkpoint thread scripts/mysqlaccess.sh: Changed reference of bugs database Ensure that also client-server group is read. sql/handler.cc: Added missing syncpoint sql/mysqld.cc: Don't write warnings about replication variables when doing bootstrap sql/mysqld.h: Don't write warnings about replication variables when doing bootstrap sql/rpl_rli.cc: Don't write warnings about replication variables when doing bootstrap sql/sql_insert.cc: Don't mask SERVER_SHUTDOWN in insert_delayed This is done to be able to distingush between shutdown and interrupt errors support-files/compiler_warnings.supp: Ignore some compiler warnings in xtradb,innobase, oqgraph, yassl, string3.h
149 lines
8.9 KiB
Plaintext
149 lines
8.9 KiB
Plaintext
drop table if exists test.user_table;
|
|
drop procedure if exists test.user_proc;
|
|
drop function if exists test.user_func;
|
|
drop event if exists test.user_event;
|
|
"Testing mysql_upgrade with TABLE performance_schema.user_table"
|
|
create table test.user_table(a int);
|
|
use performance_schema;
|
|
show tables like "user_table";
|
|
Tables_in_performance_schema (user_table)
|
|
user_table
|
|
ERROR 1050 (42S01) at line ###: Table 'cond_instances' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_current' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_history' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_history_long' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_summary_by_instance' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_summary_by_thread_by_event_name' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_summary_global_by_event_name' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'file_instances' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'file_summary_by_event_name' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'file_summary_by_instance' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'mutex_instances' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'performance_timers' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'rwlock_instances' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'setup_consumers' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'setup_instruments' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'setup_timers' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'threads' already exists
|
|
ERROR 1644 (HY000) at line ###: Unexpected content found in the performance_schema database.
|
|
FATAL ERROR: Upgrade failed
|
|
show tables like "user_table";
|
|
Tables_in_performance_schema (user_table)
|
|
user_table
|
|
use test;
|
|
drop table test.user_table;
|
|
"Testing mysql_upgrade with VIEW performance_schema.user_view"
|
|
create view test.user_view as select "Not supposed to be here";
|
|
use performance_schema;
|
|
show tables like "user_view";
|
|
Tables_in_performance_schema (user_view)
|
|
user_view
|
|
ERROR 1050 (42S01) at line ###: Table 'cond_instances' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_current' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_history' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_history_long' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_summary_by_instance' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_summary_by_thread_by_event_name' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_summary_global_by_event_name' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'file_instances' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'file_summary_by_event_name' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'file_summary_by_instance' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'mutex_instances' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'performance_timers' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'rwlock_instances' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'setup_consumers' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'setup_instruments' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'setup_timers' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'threads' already exists
|
|
ERROR 1644 (HY000) at line ###: Unexpected content found in the performance_schema database.
|
|
FATAL ERROR: Upgrade failed
|
|
show tables like "user_view";
|
|
Tables_in_performance_schema (user_view)
|
|
user_view
|
|
use test;
|
|
drop view test.user_view;
|
|
"Testing mysql_upgrade with PROCEDURE performance_schema.user_proc"
|
|
create procedure test.user_proc()
|
|
select "Not supposed to be here";
|
|
update mysql.proc set db='performance_schema' where name='user_proc';
|
|
ERROR 1050 (42S01) at line ###: Table 'cond_instances' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_current' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_history' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_history_long' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_summary_by_instance' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_summary_by_thread_by_event_name' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_summary_global_by_event_name' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'file_instances' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'file_summary_by_event_name' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'file_summary_by_instance' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'mutex_instances' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'performance_timers' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'rwlock_instances' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'setup_consumers' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'setup_instruments' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'setup_timers' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'threads' already exists
|
|
ERROR 1644 (HY000) at line ###: Unexpected content found in the performance_schema database.
|
|
FATAL ERROR: Upgrade failed
|
|
select name from mysql.proc where db='performance_schema';
|
|
name
|
|
user_proc
|
|
update mysql.proc set db='test' where name='user_proc';
|
|
drop procedure test.user_proc;
|
|
"Testing mysql_upgrade with FUNCTION performance_schema.user_func"
|
|
create function test.user_func() returns integer
|
|
return 0;
|
|
update mysql.proc set db='performance_schema' where name='user_func';
|
|
ERROR 1050 (42S01) at line ###: Table 'cond_instances' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_current' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_history' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_history_long' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_summary_by_instance' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_summary_by_thread_by_event_name' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_summary_global_by_event_name' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'file_instances' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'file_summary_by_event_name' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'file_summary_by_instance' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'mutex_instances' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'performance_timers' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'rwlock_instances' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'setup_consumers' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'setup_instruments' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'setup_timers' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'threads' already exists
|
|
ERROR 1644 (HY000) at line ###: Unexpected content found in the performance_schema database.
|
|
FATAL ERROR: Upgrade failed
|
|
select name from mysql.proc where db='performance_schema';
|
|
name
|
|
user_func
|
|
update mysql.proc set db='test' where name='user_func';
|
|
drop function test.user_func;
|
|
"Testing mysql_upgrade with EVENT performance_schema.user_event"
|
|
create event test.user_event on schedule every 1 day do
|
|
select "not supposed to be here";
|
|
update mysql.event set db='performance_schema' where name='user_event';
|
|
ERROR 1050 (42S01) at line ###: Table 'cond_instances' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_current' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_history' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_history_long' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_summary_by_instance' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_summary_by_thread_by_event_name' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'events_waits_summary_global_by_event_name' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'file_instances' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'file_summary_by_event_name' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'file_summary_by_instance' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'mutex_instances' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'performance_timers' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'rwlock_instances' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'setup_consumers' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'setup_instruments' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'setup_timers' already exists
|
|
ERROR 1050 (42S01) at line ###: Table 'threads' already exists
|
|
ERROR 1644 (HY000) at line ###: Unexpected content found in the performance_schema database.
|
|
FATAL ERROR: Upgrade failed
|
|
select name from mysql.event where db='performance_schema';
|
|
name
|
|
user_event
|
|
update mysql.event set db='test' where name='user_event';
|
|
drop event test.user_event;
|