summaryrefslogtreecommitdiff
path: root/mysql-test/suite/sys_vars/t/datetime_format_basic.test
blob: 553d312632882cc13730bc74c4017f163da81b2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#
# show the global and session values;
#
select @@global.datetime_format;
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
select @@session.datetime_format;
show global variables like 'datetime_format';
show session variables like 'datetime_format';
select * from information_schema.global_variables where variable_name='datetime_format';
select * from information_schema.session_variables where variable_name='datetime_format';

#
# show that it's read-only
#
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
set global datetime_format="foo";
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
set session datetime_format="foo";