mirror of
https://github.com/MariaDB/server.git
synced 2025-05-06 05:49:55 +02:00

the test tests whether short options work on the server command line * remove 'show variables' for variables not affected by short options * remove options, that are not short * remove options, that cannot be tested from SQL * in particular, -T12 doesn't affect the test output, but cases ~30sec delay on shutdown * use -W1 as -W2 is the default, so doesn't affect the test output
18 lines
531 B
Text
18 lines
531 B
Text
select 'Ok, the server started' as result;
|
|
result
|
|
Ok, the server started
|
|
select @@SQL_MODE;
|
|
@@SQL_MODE
|
|
REAL_AS_FLOAT,PIPES_AS_CONCAT,ANSI_QUOTES,IGNORE_SPACE,ANSI
|
|
show global variables like 'sql_mode';
|
|
Variable_name Value
|
|
sql_mode REAL_AS_FLOAT,PIPES_AS_CONCAT,ANSI_QUOTES,IGNORE_SPACE,ANSI
|
|
select @@character_set_server;
|
|
@@character_set_server
|
|
utf8mb3
|
|
show global variables like 'character_set_system';
|
|
Variable_name Value
|
|
character_set_system utf8mb3
|
|
show global variables like 'log_warnings';
|
|
Variable_name Value
|
|
log_warnings 1
|