mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
bb66c80aeb
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
27 lines
290 B
Text
27 lines
290 B
Text
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
|