mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 22:34:18 +01:00
21 lines
312 B
Text
21 lines
312 B
Text
|
#
|
||
|
# test for --maximum- my_getopt prefix
|
||
|
#
|
||
|
|
||
|
#
|
||
|
# ulong
|
||
|
#
|
||
|
SET @@session.auto_increment_increment=40960;
|
||
|
SELECT @@session.auto_increment_increment;
|
||
|
#
|
||
|
# ulonglong
|
||
|
#
|
||
|
SET @@session.tmp_table_size=40960;
|
||
|
SELECT @@session.tmp_table_size;
|
||
|
#
|
||
|
# ha_rows
|
||
|
#
|
||
|
SET @@session.max_join_size=40960;
|
||
|
SELECT @@session.max_join_size;
|
||
|
|