mariadb/mysql-test/r/comments.result

29 lines
316 B
Text
Raw Normal View History

select 1+2/*hello*/+3;
1+2/*hello*/+3
6
select 1 /* long
multi line comment */;
1
1
2002-02-15 01:49:02 +01:00
;
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
2002-02-15 01:49:02 +01:00
/* line with only comment */;