mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
23145cfed7
bmove_allign -> bmove_align Added OLAP function ROLLUP Split mysql_fix_privilege_tables to a script and a .sql data file Added new (MEMROOT*) functions to avoid calling current_thd() when creating some common objects. Added table_alias_charset, for easier --lower-case-table-name handling Better SQL_MODE handling (Setting complex options also sets sub options) New (faster) assembler string functions for x86
28 lines
316 B
Text
28 lines
316 B
Text
select 1+2/*hello*/+3;
|
|
1+2/*hello*/+3
|
|
6
|
|
select 1 /* long
|
|
multi line comment */;
|
|
1
|
|
1
|
|
;
|
|
ERROR 42000: 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
|
|
/* line with only comment */;
|