mariadb/mysql-test/suite/sys_vars/t/old_basic.test
Sergei Golubchik 76f0b94bb0 merge with 5.3
sql/sql_insert.cc:
  CREATE ... IF NOT EXISTS may do nothing, but
  it is still not a failure. don't forget to my_ok it.
  ******
  CREATE ... IF NOT EXISTS may do nothing, but
  it is still not a failure. don't forget to my_ok it.
sql/sql_table.cc:
  small cleanup
  ******
  small cleanup
2011-10-19 21:45:18 +02:00

15 lines
416 B
Text

#
# show the global and session values;
#
select @@global.old;
select @@session.old;
show global variables like 'old';
show session variables like 'old';
select * from information_schema.global_variables where variable_name='old';
select * from information_schema.session_variables where variable_name='old';
set global old=1;
set session old=1;
select @@global.old;
select @@session.old;
set @@global.old=DEFAULT;