Add a test

This commit is contained in:
Alexey Milovidov 2021-01-25 22:25:49 +03:00
parent cfd47b2980
commit a47b0190fd
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,3 @@
1
QueryStart SELECT 1;
QueryFinish SELECT 1;

View File

@ -0,0 +1,5 @@
SET log_comment = 'log_comment test', log_queries = 1;
SELECT 1;
SYSTEM FLUSH LOGS;
SELECT type, query FROM system.query_log WHERE log_comment = 'log_comment test' AND event_date >= yesterday() AND type = 1 ORDER BY event_time DESC LIMIT 1;
SELECT type, query FROM system.query_log WHERE log_comment = 'log_comment test' AND event_date >= yesterday() AND type = 2 ORDER BY event_time DESC LIMIT 1;