mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
505caa2879
Added protocol::flush() for easier embedded-server code Increase block allocation variables a bit as they where a bit too small for MySQL 4.1 Added option --silent to client_test client/mysqltest.c: Removed compiler warning Fixed identation & comments from earlier push Renamed variable 'disable_abort_on_error' to 'abort_on_error' Ensure that '$mysql_errno' also with --ps-protocol include/mysql_com.h: Removed special handling of net_flush for embedded server mysql-test/r/mysqltest.result: Remove usage of !$ in tests mysql-test/t/client_test.test: Use --silent mysql-test/t/comments.test: Remove usage of !$ in tests mysql-test/t/join_outer.test: Remove usage of !$ in tests mysql-test/t/key.test: Remove usage of !$ in tests mysql-test/t/mysqltest.test: Remove usage of !$ in tests mysql-test/t/show_check.test: Remove usage of !$ in tests mysql-test/t/temp_table.test: Remove usage of !$ in tests mysql-test/t/type_ranges.test: Remove usage of !$ in tests sql/mysqld.cc: Increase block allocation variables a bit as they where a bit too small for MySQL 4.1 sql/net_serv.cc: Remove special usage of net_flush in embedded server sql/protocol.cc: Added protocol::flush() for easier embedded-server code sql/protocol.h: Added protocol::flush() for easier embedded-server code sql/sql_prepare.cc: Added protocol::flush() for easier embedded-server code Remove one extra flush() for prepared statements sql/sql_show.cc: Added protocol::flush() for easier embedded-server code tests/client_test.c: Added option --silent
19 lines
388 B
Text
19 lines
388 B
Text
#
|
|
# Testing of comments
|
|
#
|
|
|
|
select 1+2/*hello*/+3;
|
|
select 1 /* long
|
|
multi line comment */;
|
|
--error 1065
|
|
;
|
|
select 1 /*!32301 +1 */;
|
|
select 1 /*!52301 +1 */;
|
|
select 1--1;
|
|
# Note that the following returns 4 while it should return 2
|
|
# This is because the mysqld server doesn't parse -- comments
|
|
select 1 --2
|
|
+1;
|
|
select 1 # The rest of the row will be ignored
|
|
;
|
|
/* line with only comment */;
|