ClickHouse/tests/queries/0_stateless/01337_mysql_global_variables.sql

10 lines
420 B
MySQL
Raw Normal View History

2021-09-12 12:35:27 +00:00
-- Tags: global, no-fasttest
2020-06-24 12:09:32 +00:00
SELECT @@test;
2020-06-24 07:05:50 +00:00
SELECT @@max_allowed_packet FORMAT CSVWithNames;
SELECT @@MAX_ALLOWED_PACKET FORMAT CSVWithNames;
SELECT @@max_allowed_packet, number FROM system.numbers LIMIT 3 FORMAT CSVWithNames;
2020-06-24 10:28:14 +00:00
SELECT @@session.auto_increment_increment FORMAT CSVWithNames;
2020-06-24 12:09:32 +00:00
SELECT @@session.auto_increment_increment AS auto_increment_increment FORMAT CSVWithNames;
SELECT @@Version FORMAT CSVWithNames;