mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
client/mysqlmanagerc.c
added support for quiet increased line buffer size client/mysqltest.c fixed memory leak added query logging to result file added error message logging to result file added enable_query_log/disable_query_log mysql-test/mysql-test-run.sh converted tests to use mysqlmanager Updated test results
This commit is contained in:
@ -1,15 +1,27 @@
|
||||
select 1+2/*hello*/+3;
|
||||
1+2/*hello*/+3
|
||||
6
|
||||
select 1 /* long
|
||||
multi line comment */;
|
||||
1
|
||||
1
|
||||
/* empty query */;
|
||||
Query was empty
|
||||
select 1 /*!32301 +1 */;
|
||||
1 /*!32301 +1
|
||||
2
|
||||
select 1 /*!52301 +1 */;
|
||||
1
|
||||
1
|
||||
select 1--1;
|
||||
1--1
|
||||
2
|
||||
select 1 --2
|
||||
+1;
|
||||
1 --2
|
||||
+1
|
||||
4
|
||||
select 1 # The rest of the row will be ignored
|
||||
;
|
||||
1
|
||||
1
|
||||
|
Reference in New Issue
Block a user