mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
fb175a1beb
NOTE: Backport of: bzr log -r revid:sp1r-serg@sergbook.mysql.com-20070505200319-38337 ------------------------------------------------------------ revno: 2469.263.4 committer: serg@sergbook.mysql.com timestamp: Sat 2007-05-05 13:03:19 -0700 message: Removing deprecated features: --master-XXX command-line options log_bin_trust_routine_creators table_type BACKUP TABLE ... RESTORE TABLE ... SHOW PLUGIN LOAD TABLE ... FROM MASTER LOAD DATA FROM MASTER SHOW INNODB STATUS SHOW MUTEX STATUS SHOW TABLE TYPES ... TIMESTAMP(N) ... TYPE=engine RESET SLAVE don't reset connection parameters anymore LOAD DATA: check opt_secure_file_priv before access(filename) improved WARN_DEPRECATED macro
27 lines
700 B
Text
27 lines
700 B
Text
--error ER_UNKNOWN_SYSTEM_VARIABLE
|
|
set global log_bin_trust_routine_creators=1;
|
|
--error ER_UNKNOWN_SYSTEM_VARIABLE
|
|
set table_type='MyISAM';
|
|
--error ER_UNKNOWN_SYSTEM_VARIABLE
|
|
select @@table_type='MyISAM';
|
|
--error ER_PARSE_ERROR
|
|
backup table t1 to 'data.txt';
|
|
--error ER_PARSE_ERROR
|
|
restore table t1 from 'data.txt';
|
|
--error ER_PARSE_ERROR
|
|
show plugin;
|
|
--error ER_PARSE_ERROR
|
|
load table t1 from master;
|
|
--error ER_PARSE_ERROR
|
|
load data from master;
|
|
--error ER_PARSE_ERROR
|
|
SHOW INNODB STATUS;
|
|
--error ER_PARSE_ERROR
|
|
create table t1 (t6 timestamp(6));
|
|
--error ER_PARSE_ERROR
|
|
create table t1 (t6 timestamp) type=myisam;
|
|
--error ER_PARSE_ERROR
|
|
show table types;
|
|
--error ER_PARSE_ERROR
|
|
show mutex status;
|
|
|