mysqltest.result
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:13k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. select -1 as "before_use_test" ;
  2. before_use_test
  3. -1
  4. select otto from (select 1 as otto) as t1;
  5. otto
  6. 1
  7. select otto from (select 1 as otto) as t1;
  8. otto
  9. 1
  10. mysqltest: At line 1: query 'select friedrich from (select 1 as otto) as t1' failed: 1054: Unknown column 'friedrich' in 'field list'
  11. select friedrich from (select 1 as otto) as t1;
  12. ERROR 42S22: Unknown column 'friedrich' in 'field list'
  13. select otto from (select 1 as otto) as t1;
  14. otto
  15. 1
  16. mysqltest: At line 1: query 'select otto from (select 1 as otto) as t1' succeeded - should have failed with sqlstate 42S22...
  17. select friedrich from (select 1 as otto) as t1;
  18. ERROR 42S22: Unknown column 'friedrich' in 'field list'
  19. mysqltest: At line 1: query 'select friedrich from (select 1 as otto) as t1' failed with wrong sqlstate 42S22 instead of 00000...
  20. select otto from (select 1 as otto) as t1;
  21. otto
  22. 1
  23. select 0 as "after_successful_stmt_errno" ;
  24. after_successful_stmt_errno
  25. 0
  26. garbage ;
  27. ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'garbage' at line 1
  28. select 1064 as "after_wrong_syntax_errno" ;
  29. after_wrong_syntax_errno
  30. 1064
  31. garbage ;
  32. ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'garbage' at line 1
  33. select 1064 as "after_let_var_equal_value" ;
  34. after_let_var_equal_value
  35. 1064
  36. garbage ;
  37. ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'garbage' at line 1
  38. set @my_var= 'abc' ;
  39. select 0 as "after_set_var_equal_value" ;
  40. after_set_var_equal_value
  41. 0
  42. garbage ;
  43. ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'garbage' at line 1
  44. select 1064 as "after_disable_warnings_command" ;
  45. after_disable_warnings_command
  46. 1064
  47. drop table if exists t1 ;
  48. garbage ;
  49. ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'garbage' at line 1
  50. drop table if exists t1 ;
  51. select 0 as "after_disable_warnings" ;
  52. after_disable_warnings
  53. 0
  54. garbage ;
  55. ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'garbage' at line 1
  56. select 3 from t1 ;
  57. ERROR 42S02: Table 'test.t1' doesn't exist
  58. select 1146 as "after_minus_masked" ;
  59. after_minus_masked
  60. 1146
  61. garbage ;
  62. ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'garbage' at line 1
  63. select 3 from t1 ;
  64. ERROR 42S02: Table 'test.t1' doesn't exist
  65. select 1146 as "after_!_masked" ;
  66. after_!_masked
  67. 1146
  68. garbage ;
  69. ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'garbage' at line 1
  70. select -1 as "after_let_errno_equal_value" ;
  71. after_let_errno_equal_value
  72. -1
  73. garbage ;
  74. ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'garbage' at line 1
  75. prepare stmt from "select 3 from t1" ;
  76. ERROR 42S02: Table 'test.t1' doesn't exist
  77. select 1146 as "after_failing_prepare" ;
  78. after_failing_prepare
  79. 1146
  80. create table t1 ( f1 char(10));
  81. garbage ;
  82. ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'garbage' at line 1
  83. prepare stmt from "select 3 from t1" ;
  84. select 0 as "after_successful_prepare" ;
  85. after_successful_prepare
  86. 0
  87. garbage ;
  88. ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'garbage' at line 1
  89. execute stmt;
  90. 3
  91. select 0 as "after_successful_execute" ;
  92. after_successful_execute
  93. 0
  94. drop table t1;
  95. garbage ;
  96. ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'garbage' at line 1
  97. execute stmt;
  98. ERROR 42S02: Table 'test.t1' doesn't exist
  99. select 1146 as "after_failing_execute" ;
  100. after_failing_execute
  101. 1146
  102. garbage ;
  103. ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'garbage' at line 1
  104. execute __stmt_;
  105. ERROR HY000: Unknown prepared statement handler (__stmt_) given to EXECUTE
  106. select 1243 as "after_failing_execute" ;
  107. after_failing_execute
  108. 1243
  109. garbage ;
  110. ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'garbage' at line 1
  111. deallocate prepare stmt;
  112. select 0 as "after_successful_deallocate" ;
  113. after_successful_deallocate
  114. 0
  115. garbage ;
  116. ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'garbage' at line 1
  117. deallocate prepare __stmt_;
  118. ERROR HY000: Unknown prepared statement handler (__stmt_) given to DEALLOCATE PREPARE
  119. select 1243 as "after_failing_deallocate" ;
  120. after_failing_deallocate
  121. 1243
  122. garbage ;
  123. ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'garbage' at line 1
  124. select 1064 as "after_--disable_abort_on_error" ;
  125. after_--disable_abort_on_error
  126. 1064
  127. select 3 from t1 ;
  128. ERROR 42S02: Table 'test.t1' doesn't exist
  129. select 3 from t1 ;
  130. ERROR 42S02: Table 'test.t1' doesn't exist
  131. select 3 from t1 ;
  132. ERROR 42S02: Table 'test.t1' doesn't exist
  133. select 1146 as "after_!errno_masked_error" ;
  134. after_!errno_masked_error
  135. 1146
  136. mysqltest: At line 1: query 'select 3 from t1' failed with wrong errno 1146 instead of 1000...
  137. mysqltest: At line 1: query 'select 3 from t1' failed with wrong errno 1146 instead of 1000...
  138. garbage ;
  139. ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'garbage' at line 1
  140. select 1064 as "after_--enable_abort_on_error" ;
  141. after_--enable_abort_on_error
  142. 1064
  143. select 3 from t1 ;
  144. ERROR 42S02: Table 'test.t1' doesn't exist
  145. mysqltest: At line 1: query 'select 3 from t1' failed with wrong errno 1146 instead of 1064...
  146. mysqltest: At line 1: query 'select 3 from t1' failed: 1146: Table 'test.t1' doesn't exist
  147. hello
  148. hello
  149. ;;;;;;;;
  150. # MySQL: -- The
  151. mysqltest: At line 1: End of line junk detected: "6"
  152. mysqltest: At line 1: End of line junk detected: "6"
  153. mysqltest: At line 1: Missing delimiter
  154. mysqltest: At line 1: Extra delimiter ";" found
  155. MySQL
  156. "MySQL"
  157. MySQL: The world''s most popular open source database
  158. "MySQL: The world's most popular open source database"
  159. MySQL: The world''s
  160. most popular open
  161. source database
  162. # MySQL: The world''s
  163. # most popular open
  164. # source database
  165. - MySQL: The world''s
  166. - most popular open
  167. - source database
  168. - MySQL: The world''s
  169. -- most popular open
  170. -- source database
  171. # MySQL: The
  172. --world''s
  173. # most popular
  174. -- open
  175. - source database
  176. "MySQL: The world's most popular; open source database"
  177. "MySQL: The world's most popular ; open source database"
  178. "MySQL: The world's most popular ;open source database"
  179. echo message echo message
  180. mysqltest: At line 1: Empty variable
  181. mysqltest: At line 1: command "false" failed
  182. mysqltest: At line 1: Missing argument in exec
  183. MySQL
  184. "MySQL"
  185. MySQL: The
  186. world''s most
  187. popular open
  188. source database
  189. # MySQL: The
  190. # world''s most
  191. # popular open
  192. # source database
  193. -- MySQL: The
  194. -- world''s most
  195. -- popular open
  196. -- source database
  197. # MySQL: The
  198. - world''s most
  199. -- popular open
  200. # source database
  201. '$message'
  202. "$message"
  203. hej
  204. hej 
  205. hej
  206. 1
  207. a long variable content
  208. a long variable content
  209. a long $where variable content
  210. mysqltest: At line 1: Missing arguments to let
  211. mysqltest: At line 1: Missing variable name in let
  212. mysqltest: At line 1: Variable name in hi=hi does not start with '$'
  213. mysqltest: At line 1: Missing assignment operator in let
  214. mysqltest: At line 1: Missing assignment operator in let
  215. mysqltest: At line 1: Missing arguments to let
  216. mysqltest: At line 1: Missing variable name in let
  217. mysqltest: At line 1: Variable name in =hi does not start with '$'
  218. mysqltest: At line 1: Missing assignment operator in let
  219. mysqltest: At line 1: Missing file name in source
  220. mysqltest: At line 1: Could not open file ./non_existingFile
  221. mysqltest: In included file "./var/tmp/recursive.sql": At line 1: Source directives are nesting too deep
  222. mysqltest: In included file "./var/tmp/error.sql": At line 1: query 'garbage ' failed: 1064: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'garbage' at line 1
  223. 2 = outer loop variable after while
  224. here is the sourced script
  225. 2 = outer loop variable before dec
  226. 1 = outer loop variable after dec
  227. 1 = outer loop variable after while
  228. here is the sourced script
  229. 1 = outer loop variable before dec
  230. 0 = outer loop variable after dec
  231. 2 = outer loop variable after while
  232. here is the sourced script
  233. 2 = outer loop variable before dec
  234. 1 = outer loop variable after dec
  235. 1 = outer loop variable after while
  236. here is the sourced script
  237. 1 = outer loop variable before dec
  238. 0 = outer loop variable after dec
  239. In loop
  240. here is the sourced script
  241. In loop
  242. here is the sourced script
  243. In loop
  244. here is the sourced script
  245. In loop
  246. here is the sourced script
  247. In loop
  248. here is the sourced script
  249. In loop
  250. here is the sourced script
  251. In loop
  252. here is the sourced script
  253. In loop
  254. here is the sourced script
  255. In loop
  256. here is the sourced script
  257. mysqltest: At line 1: Missing argument to sleep
  258. mysqltest: At line 1: Invalid argument to sleep "abc"
  259. 1
  260. 2
  261. 101
  262. hej
  263. 1
  264. mysqltest: At line 1: Missing arguments to inc
  265. mysqltest: At line 1: First argument to inc must be a variable (start with $)
  266. mysqltest: At line 1: End of line junk detected: "1000"
  267. 4
  268. 4
  269. -1
  270. -2
  271. 99
  272. hej
  273. -1
  274. mysqltest: At line 1: Missing arguments to dec
  275. mysqltest: At line 1: First argument to dec must be a variable (start with $)
  276. mysqltest: At line 1: End of line junk detected: "1000"
  277. mysqltest: At line 1: Missing arguments to system, nothing to do!
  278. mysqltest: At line 1: Missing arguments to system, nothing to do!
  279. mysqltest: At line 1: system command 'false' failed
  280. test
  281. test2
  282. test3
  283. test4
  284. 1
  285. mysqltest: In included file "./include/mysqltest_while.inc": At line 64: Nesting too deeply
  286. mysqltest: At line 1: missing '(' in while
  287. mysqltest: At line 1: missing ')' in while
  288. mysqltest: At line 1: Missing '{' after while. Found "dec $i"
  289. mysqltest: At line 1: Stray '}' - end of block before beginning
  290. mysqltest: At line 1: Stray 'end' command - end of block before beginning
  291. mysqltest: At line 1: query '' failed: 1065: Query was empty
  292. mysqltest: At line 1: Missing '{' after while. Found "echo hej"
  293. mysqltest: At line 3: Missing end of block
  294. mysqltest: At line 1: Missing newline between while and '{'
  295. mysqltest: At line 1: missing '(' in if
  296. mysqltest: At line 1: Stray 'end' command - end of block before beginning
  297. select "b" bs col1, "c" bs col2;
  298. col1 col2
  299. b c
  300. seledt "b" bs dol1, "d" bs dol2;
  301. dol1 dol2
  302. b d
  303. mysqltest: At line 1: Wrong number of arguments to replace_result in 'replace_result a'
  304. mysqltest: At line 1: Wrong number of arguments to replace_result in 'replace_result a;'
  305. mysqltest: At line 1: Wrong number of arguments to replace_result in 'replace_result a'
  306. mysqltest: At line 1: Wrong number of arguments to replace_result in 'replace_result a '
  307. mysqltest: At line 1: Wrong number of arguments to replace_result in 'replace_result a b c'
  308. mysqltest: At line 1: Wrong number of arguments to replace_result in 'replace_result a b c '
  309. select "a" as col1, "c" as col2;
  310. col1 col2
  311. b c
  312. select "a" as col1, "c" as col2;
  313. col1 col2
  314. b d
  315. mysqltest: At line 1: Wrong column number to replace_column in 'replace_column a'
  316. mysqltest: At line 1: Wrong number of arguments to replace_column in 'replace_column 1'
  317. mysqltest: At line 1: Wrong column number to replace_column in 'replace_column a b'
  318. mysqltest: At line 1: Wrong column number to replace_column in 'replace_column a 1'
  319. mysqltest: At line 1: Wrong column number to replace_column in 'replace_column 1 b c '
  320. mysqltest: At line 1: Invalid integer argument "10!"
  321. mysqltest: At line 1: End of line junk detected: "!"
  322. mysqltest: At line 1: Invalid integer argument "a"
  323. Output from mysqltest-x.inc
  324. Output from mysqltest-x.inc
  325. Output from mysqltest-x.inc
  326. mysqltest: Could not open ./non_existing_file.inc: errno = 2
  327. failing_statement;
  328. ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'failing_statement' at line 1
  329. failing_statement;
  330. ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'failing_statement' at line 1
  331. SELECT 1 as a;
  332. a
  333. 1