mysql-4.0.cfg 291 KB
Newer Older
monty@mysql.com's avatar
monty@mysql.com committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#This file is automaticly generated by crash-me 1.61

NEG=yes					# update of column= -column
   ###< create table crash_q (a integer)
   ###> OK
   ###< insert into crash_q values(10)
   ###> OK
   ###< update crash_q set a=-a
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
Need_cast_for_null=no			# Need to cast NULL for arithmetic
   ### Check if numeric_null (NULL) is 'NULL'
16 17
   ### Check if numeric_null (NULL) is 'NULL'
   ### Check if numeric_null (NULL) is 'NULL'
monty@mysql.com's avatar
monty@mysql.com committed
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
alter_add_col=yes			# Alter table add column
   ###< alter table crash_q add d integer
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
alter_add_constraint=yes		# Alter table add constraint
   ###< alter table crash_q add constraint c2 check(a > b)
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
alter_add_foreign_key=no		# Alter table add foreign key
   ###< alter table crash_q add constraint f1 foreign key(c1)
   ###> execute error: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 '' at line 1
   ###<  references crash_q1(c1)
   ###> execute error: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 'references crash_q1(c1)' at line 1
   ###
   ###As far as some queries didnt return OK, result is NO
alter_add_multi_col=yes			# Alter table add many columns
   ###< alter table crash_q add (f integer,g integer)
   ###> OK
alter_add_primary_key=with constraint	# Alter table add primary key
   ###< alter table crash_q1 add constraint p1 primary key(c1)
   ###> OK
alter_add_unique=yes			# Alter table add unique
   ###< alter table crash_q add constraint u1 unique(c1)
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
alter_alter_col=yes			# Alter table alter column default
   ###< alter table crash_q alter b set default 10
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
alter_change_col=yes			# Alter table change column
   ###< alter table crash_q change a e char(50)
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
alter_drop_col=yes			# Alter table drop column
   ###< alter table crash_q drop column b
   ###> OK
alter_drop_constraint=no		# Alter table drop constraint
   ###< alter table crash_q drop constraint c2
   ###> execute error: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 'constraint c2' at line 1
   ###
   ###< alter table crash_q drop constraint c2 restrict
   ###> execute error: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 'constraint c2 restrict' at line 1
alter_drop_foreign_key=with drop foreign key	# Alter table drop foreign key
   ###< alter table crash_q drop constraint f1
   ###> execute error: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 'constraint f1' at line 1
   ###
   ###< alter table crash_q drop constraint f1 restrict
   ###> execute error: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 'constraint f1 restrict' at line 1
   ###
   ###< alter table crash_q drop foreign key f1
   ###> OK
alter_drop_primary_key=drop primary key	# Alter table drop primary key
   ###< alter table crash_q1 drop constraint p1 restrict
   ###> execute error: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 'constraint p1 restrict' at line 1
   ###
   ###< alter table crash_q1 drop primary key
   ###> OK
alter_drop_unique=with drop key		# Alter table drop unique
   ###< alter table crash_q drop constraint u1
   ###> execute error: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 'constraint u1' at line 1
   ###
   ###< alter table crash_q drop constraint u1 restrict
   ###> execute error: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 'constraint u1 restrict' at line 1
   ###
87
   ###< alter table crash_q drop key u1
monty@mysql.com's avatar
monty@mysql.com committed
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
   ###> OK
alter_modify_col=yes			# Alter table modify column
   ###< alter table crash_q modify c1 CHAR(20)
   ###> OK
alter_rename_table=yes			# Alter table rename table
   ###< alter table crash_q rename to crash_q1
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
atomic_updates=no			# atomic updates
   ###< create table crash_q (a integer not null,primary key (a)) 
   ###> OK
   ###< insert into crash_q values (2)
   ###> OK
   ###< insert into crash_q values (3)
   ###> OK
   ###< insert into crash_q values (1)
   ###> OK
   ###< update crash_q set a=a+1
   ###> execute error:Duplicate entry '3' for key 1
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as some queries didnt return OK, result is NO
automatic_rowid=_rowid			# Automatic row id
   ###< create table crash_q (a int not null, primary key(a))
   ###> OK
   ###< insert into crash_q values (1)
   ###> OK
   ###< select _rowid from crash_q
   ###> OK
   ###< drop table crash_q 
   ###> OK
binary_numbers=no			# binary numbers (0b1001)
   ###< select 0b1001 
   ###> execute error:Unknown column '0b1001' in 'field list'
   ###
   ###As far as some queries didnt return OK, result is NO
binary_strings=no			# binary strings (b'0110')
   ###< select b'0110' 
   ###> execute error:Unknown column 'b' in 'field list'
   ###
   ###As far as some queries didnt return OK, result is NO
case_insensitive_strings=yes		# Case insensitive compare
   ###
   ###<select b from crash_me where b = 'A'
   ###>a
char_is_space_filled=no			# char are space filled
   ###
   ###<select concat(b,b) from crash_me where b = 'a         '
   ###>aa
   ###We expected 'a         a         ' but got 'aa' 
column_alias=yes			# Column alias
   ###< select a as ab from crash_me
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
columns_in_group_by=+64			# number of columns in group by
   ###We are trying (example with N=5):
   ###create table crash_q (q1 integer,q2 integer,q3 integer,q4 integer,q5 integer)
   ###insert into crash_q values(1,1,1,1,1)
   ###insert into crash_q values(1,1,1,1,1)
   ###select q1,q2,q3,q4,q5 from crash_q group by q1,q2,q3,q4,q5
columns_in_order_by=+64			# number of columns in order by
   ###We are trying (example with N=5):
   ###create table crash_q (q1 integer,q2 integer,q3 integer,q4 integer,q5 integer)
   ###insert into crash_q values(1,1,1,1,1)
   ###insert into crash_q values(1,1,1,1,1)
   ###select * from crash_q order by q1,q2,q3,q4,q5
comment_#=yes				# # as comment
   ###< select * from crash_me # Testing of comments
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
comment_--=yes				# -- as comment (ANSI)
   ###< select * from crash_me -- Testing of comments
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
comment_/**/=yes			# /* */ as comment
   ###< select * from crash_me /* Testing of comments */
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
comment_//=no				# // as comment
   ###< select * from crash_me // Testing of comments
   ###> execute error: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 '// Testing of comments' at line 1
   ###
   ###As far as some queries didnt return OK, result is NO
compute=no				# Compute
   ###< select a from crash_me order by a compute sum(a) by a
   ###> execute error: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 'compute sum(a) by a' at line 1
   ###
   ###As far as some queries didnt return OK, result is NO
connections=101				# Simultaneous connections (installation default)
constraint_check=syntax only		# Column constraints
   ###< create table crash_q (a int check (a>0))
   ###> OK
   ###
   ###< insert into crash_q values(0)
   ###> OK
   ###
   ###< drop table crash_q 
   ###> OK
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
   ###< create table crash_q (a int check (a>0))
   ###> OK
   ###
   ###< insert into crash_q values(0)
   ###> OK
   ###
   ###< drop table crash_q 
   ###> OK
   ###< create table crash_q (a int check (a>0))
   ###> OK
   ###
   ###< insert into crash_q values(0)
   ###> OK
   ###
   ###< drop table crash_q 
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
208 209 210 211 212 213 214 215 216
constraint_check_named=syntax only	# Named constraints
   ###< create table crash_q (a int ,b int, constraint abc check (a>b))
   ###> OK
   ###
   ###< insert into crash_q values(0,0)
   ###> OK
   ###
   ###< drop table crash_q 
   ###> OK
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
   ###< create table crash_q (a int ,b int, constraint abc check (a>b))
   ###> OK
   ###
   ###< insert into crash_q values(0,0)
   ###> OK
   ###
   ###< drop table crash_q 
   ###> OK
   ###< create table crash_q (a int ,b int, constraint abc check (a>b))
   ###> OK
   ###
   ###< insert into crash_q values(0,0)
   ###> OK
   ###
   ###< drop table crash_q 
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
233 234 235 236 237 238 239 240 241
constraint_check_table=syntax only	# Table constraints
   ###< create table crash_q (a int ,b int, check (a>b))
   ###> OK
   ###
   ###< insert into crash_q values(0,0)
   ###> OK
   ###
   ###< drop table crash_q 
   ###> OK
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
   ###< create table crash_q (a int ,b int, check (a>b))
   ###> OK
   ###
   ###< insert into crash_q values(0,0)
   ###> OK
   ###
   ###< drop table crash_q 
   ###> OK
   ###< create table crash_q (a int ,b int, check (a>b))
   ###> OK
   ###
   ###< insert into crash_q values(0,0)
   ###> OK
   ###
   ###< drop table crash_q 
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397
constraint_null=yes			# NULL constraint (SyBase style)
   ###< create table crash_q (a int null)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
crash_me_safe=yes			# crash me safe
crash_me_version=1.61			# crash me version
create_default=yes			# default value for column
   ###< create table crash_q (q integer default 10 not null)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
create_default_func=no			# default value function for column
   ###< create table crash_q (q integer not null,q1 integer default (1+1))
   ###> execute error: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 '(1+1))' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
create_if_not_exists=yes		# create table if not exists
   ###< create table crash_q (q integer)
   ###> OK
   ###< create table if not exists crash_q (q integer)
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
create_index=yes			# create index
   ###< create index crash_q on crash_me (a)
   ###> OK
create_schema=no			# Create SCHEMA
   ###< create schema crash_schema create table crash_q (a int) create table crash_q2(b int)
   ###> execute error: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 'schema crash_schema create table crash_q (a int) create table c
   ###< drop schema crash_schema cascade
   ###> execute error: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 'schema crash_schema cascade' at line 1
   ###
   ###As far as some queries didnt return OK, result is NO
create_table_select=yes			# create table from select
   ###< create table crash_q SELECT * from crash_me
   ###> OK
cross_join=yes				# cross join (same as from a,b)
   ###< select crash_me.a from crash_me cross join crash_me3
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
date_as_string=yes			# String functions on date columns
   ###< create table crash_me2 (a date not null)
   ###> OK
   ###< insert into crash_me2 values ('1998-03-03')
   ###> OK
   ###
   ###<select left(a,4) from crash_me2
   ###>1998
   ###
   ###< drop table crash_me2 
   ###> OK
date_format_EUR=error			# Supports DD.MM.YYYY (EUR) format
   ###< insert into crash_me_d(a) values ('16.08.1963')
   ###> OK
   ###
   ###<select a from crash_me_d
   ###>0000-00-00
   ###We expected '1963-08-16' but got '0000-00-00' 
   ###
   ###< delete from crash_me_d
   ###> OK
date_format_EUR_with_date=error		# Supports DATE 'DD.MM.YYYY' (EUR) format
   ###< insert into crash_me_d(a) values (DATE '16.08.1963')
   ###> OK
   ###
   ###<select a from crash_me_d
   ###>0000-00-00
   ###We expected '1963-08-16' but got '0000-00-00' 
   ###
   ###< delete from crash_me_d
   ###> OK
date_format_ISO=yes			# Supports YYYY-MM-DD (ISO) format
   ###< insert into crash_me_d(a)  values ('1963-08-16')
   ###> OK
   ###
   ###<select a from crash_me_d
   ###>1963-08-16
   ###
   ###< delete from crash_me_d
   ###> OK
date_format_ISO_with_date=yes		# Supports DATE 'YYYY-MM-DD' (ISO) format
   ###< insert into crash_me_d(a) values (DATE '1963-08-16')
   ###> OK
   ###
   ###<select a from crash_me_d
   ###>1963-08-16
   ###
   ###< delete from crash_me_d
   ###> OK
date_format_USA=error			# Supports MM/DD/YYYY format
   ###< insert into crash_me_d(a) values ('08/16/1963')
   ###> OK
   ###
   ###<select a from crash_me_d
   ###>0000-00-00
   ###We expected '1963-08-16' but got '0000-00-00' 
   ###
   ###< delete from crash_me_d
   ###> OK
date_format_USA_with_date=error		# Supports DATE 'MM/DD/YYYY' format
   ###< insert into crash_me_d(a) values (DATE '08/16/1963')
   ###> OK
   ###
   ###<select a from crash_me_d
   ###>0000-00-00
   ###We expected '1963-08-16' but got '0000-00-00' 
   ###
   ###< delete from crash_me_d
   ###> OK
date_format_YYYYMMDD=yes		# Supports YYYYMMDD format
   ###< insert into crash_me_d(a) values ('19630816')
   ###> OK
   ###
   ###<select a from crash_me_d
   ###>1963-08-16
   ###
   ###< delete from crash_me_d
   ###> OK
date_format_YYYYMMDD_with_date=yes	# Supports DATE 'YYYYMMDD' format
   ###< insert into crash_me_d(a) values (DATE '19630816')
   ###> OK
   ###
   ###<select a from crash_me_d
   ###>1963-08-16
   ###
   ###< delete from crash_me_d
   ###> OK
date_format_inresult=iso		# Date format in result
   ###< insert into crash_me_d values( sysdate() ) 
   ###> OK
   ###
   ###< select a from crash_me_d
398
   ###> 2003-12-24
monty@mysql.com's avatar
monty@mysql.com committed
399 400
   ###< delete from crash_me_d
   ###> OK
401 402 403 404 405 406 407 408 409 410 411 412 413 414
   ###< insert into crash_me_d values( sysdate() ) 
   ###> OK
   ###
   ###< select a from crash_me_d
   ###> 2004-05-20
   ###< delete from crash_me_d
   ###> OK
   ###< insert into crash_me_d values( sysdate() ) 
   ###> OK
   ###
   ###< select a from crash_me_d
   ###> 2004-05-20
   ###< delete from crash_me_d
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526
date_infinity=error			# Supports 'infinity dates
   ###< create table crash_me2 (a date not null)
   ###> OK
   ###< insert into crash_me2 values ('infinity')
   ###> OK
   ###
   ###<select a from crash_me2
   ###>0000-00-00
   ###We expected 'infinity' but got '0000-00-00' 
   ###
   ###< drop table crash_me2 
   ###> OK
date_last=yes				# Supports 9999-12-31 dates
   ###< create table crash_me2 (a date not null)
   ###> OK
   ###< insert into crash_me2 values ('9999-12-31')
   ###> OK
   ###
   ###<select a from crash_me2
   ###>9999-12-31
   ###
   ###< drop table crash_me2 
   ###> OK
date_one=yes				# Supports 0001-01-01 dates
   ###< create table crash_me2 (a date not null)
   ###> OK
   ###< insert into crash_me2 values ('0001-01-01')
   ###> OK
   ###
   ###<select a from crash_me2
   ###>0001-01-01
   ###
   ###< drop table crash_me2 
   ###> OK
date_with_YY=yes			# Supports YY-MM-DD 2000 compilant dates
   ###< create table crash_me2 (a date not null)
   ###> OK
   ###< insert into crash_me2 values ('98-03-03')
   ###> OK
   ###
   ###<select a from crash_me2
   ###>1998-03-03
   ###
   ###< drop table crash_me2 
   ###> OK
   ###
   ###< create table crash_me2 (a date not null)
   ###> OK
   ###< insert into crash_me2 values ('10-03-03')
   ###> OK
   ###
   ###<select a from crash_me2
   ###>2010-03-03
   ###
   ###< drop table crash_me2 
   ###> OK
date_zero=yes				# Supports 0000-00-00 dates
   ###< create table crash_me2 (a date not null)
   ###> OK
   ###< insert into crash_me2 values ('0000-00-00')
   ###> OK
   ###
   ###<select a from crash_me2
   ###>0000-00-00
   ###
   ###< drop table crash_me2 
   ###> OK
domains=no				# Domains (ANSI SQL)
   ###< create domain crash_d as varchar(10) default 'Empty' check (value <> 'abcd')
   ###> execute error: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 'domain crash_d as varchar(10) default 'Empty' check (value <> '
   ###< create table crash_q(a crash_d, b int)
   ###> execute error: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 'crash_d, b int)' at line 1
   ###< insert into crash_q(a,b) values('xyz',10)
   ###> execute error:Table 'test.crash_q' doesn't exist
   ###< insert into crash_q(b) values(10)
   ###> execute error:Table 'test.crash_q' doesn't exist
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###< drop domain crash_d
   ###> execute error: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 'domain crash_d' at line 1
   ###
   ###As far as some queries didnt return OK, result is NO
dont_require_cast_to_float=yes		# No need to cast from integer to float
   ###< select exp(1) 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
double_quotes=yes			# Double '' as ' in strings
   ###
   ###<select 'Walker''s' 
   ###>Walker's
drop_if_exists=yes			# drop table if exists
   ###< create table crash_q (q integer)
   ###> OK
   ###< drop table if exists crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
drop_index=with 'ON'			# drop index
   ###< drop index crash_q
   ###> execute error: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 '' at line 1
   ###
   ###< drop index crash_q from crash_me
   ###> execute error: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 'from crash_me' at line 1
   ###
   ###< drop index crash_q on crash_me
   ###> OK
drop_requires_cascade=no		# drop table require cascade/restrict
   ###< create table crash_me (a integer not null)
   ###> OK
   ###< drop table crash_me
   ###> OK
527 528 529 530 531 532 533 534
   ###< create table crash_me (a integer not null)
   ###> OK
   ###< drop table crash_me
   ###> OK
   ###< create table crash_me (a integer not null)
   ###> OK
   ###< drop table crash_me
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598
drop_restrict=yes			# drop table with cascade/restrict
   ###< create table crash_q (a int)
   ###> OK
   ###< drop table crash_q restrict
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
end_colon=yes				# allows end ';'
   ###< select * from crash_me;
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
except=no				# except
   ###< select * from crash_me except select * from crash_me3
   ###> execute error: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 'select * from crash_me3' at line 1
   ###
   ###As far as some queries didnt return OK, result is NO
except_all=no				# except all
   ###< select * from crash_me except all select * from crash_me3
   ###> execute error: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 'all select * from crash_me3' at line 1
   ###
   ###As far as some queries didnt return OK, result is NO
except_all_incompat=no			# except all (incompatible lists)
   ###< select * from crash_me except all select * from crash_me2
   ###> execute error: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 'all select * from crash_me2' at line 1
   ###
   ###As far as some queries didnt return OK, result is NO
except_incompat=no			# except (incompatible lists)
   ###< select * from crash_me except select * from crash_me2
   ###> execute error: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 'select * from crash_me2' at line 1
   ###
   ###As far as some queries didnt return OK, result is NO
field_name_case=yes			# case independent field names
   ###< create table crash_q (q integer)
   ###> OK
   ###< insert into crash_q(Q) values (1)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
float_int_expr=yes			# mixing of integer and float in expression
   ###< select 1+1.0 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
foreign_key=syntax only			# foreign keys
   ###< create table crash_me_qf (a integer not null,primary key (a)) 
   ###> OK
   ###
   ###< create table crash_me_qf2 (a integer not null,foreign key (a) references crash_me_qf (a)) 
   ###> OK
   ###
   ###< insert into crash_me_qf values (1)
   ###> OK
   ###
   ###< insert into crash_me_qf2 values (2)
   ###> OK
   ###
   ###< drop table crash_me_qf2 
   ###> OK
   ###
   ###< drop table crash_me_qf 
   ###> OK
599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632
   ###< create table crash_me_qf (a integer not null,primary key (a)) 
   ###> OK
   ###
   ###< create table crash_me_qf2 (a integer not null,foreign key (a) references crash_me_qf (a)) 
   ###> OK
   ###
   ###< insert into crash_me_qf values (1)
   ###> OK
   ###
   ###< insert into crash_me_qf2 values (2)
   ###> OK
   ###
   ###< drop table crash_me_qf2 
   ###> OK
   ###
   ###< drop table crash_me_qf 
   ###> OK
   ###< create table crash_me_qf (a integer not null,primary key (a)) 
   ###> OK
   ###
   ###< create table crash_me_qf2 (a integer not null,foreign key (a) references crash_me_qf (a)) 
   ###> OK
   ###
   ###< insert into crash_me_qf values (1)
   ###> OK
   ###
   ###< insert into crash_me_qf2 values (2)
   ###> OK
   ###
   ###< drop table crash_me_qf2 
   ###> OK
   ###
   ###< drop table crash_me_qf 
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666
full_outer_join=no			# full outer join
   ###< select crash_me.a from crash_me full join crash_me2 ON 
   ###       crash_me.a=crash_me2.a
   ###> execute error:Unknown table 'crash_me' in field list
   ###
   ###As far as some queries didnt return OK, result is NO
func_extra_!=yes			# Function NOT as '!' in SELECT
   ###
   ###<select ! 1 
   ###>0
func_extra_%=yes			# Function MOD as %
   ###
   ###<select 10%7 
   ###>3
func_extra_&=yes			# Function & (bitwise and)
   ###
   ###<select 5 & 3 
   ###>1
func_extra_&&=yes			# Function AND as '&&'
   ###
   ###<select 1=1 && 2=2 
   ###>1
func_extra_<>=yes			# Function <> in SELECT
   ###
   ###<select 1<>1 
   ###>0
func_extra_==yes			# Function =
   ###
   ###<select (1=1) 
   ###>1
func_extra_add_months=no		# Function ADD_MONTHS
   ###
   ###<select add_months('1997-01-01',1) from crash_me_d
   ###> execute failed: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 '('1997-01-01',1) from crash_me_d' at line 1
667
func_extra_adddate=yes			# Function ADDDATE
monty@mysql.com's avatar
monty@mysql.com committed
668 669
   ###
   ###<select ADDDATE('2002-12-01',3) from crash_me_d
670 671
   ###>2002-12-04
func_extra_addtime=yes			# Function ADDTIME
monty@mysql.com's avatar
monty@mysql.com committed
672 673
   ###
   ###<select ADDTIME('20:02:12','00:00:03') 
674
   ###>20:02:15
monty@mysql.com's avatar
monty@mysql.com committed
675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756
func_extra_alpha=no			# Function ALPHA
   ###
   ###<select alpha('A',2) 
   ###> execute failed: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 '('A',2)' at line 1
func_extra_and_or=yes			# Function AND and OR in SELECT
   ###
   ###<select 1=1 AND 2=2 
   ###>1
func_extra_ascii_char=no		# Function ASCII_CHAR
   ###
   ###<select ASCII_CHAR(65) 
   ###> execute failed: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 '(65)' at line 1
func_extra_ascii_code=no		# Function ASCII_CODE
   ###
   ###<select ASCII_CODE('A') 
   ###> execute failed: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 '('A')' at line 1
func_extra_ascii_string=error		# Function ASCII in string cast
   ###
   ###<select ascii('a') 
   ###>97
   ###We expected 'a' but got '97' 
func_extra_atn2=no			# Function ATN2
   ###
   ###<select atn2(1,0) 
   ###> execute failed: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 '(1,0)' at line 1
func_extra_auto_num2string=yes		# Function automatic num->string convert
   ###
   ###<select concat('a',2) 
   ###>a2
func_extra_auto_string2num=yes		# Function automatic string->num convert
   ###
   ###<select '1'+2 
   ###>3
func_extra_between=yes			# Function BETWEEN in SELECT
   ###
   ###<select 5 between 4 and 6 
   ###>1
func_extra_binary_shifts=yes		# Function << and >> (bitwise shifts)
   ###
   ###<select (1 << 4) >> 2 
   ###>4
func_extra_bit_count=yes		# Function BIT_COUNT
   ###
   ###<select bit_count(5) 
   ###>2
func_extra_ceil=yes			# Function CEIL
   ###
   ###<select ceil(-4.5) 
   ###>-4
func_extra_char_date=no			# Function CHAR (conversation date)
   ###
   ###<select CHAR(a,EUR) from crash_me_d
   ###> execute failed:Unknown column 'EUR' in 'field list'
func_extra_charindex=no			# Function CHARINDEX
   ###
   ###<select charindex('a','crash') 
   ###> execute failed: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 '('a','crash')' at line 1
func_extra_chr=no			# Function CHR
   ###
   ###<select CHR(65) 
   ###> execute failed: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 '(65)' at line 1
func_extra_chr_str=no			# Function CHR (any type to string)
   ###
   ###<select CHR(67) 
   ###> execute failed: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 '(67)' at line 1
func_extra_concat_as_+=error		# Function concatenation with +
   ###
   ###<select 'abc' + 'def' 
   ###>0
   ###We expected 'abcdef' but got '0' 
func_extra_concat_list=yes		# Function CONCAT(list)
   ###
   ###<select concat('a','b','c','d') 
   ###>abcd
func_extra_convert=no			# Function CONVERT
   ###
   ###<select convert(CHAR,5) 
   ###> execute failed: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 '5)' at line 1
func_extra_cosh=no			# Function COSH
   ###
   ###<select cosh(0) 
   ###> execute failed: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 '(0)' at line 1
757
func_extra_date=yes			# Function DATE
monty@mysql.com's avatar
monty@mysql.com committed
758 759
   ###
   ###<select date('1963-08-16') from crash_me_d
760
   ###>1963-08-16
monty@mysql.com's avatar
monty@mysql.com committed
761 762 763 764 765 766 767 768 769 770 771
func_extra_date_format=yes		# Function DATE_FORMAT
   ###
   ###<select date_format('1997-01-02 03:04:05','M W D Y y m d h i s w') from crash_me_d
   ###>M W D Y y m d h i s w
func_extra_dateadd=no			# Function DATEADD
   ###
   ###<select dateadd(day,3,'1997-11-30') from crash_me_d
   ###> execute failed: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 '(day,3,'1997-11-30') from crash_me_d' at line 1
func_extra_datediff=no			# Function DATEDIFF
   ###
   ###<select datediff(month,'Oct 21 1997','Nov 30 1997') from crash_me_d
772 773
   ###> execute failed: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 ''Nov 30 1997') from crash_me_d' at line 1
func_extra_datediff2arg=yes		# Function DATEDIFF (2 arg)
monty@mysql.com's avatar
monty@mysql.com committed
774 775
   ###
   ###<select DATEDIFF('2002-12-04','2002-12-01') from crash_me_d
776
   ###>3
monty@mysql.com's avatar
monty@mysql.com committed
777 778 779 780 781 782 783 784
func_extra_datename=no			# Function DATENAME
   ###
   ###<select datename(month,'Nov 30 1997') from crash_me_d
   ###> execute failed: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 '(month,'Nov 30 1997') from crash_me_d' at line 1
func_extra_datepart=no			# Function DATEPART
   ###
   ###<select datepart(month,'July 20 1997') from crash_me_d
   ###> execute failed: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 '(month,'July 20 1997') from crash_me_d' at line 1
785
func_extra_day=yes			# Function DAY
monty@mysql.com's avatar
monty@mysql.com committed
786 787
   ###
   ###<select DAY('2002-12-01') from crash_me_d
788
   ###>1
monty@mysql.com's avatar
monty@mysql.com committed
789 790 791 792 793 794 795 796 797 798 799 800 801 802 803
func_extra_decode=no			# Function DECODE
   ###
   ###<select DECODE('S-103','T72',1,'S-103',2,'Leopard',3) 
   ###> execute failed: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 '1,'S-103',2,'Leopard',3)' at line 1
func_extra_ebcdic_string=no		# Function EBCDIC in string cast
   ###
   ###<select ebcdic('a') 
   ###> execute failed: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 '('a')' at line 1
func_extra_elt=yes			# Function ELT
   ###
   ###<select elt(2,'ONE','TWO','THREE') 
   ###>TWO
func_extra_encrypt=yes			# Function ENCRYPT
   ###
   ###<select encrypt('hello') 
804
   ###>1Wi1s0yzcGqMY
monty@mysql.com's avatar
monty@mysql.com committed
805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880
func_extra_expand2arg=no		# Function EXPAND
   ###
   ###<select expand('abcd',6) 
   ###> execute failed: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 '('abcd',6)' at line 1
func_extra_field=yes			# Function FIELD
   ###
   ###<select field('IBM','NCA','ICL','SUN','IBM','DIGITAL') 
   ###>4
func_extra_fixed=no			# Function FIXED
   ###
   ###<select fixed(222.6666,10,2) 
   ###> execute failed: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 '(222.6666,10,2)' at line 1
func_extra_float=no			# Function FLOAT
   ###
   ###<select float(6666.66,4) 
   ###> execute failed: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 'float(6666.66,4)' at line 1
func_extra_format=yes			# Function FORMAT
   ###
   ###<select format(1234.5555,2) 
   ###>1,234.56
func_extra_from_days=yes		# Function FROM_DAYS
   ###
   ###<select from_days(729024) from crash_me_d
   ###>1996-01-01
func_extra_from_unixtime=yes		# Function FROM_UNIXTIME
   ###
   ###<select from_unixtime(0) from crash_me_d
   ###>1970-01-01 02:00:00
func_extra_getdate=no			# Function GETDATE
   ###
   ###<select getdate() 
   ###> execute failed: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 '()' at line 1
func_extra_greatest=yes			# Function GREATEST
   ###
   ###<select greatest('HARRY','HARRIOT','HAROLD') 
   ###>HARRY
func_extra_hex=yes			# Function HEX
   ###
   ###<select HEX('A') 
   ###>41
func_extra_if=yes			# Function IF
   ###
   ###<select if(5,6,7) 
   ###>6
func_extra_in_num=yes			# Function IN on numbers in SELECT
   ###
   ###<select 2 in (3,2,5,9,5,1) 
   ###>1
func_extra_in_str=yes			# Function IN on strings in SELECT
   ###
   ###<select 'monty' in ('david','monty','allan') 
   ###>1
func_extra_index=no			# Function INDEX
   ###
   ###<select index('abcdefg','cd',1,1) 
   ###> execute failed: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 'index('abcdefg','cd',1,1)' at line 1
func_extra_initcap=no			# Function INITCAP
   ###
   ###<select initcap('the soap') 
   ###> execute failed: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 '('the soap')' at line 1
func_extra_instr=yes			# Function LOCATE as INSTR
   ###
   ###<select instr('hello','ll') 
   ###>3
func_extra_instr_oracle=no		# Function INSTR (Oracle syntax)
   ###
   ###<select INSTR('CORPORATE FLOOR','OR',3,2) 
   ###> execute failed: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 '3,2)' at line 1
func_extra_instrb=no			# Function INSTRB
   ###
   ###<select INSTRB('CORPORATE FLOOR','OR',5,2) 
   ###> execute failed: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 '('CORPORATE FLOOR','OR',5,2)' at line 1
func_extra_interval=yes			# Function INTERVAL
   ###
   ###<select interval(55,10,20,30,40,50,60,70,80,90,100) 
   ###>5
881
func_extra_last_day=yes			# Function LAST_DAY
monty@mysql.com's avatar
monty@mysql.com committed
882 883
   ###
   ###<select last_day('1997-04-01') from crash_me_d
884
   ###>1997-04-30
monty@mysql.com's avatar
monty@mysql.com committed
885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933
func_extra_last_insert_id=yes		# Function LAST_INSERT_ID
   ###
   ###<select last_insert_id() 
   ###>0
func_extra_least=yes			# Function LEAST
   ###
   ###<select least('HARRY','HARRIOT','HAROLD') 
   ###>HAROLD
func_extra_length=error			# Function LENGTH
   ###
   ###<select length(1) 
   ###>1
   ###We expected '2' but got '1' 
func_extra_lengthb=no			# Function LENGTHB
   ###
   ###<select lengthb('CANDIDE') 
   ###> execute failed: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 '('CANDIDE')' at line 1
func_extra_lfill3arg=no			# Function LFILL (3 arg)
   ###
   ###<select lfill('abcd','.',6) 
   ###> execute failed: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 '('abcd','.',6)' at line 1
func_extra_like=yes			# Function LIKE in SELECT
   ###
   ###<select 'a' like 'a%' 
   ###>1
func_extra_like_escape=yes		# Function LIKE ESCAPE in SELECT
   ###
   ###<select '%' like 'a%' escape 'a' 
   ###>1
func_extra_ln=yes			# Function LN
   ###
   ###<select ln(95) 
   ###>4.553877
func_extra_log(m_n)=yes			# Function LOG(m,n)
   ###
   ###<select log(10,100) 
   ###>2.000000
func_extra_logn=no			# Function LOGN
   ###
   ###<select logn(2) 
   ###> execute failed: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 '(2)' at line 1
func_extra_lpad=yes			# Function LPAD
   ###
   ###<select lpad('hi',4,'??') 
   ###>??hi
func_extra_ltrim2arg=no			# Function LTRIM (2 arg)
   ###
   ###<select ltrim('..abcd..','.') 
   ###> execute failed: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 ''.')' at line 1
934
func_extra_makedate=yes			# Function MAKEDATE
monty@mysql.com's avatar
monty@mysql.com committed
935 936
   ###
   ###<select MAKEDATE(1963,228) from crash_me_d
937 938
   ###>1963-08-16
func_extra_maketime=yes			# Function MAKETIME
monty@mysql.com's avatar
monty@mysql.com committed
939 940
   ###
   ###<select MAKETIME(20,02,12) 
941
   ###>20:02:12
monty@mysql.com's avatar
monty@mysql.com committed
942 943 944 945 946 947 948 949
func_extra_mapchar=no			# Function MAPCHAR
   ###
   ###<select mapchar('A') 
   ###> execute failed: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 '('A')' at line 1
func_extra_mdy=no			# Function MDY
   ###
   ###<select mdy(7,1,1998) from crash_me_d
   ###> execute failed: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 '(7,1,1998) from crash_me_d' at line 1
950
func_extra_microsecond=error		# Function MICROSECOND
monty@mysql.com's avatar
monty@mysql.com committed
951 952
   ###
   ###<select MICROSECOND('19630816200212111111') 
953 954
   ###>11
   ###We expected '111111' but got '11' 
monty@mysql.com's avatar
monty@mysql.com committed
955 956 957 958 959 960 961 962 963 964 965
func_extra_mid=yes			# Function SUBSTRING as MID
   ###
   ###<select mid('hello',3,2) 
   ###>ll
func_extra_months_between=no		# Function MONTHS_BETWEEN
   ###
   ###<select months_between('1997-02-02','1997-01-01') from crash_me_d
   ###> execute failed: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 '('1997-02-02','1997-01-01') from crash_me_d' at line 1
func_extra_noround=no			# Function NOROUND
   ###< select noround(22.6) 
   ###> execute error: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 '(22.6)' at line 1
966 967 968 969
   ###< select noround(22.6) 
   ###> execute error: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 '(22.6)' at line 1
   ###< select noround(22.6) 
   ###> execute error: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 '(22.6)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
970 971
func_extra_not=yes			# Function NOT in SELECT
   ###
972
   ###<select not false 
monty@mysql.com's avatar
monty@mysql.com committed
973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988
   ###>1
func_extra_not_between=yes		# Function NOT BETWEEN in SELECT
   ###
   ###<select 5 not between 4 and 6 
   ###>0
func_extra_not_like=yes			# Function NOT LIKE in SELECT
   ###
   ###<select 'a' not like 'a%' 
   ###>0
func_extra_num=no			# Function NUM
   ###
   ###<select NUM('2123') 
   ###> execute failed: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 '('2123')' at line 1
func_extra_odbc_convert=no		# Function ODBC CONVERT
   ###
   ###<select convert(5,SQL_CHAR) 
989
   ###> execute failed: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 ')' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
990 991 992
func_extra_password=yes			# Function PASSWORD
   ###
   ###<select password('hello') 
993
   ###>*6B4F89A54E2D27ECD7E8DA05B4AB8FD9D1D8B119
monty@mysql.com's avatar
monty@mysql.com committed
994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077
func_extra_paste=no			# Function PASTE
   ###
   ###<select paste('ABCDEFG',3,2,'1234') 
   ###> execute failed: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 '('ABCDEFG',3,2,'1234')' at line 1
func_extra_patindex=no			# Function PATINDEX
   ###
   ###<select patindex('%a%','crash') 
   ###> execute failed: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 '('%a%','crash')' at line 1
func_extra_period_add=yes		# Function PERIOD_ADD
   ###
   ###<select period_add(9602,-12) from crash_me_d
   ###>199502
func_extra_period_diff=yes		# Function PERIOD_DIFF
   ###
   ###<select period_diff(199505,199404) from crash_me_d
   ###>13
func_extra_pow=yes			# Function POW
   ###
   ###<select pow(3,2) 
   ###>9.000000
func_extra_range=no			# Function RANGE
   ###
   ###<select range(a) 
   ###> execute failed: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 '(a)' at line 1
func_extra_regexp=yes			# Function REGEXP in SELECT
   ###
   ###<select 'a' regexp '^(a|b)*$' 
   ###>1
func_extra_replace2arg=no		# Function REPLACE (2 arg) 
   ###
   ###<select replace('AbCd','bC') 
   ###> execute failed: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 ')' at line 1
func_extra_replicate=no			# Function REPLICATE
   ###
   ###<select replicate('a',5) 
   ###> execute failed: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 '('a',5)' at line 1
func_extra_reverse=yes			# Function REVERSE
   ###
   ###<select reverse('abcd') 
   ###>dcba
func_extra_rfill3arg=no			# Function RFILL (3 arg)
   ###
   ###<select rfill('abcd','.',6) 
   ###> execute failed: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 '('abcd','.',6)' at line 1
func_extra_root=no			# Function ROOT
   ###
   ###<select root(4) 
   ###> execute failed: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 '(4)' at line 1
func_extra_round1=yes			# Function ROUND(1 arg)
   ###
   ###<select round(5.63) 
   ###>6
func_extra_rpad=yes			# Function RPAD
   ###
   ###<select rpad('hi',4,'??') 
   ###>hi??
func_extra_rpad4arg=no			# Function RPAD (4 arg)
   ###
   ###<select rpad('abcd',2,'+-',8) 
   ###> execute failed: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 '8)' at line 1
func_extra_rtrim2arg=no			# Function RTRIM (2 arg)
   ###
   ###<select rtrim('..abcd..','.') 
   ###> execute failed: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 ''.')' at line 1
func_extra_sec_to_time=yes		# Function SEC_TO_TIME
   ###
   ###<select sec_to_time(5001) 
   ###>01:23:21
func_extra_sinh=no			# Function SINH
   ###
   ###<select sinh(1) 
   ###> execute failed: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 '(1)' at line 1
func_extra_str=no			# Function STR
   ###
   ###<select str(123.45,5,1) 
   ###> execute failed: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 '(123.45,5,1)' at line 1
func_extra_strcmp=yes			# Function STRCMP
   ###
   ###<select strcmp('abc','adc') 
   ###>-1
func_extra_stuff=no			# Function STUFF
   ###
   ###<select stuff('abc',2,3,'xyz') 
   ###> execute failed: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 '('abc',2,3,'xyz')' at line 1
1078
func_extra_subdate=yes			# Function SUBDATE
monty@mysql.com's avatar
monty@mysql.com committed
1079 1080
   ###
   ###<select SUBDATE('2002-12-04',3) from crash_me_d
1081 1082
   ###>2002-12-01
func_extra_substr2arg=yes		# Function SUBSTR (2 arg)
monty@mysql.com's avatar
monty@mysql.com committed
1083 1084
   ###
   ###<select substr('abcd',2) 
1085 1086
   ###>bcd
func_extra_substr3arg=yes		# Function SUBSTR (3 arg)
monty@mysql.com's avatar
monty@mysql.com committed
1087 1088
   ###
   ###<select substr('abcd',2,2) 
1089
   ###>bc
monty@mysql.com's avatar
monty@mysql.com committed
1090 1091 1092 1093 1094 1095 1096 1097
func_extra_substrb=no			# Function SUBSTRB
   ###
   ###<select SUBSTRB('ABCDEFG',5,4.2) 
   ###> execute failed: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 '('ABCDEFG',5,4.2)' at line 1
func_extra_substring_index=yes		# Function SUBSTRING_INDEX
   ###
   ###<select substring_index('www.tcx.se','.',-2) 
   ###>tcx.se
1098
func_extra_subtime=yes			# Function SUBTIME
monty@mysql.com's avatar
monty@mysql.com committed
1099 1100
   ###
   ###<select SUBTIME('20:02:15','00:00:03') 
1101
   ###>20:02:12
monty@mysql.com's avatar
monty@mysql.com committed
1102 1103 1104
func_extra_sysdate=yes			# Function SYSDATE
   ###
   ###<select sysdate() 
1105
   ###>2003-12-24 09:46:11
monty@mysql.com's avatar
monty@mysql.com committed
1106 1107 1108 1109 1110 1111 1112 1113
func_extra_tail=no			# Function TAIL
   ###
   ###<select tail('ABCDEFG',3) 
   ###> execute failed: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 '('ABCDEFG',3)' at line 1
func_extra_tanh=no			# Function TANH
   ###
   ###<select tanh(1) 
   ###> execute failed: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 '(1)' at line 1
1114
func_extra_time=yes			# Function TIME
monty@mysql.com's avatar
monty@mysql.com committed
1115 1116
   ###
   ###<select time('20:02:12') 
1117
   ###>20:02:12
monty@mysql.com's avatar
monty@mysql.com committed
1118 1119 1120 1121
func_extra_time_to_sec=yes		# Function TIME_TO_SEC
   ###
   ###<select time_to_sec('01:23:21') 
   ###>5001
1122
func_extra_timediff=yes			# Function TIMEDIFF
monty@mysql.com's avatar
monty@mysql.com committed
1123 1124
   ###
   ###<select TIMEDIFF('20:02:15','20:02:12') 
1125 1126
   ###>00:00:03
func_extra_timestamp=error		# Function TIMESTAMP
monty@mysql.com's avatar
monty@mysql.com committed
1127 1128
   ###
   ###<select timestamp('19630816','00200212') 
1129 1130
   ###>1963-08-16 20:02:12
   ###We expected '19630816200212000000' but got '1963-08-16 20:02:12' 
monty@mysql.com's avatar
monty@mysql.com committed
1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170
func_extra_to_days=yes			# Function TO_DAYS
   ###
   ###<select to_days('1996-01-01') from crash_me_d
   ###>729024
func_extra_translate=no			# Function TRANSLATE
   ###
   ###<select translate('abc','bc','de') 
   ###> execute failed: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 '('abc','bc','de')' at line 1
func_extra_trim1arg=yes			# Function TRIM (1 arg)
   ###
   ###<select trim(' abcd ') 
   ###>abcd
func_extra_trim2arg=no			# Function TRIM (2 arg)
   ###
   ###<select trim('..abcd..','.') 
   ###> execute failed: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 ''.')' at line 1
func_extra_trim_many_char=error		# Function TRIM; Many char extension
   ###
   ###<select trim(':!' FROM ':abc!') 
   ###>:abc!
   ###We expected 'abc' but got ':abc!' 
func_extra_trim_substring=yes		# Function TRIM; Substring extension
   ###
   ###<select trim('cb' FROM 'abccb') 
   ###>abc
func_extra_trunc=no			# Function TRUNC
   ###
   ###<select trunc(18.18,-1) 
   ###> execute failed: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 '(18.18,-1)' at line 1
func_extra_trunc1arg=no			# Function TRUNC (1 arg)
   ###
   ###<select trunc(222.6) 
   ###> execute failed: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 '(222.6)' at line 1
func_extra_uid=no			# Function UID
   ###
   ###<select uid 
   ###> execute failed:Unknown column 'uid' in 'field list'
func_extra_unix_timestamp=yes		# Function UNIX_TIMESTAMP
   ###
   ###<select unix_timestamp() 
1171
   ###>1072251971
monty@mysql.com's avatar
monty@mysql.com committed
1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182
func_extra_userenv=no			# Function USERENV
   ###
   ###<select userenv 
   ###> execute failed:Unknown column 'userenv' in 'field list'
func_extra_value=no			# Function VALUE
   ###
   ###<select value(NULL,'WALRUS') 
   ###> execute failed: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 '(NULL,'WALRUS')' at line 1
func_extra_version=yes			# Function VERSION
   ###
   ###<select version() 
1183
   ###>5.0.0-alpha-debug-log
monty@mysql.com's avatar
monty@mysql.com committed
1184 1185 1186 1187
func_extra_weekday=yes			# Function WEEKDAY
   ###
   ###<select weekday('1997-11-29') from crash_me_d
   ###>5
1188
func_extra_weekofyear=yes		# Function WEEKOFYEAR
monty@mysql.com's avatar
monty@mysql.com committed
1189 1190
   ###
   ###<select WEEKOFYEAR('1963-08-16') from crash_me_d
1191
   ###>33
monty@mysql.com's avatar
monty@mysql.com committed
1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250
func_extra_|=yes			# Function | (bitwise or)
   ###
   ###<select 1 | 2 
   ###>3
func_extra_||=yes			# Function OR as '||'
   ###
   ###<select 1=0 || 1=1 
   ###>1
func_extra_~*=no			# Function ~* (case insensitive compare)
   ###
   ###<select 'hi' ~* 'HI' 
   ###> execute failed: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 '~* 'HI'' at line 1
func_odbc_abs=yes			# Function ABS
   ###
   ###<select abs(-5) 
   ###>5
func_odbc_acos=yes			# Function ACOS
   ###
   ###<select acos(0) 
   ###>1.570796
func_odbc_ascii=yes			# Function ASCII
   ###
   ###<select ASCII('A') 
   ###>65
func_odbc_asin=yes			# Function ASIN
   ###
   ###<select asin(1) 
   ###>1.570796
func_odbc_atan=yes			# Function ATAN
   ###
   ###<select atan(1) 
   ###>0.785398
func_odbc_atan2=yes			# Function ATAN2
   ###
   ###<select atan2(1,0) 
   ###>1.570796
func_odbc_ceiling=yes			# Function CEILING
   ###
   ###<select ceiling(-4.5) 
   ###>-4
func_odbc_char=yes			# Function CHAR
   ###
   ###<select CHAR(65) 
   ###>A
func_odbc_concat=yes			# Function CONCAT(2 arg)
   ###
   ###<select concat('a','b') 
   ###>ab
func_odbc_cos=yes			# Function COS
   ###
   ###<select cos(0) 
   ###>1.000000
func_odbc_cot=yes			# Function COT
   ###
   ###<select cot(1) 
   ###>0.64209262
func_odbc_curdate=yes			# Function CURDATE
   ###
   ###<select curdate() 
1251
   ###>2003-12-24
monty@mysql.com's avatar
monty@mysql.com committed
1252 1253 1254
func_odbc_curtime=yes			# Function CURTIME
   ###
   ###<select curtime() 
1255
   ###>09:46:11
monty@mysql.com's avatar
monty@mysql.com committed
1256 1257 1258 1259 1260 1261 1262 1263 1264
func_odbc_database=yes			# Function DATABASE
   ###
   ###<select database() 
   ###>test
func_odbc_dayname=yes			# Function DAYNAME
   ###< insert into crash_me_d values('1997-02-01')
   ###
   ###<select dayname(a) from crash_me_d
   ###>Saturday
1265 1266
   ###< insert into crash_me_d values('1997-02-01')
   ###< insert into crash_me_d values('1997-02-01')
monty@mysql.com's avatar
monty@mysql.com committed
1267 1268 1269 1270 1271
func_odbc_dayofmonth=yes		# Function DAYOFMONTH
   ###< insert into crash_me_d values('1997-02-01')
   ###
   ###<select dayofmonth(a) from crash_me_d
   ###>1
1272 1273
   ###< insert into crash_me_d values('1997-02-01')
   ###< insert into crash_me_d values('1997-02-01')
monty@mysql.com's avatar
monty@mysql.com committed
1274 1275 1276 1277 1278
func_odbc_dayofweek=yes			# Function DAYOFWEEK
   ###< insert into crash_me_d values('1997-02-01')
   ###
   ###<select dayofweek(a) from crash_me_d
   ###>7
1279 1280
   ###< insert into crash_me_d values('1997-02-01')
   ###< insert into crash_me_d values('1997-02-01')
monty@mysql.com's avatar
monty@mysql.com committed
1281 1282 1283 1284 1285
func_odbc_dayofyear=yes			# Function DAYOFYEAR
   ###< insert into crash_me_d values('1997-02-01')
   ###
   ###<select dayofyear(a) from crash_me_d
   ###>32
1286 1287
   ###< insert into crash_me_d values('1997-02-01')
   ###< insert into crash_me_d values('1997-02-01')
monty@mysql.com's avatar
monty@mysql.com committed
1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315
func_odbc_degrees=yes			# Function DEGREES
   ###
   ###<select degrees(6.283185) 
   ###>359.99998239991
func_odbc_difference=no			# Function DIFFERENCE()
   ###
   ###<select difference('abc','abe') 
   ###> execute failed: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 '('abc','abe')' at line 1
   ###
   ###<select {fn difference('abc','abe') } 
   ###> execute failed: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 '('abc','abe') }' at line 1
func_odbc_exp=yes			# Function EXP
   ###
   ###<select exp(1.0) 
   ###>2.718282
func_odbc_floor=yes			# Function FLOOR
   ###
   ###<select floor(2.5) 
   ###>2
func_odbc_fn_left=yes			# Function ODBC syntax LEFT & RIGHT
   ###
   ###<select { fn LEFT( { fn RIGHT('abcd',2) },1) } 
   ###>c
func_odbc_hour=yes			# Function HOUR
   ###< insert into crash_me_t values(20:08:16)
   ###
   ###<select hour('12:13:14') 
   ###>12
1316 1317
   ###< insert into crash_me_t values(20:08:16)
   ###< insert into crash_me_t values(20:08:16)
monty@mysql.com's avatar
monty@mysql.com committed
1318 1319 1320 1321 1322
func_odbc_hour_time=yes			# Function ANSI HOUR
   ###< insert into crash_me_t values(20:08:16)
   ###
   ###<select hour(TIME '12:13:14') 
   ###>12
1323 1324
   ###< insert into crash_me_t values(20:08:16)
   ###< insert into crash_me_t values(20:08:16)
monty@mysql.com's avatar
monty@mysql.com committed
1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378
func_odbc_ifnull=yes			# Function IFNULL
   ###
   ###<select ifnull(2,3) 
   ###>2
func_odbc_insert=yes			# Function INSERT
   ###
   ###<select insert('abcd',2,2,'ef') 
   ###>aefd
func_odbc_lcase=yes			# Function LCASE
   ###
   ###<select lcase('ABC') 
   ###>abc
func_odbc_left=yes			# Function LEFT
   ###
   ###<select left('abcd',2) 
   ###>ab
func_odbc_length=yes			# Function REAL LENGTH
   ###
   ###<select length('abcd ') 
   ###>5
func_odbc_length_without_space=error	# Function ODBC LENGTH
   ###
   ###<select length('abcd ') 
   ###>5
   ###We expected '4' but got '5' 
   ###
   ###<select {fn length('abcd ') } 
   ###>5
   ###We expected '4' but got '5' 
func_odbc_locate_2=yes			# Function LOCATE(2 arg)
   ###
   ###<select locate('bcd','abcd') 
   ###>2
func_odbc_locate_3=yes			# Function LOCATE(3 arg)
   ###
   ###<select locate('bcd','abcd',3) 
   ###>0
func_odbc_log=yes			# Function LOG
   ###
   ###<select log(2) 
   ###>0.693147
func_odbc_log10=yes			# Function LOG10
   ###
   ###<select log10(10) 
   ###>1.000000
func_odbc_ltrim=yes			# Function LTRIM
   ###
   ###<select ltrim('   abcd') 
   ###>abcd
func_odbc_minute=yes			# Function MINUTE
   ###< insert into crash_me_t values(20:08:16)
   ###
   ###<select minute('12:13:14') 
   ###>13
1379 1380
   ###< insert into crash_me_t values(20:08:16)
   ###< insert into crash_me_t values(20:08:16)
monty@mysql.com's avatar
monty@mysql.com committed
1381 1382 1383 1384 1385 1386 1387 1388 1389
func_odbc_mod=yes			# Function MOD
   ###
   ###<select mod(11,7) 
   ###>4
func_odbc_month=yes			# Function MONTH
   ###< insert into crash_me_d values('1997-02-01')
   ###
   ###<select month(a) from crash_me_d
   ###>2
1390 1391
   ###< insert into crash_me_d values('1997-02-01')
   ###< insert into crash_me_d values('1997-02-01')
monty@mysql.com's avatar
monty@mysql.com committed
1392 1393 1394 1395 1396
func_odbc_monthname=yes			# Function MONTHNAME
   ###< insert into crash_me_d values('1997-02-01')
   ###
   ###<select monthname(a) from crash_me_d
   ###>February
1397 1398
   ###< insert into crash_me_d values('1997-02-01')
   ###< insert into crash_me_d values('1997-02-01')
monty@mysql.com's avatar
monty@mysql.com committed
1399 1400 1401
func_odbc_now=yes			# Function NOW
   ###
   ###<select now() 
1402
   ###>2003-12-24 09:46:11
monty@mysql.com's avatar
monty@mysql.com committed
1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415
func_odbc_pi=yes			# Function PI
   ###
   ###<select pi() 
   ###>3.141593
func_odbc_power=yes			# Function POWER
   ###
   ###<select power(2,4) 
   ###>16.000000
func_odbc_quarter=yes			# Function QUARTER
   ###< insert into crash_me_d values('1997-02-01')
   ###
   ###<select quarter(a) from crash_me_d
   ###>1
1416 1417
   ###< insert into crash_me_d values('1997-02-01')
   ###< insert into crash_me_d values('1997-02-01')
monty@mysql.com's avatar
monty@mysql.com committed
1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450
func_odbc_radians=yes			# Function RADIANS
   ###
   ###<select radians(360) 
   ###>6.2831853071796
func_odbc_rand=yes			# Function RAND
   ###
   ###<select rand(1) 
   ###>0.40540353712198
func_odbc_repeat=yes			# Function REPEAT
   ###
   ###<select repeat('ab',3) 
   ###>ababab
func_odbc_replace=yes			# Function REPLACE
   ###
   ###<select replace('abbaab','ab','ba') 
   ###>bababa
func_odbc_right=yes			# Function RIGHT
   ###
   ###<select right('abcd',2) 
   ###>cd
func_odbc_round=yes			# Function ROUND(2 arg)
   ###
   ###<select round(5.63,2) 
   ###>5.63
func_odbc_rtrim=yes			# Function RTRIM
   ###
   ###<select rtrim(' abcd  ') 
   ###> abcd
func_odbc_second=yes			# Function SECOND
   ###< insert into crash_me_t values(20:08:16)
   ###
   ###<select second('12:13:14') 
   ###>14
1451 1452
   ###< insert into crash_me_t values(20:08:16)
   ###< insert into crash_me_t values(20:08:16)
monty@mysql.com's avatar
monty@mysql.com committed
1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480
func_odbc_sign=yes			# Function SIGN
   ###
   ###<select sign(-5) 
   ###>-1
func_odbc_sin=yes			# Function SIN
   ###
   ###<select sin(1) 
   ###>0.841471
func_odbc_soundex=yes			# Function SOUNDEX
   ###
   ###<select soundex('hello') 
   ###>H400
func_odbc_space=yes			# Function SPACE
   ###
   ###<select space(5) 
   ###>     
func_odbc_sqrt=yes			# Function SQRT
   ###
   ###<select sqrt(4) 
   ###>2.000000
func_odbc_substring=yes			# Function ODBC SUBSTRING
   ###
   ###<select substring('abcd',3,2) 
   ###>cd
func_odbc_tan=yes			# Function TAN
   ###
   ###<select tan(1) 
   ###>1.557408
1481
func_odbc_timestampadd=yes		# Function TIMESTAMPADD
monty@mysql.com's avatar
monty@mysql.com committed
1482 1483
   ###
   ###<select timestampadd(SQL_TSI_SECOND,1,'1997-01-01 00:00:00') 
1484 1485
   ###>1997-01-01 00:00:01
func_odbc_timestampdiff=error		# Function TIMESTAMPDIFF
monty@mysql.com's avatar
monty@mysql.com committed
1486 1487
   ###
   ###<select timestampdiff(SQL_TSI_SECOND,'1997-01-01 00:00:02', '1997-01-01 00:00:01') 
1488 1489
   ###>-1
   ###We expected '1' but got '-1' 
monty@mysql.com's avatar
monty@mysql.com committed
1490 1491
   ###
   ###<select {fn timestampdiff(SQL_TSI_SECOND,{ts '1997-01-01 00:00:02'}, {ts '1997-01-01 00:00:01'}) } 
1492 1493
   ###>-1
   ###We expected '1' but got '-1' 
monty@mysql.com's avatar
monty@mysql.com committed
1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509
func_odbc_truncate=yes			# Function TRUNCATE
   ###
   ###<select truncate(18.18,-1) 
   ###>10
func_odbc_ucase=yes			# Function UCASE
   ###
   ###<select ucase('abc') 
   ###>ABC
func_odbc_user()=yes			# Function USER()
   ###
   ###<select user() 
   ###>monty@localhost
func_odbc_week=USA			# WEEK
   ###<select week('1997-02-01') 
   ###>4
   ###We expected '5' but got '4' 
1510 1511 1512 1513 1514 1515
   ###<select week('1997-02-01') 
   ###>4
   ###We expected '5' but got '4' 
   ###<select week('1997-02-01') 
   ###>4
   ###We expected '5' but got '4' 
monty@mysql.com's avatar
monty@mysql.com committed
1516 1517 1518 1519 1520
func_odbc_year=yes			# Function YEAR
   ###< insert into crash_me_d values('1997-02-01')
   ###
   ###<select year(a) from crash_me_d
   ###>1997
1521 1522
   ###< insert into crash_me_d values('1997-02-01')
   ###< insert into crash_me_d values('1997-02-01')
monty@mysql.com's avatar
monty@mysql.com committed
1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559
func_sql_+=yes				# Function +, -, * and /
   ###
   ###<select 5*3-4/2+1 
   ###>14.00
func_sql_bit_length=yes			# Function BIT_LENGTH
   ###
   ###<select bit_length('abc') 
   ###>24
func_sql_cast=yes			# Function CAST
   ###
   ###<select CAST(1 as CHAR) 
   ###>1
func_sql_char_length=error		# Function CHAR_LENGTH
   ###
   ###<select char_length(b) from crash_me  
   ###>1
   ###We expected '10' but got '1' 
func_sql_char_length(constant)=yes	# Function CHAR_LENGTH(constant)
   ###
   ###<select char_length('abcd') 
   ###>4
func_sql_character_length=yes		# Function CHARACTER_LENGTH
   ###
   ###<select character_length('abcd') 
   ###>4
func_sql_coalesce=yes			# Function COALESCE
   ###
   ###<select coalesce(NULL,'bcd','qwe') 
   ###>bcd
func_sql_concat_as_||=error		# Function concatenation with ||
   ###
   ###<select 'abc' || 'def' 
   ###>0
   ###We expected 'abcdef' but got '0' 
func_sql_current_date=yes		# Function CURRENT_DATE
   ###
   ###<select current_date 
1560
   ###>2003-12-24
monty@mysql.com's avatar
monty@mysql.com committed
1561 1562 1563
func_sql_current_time=yes		# Function CURRENT_TIME
   ###
   ###<select current_time 
1564
   ###>09:46:11
monty@mysql.com's avatar
monty@mysql.com committed
1565 1566 1567
func_sql_current_timestamp=yes		# Function CURRENT_TIMESTAMP
   ###
   ###<select current_timestamp 
1568
   ###>2003-12-24 09:46:11
monty@mysql.com's avatar
monty@mysql.com committed
1569 1570 1571 1572 1573 1574
func_sql_current_user=with_parenthesis	# CURRENT_USER
   ###< select CURRENT_USER 
   ###> execute error:Unknown column 'CURRENT_USER' in 'field list'
   ###
   ###< select CURRENT_USER() 
   ###> OK
1575 1576 1577 1578 1579 1580 1581
   ###< select CURRENT_USER 
   ###> OK
   ###< select CURRENT_USER 
   ###> execute error:Unknown column 'CURRENT_USER' in 'field list'
   ###
   ###< select CURRENT_USER() 
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
1582 1583 1584 1585 1586 1587 1588
func_sql_extract_sql=yes		# Function EXTRACT
   ###
   ###<select extract(minute from timestamp '2000-02-23 18:43:12.987') 
   ###>43
func_sql_localtime=yes			# Function LOCALTIME
   ###
   ###<select localtime 
1589
   ###>2003-12-24 09:46:11
monty@mysql.com's avatar
monty@mysql.com committed
1590 1591 1592
func_sql_localtimestamp=yes		# Function LOCALTIMESTAMP
   ###
   ###<select localtimestamp 
1593
   ###>2003-12-24 09:46:11
monty@mysql.com's avatar
monty@mysql.com committed
1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623
func_sql_lower=yes			# Function LOWER
   ###
   ###<select LOWER('ABC') 
   ###>abc
func_sql_nullif_num=yes			# Function NULLIF with numbers
   ###
   ###<select NULLIF(NULLIF(1,2),1) 
   ###>
func_sql_nullif_string=yes		# Function NULLIF with strings
   ###
   ###<select NULLIF(NULLIF('first','second'),'first') 
   ###>
func_sql_octet_length=yes		# Function OCTET_LENGTH
   ###
   ###<select octet_length('abc') 
   ###>3
func_sql_position=yes			# Function POSITION
   ###
   ###<select position('ll' in 'hello') 
   ###>3
func_sql_searched_case=yes		# Function searched CASE
   ###
   ###<select case when 1 > 2 then 'false' when 2 > 1 then 'true' end 
   ###>true
func_sql_session_user=with_parenthesis	# SESSION_USER
   ###< select SESSION_USER 
   ###> execute error:Unknown column 'SESSION_USER' in 'field list'
   ###
   ###< select SESSION_USER() 
   ###> OK
1624 1625 1626 1627 1628 1629 1630 1631 1632 1633
   ###< select SESSION_USER 
   ###> execute error:Unknown column 'SESSION_USER' in 'field list'
   ###
   ###< select SESSION_USER() 
   ###> OK
   ###< select SESSION_USER 
   ###> execute error:Unknown column 'SESSION_USER' in 'field list'
   ###
   ###< select SESSION_USER() 
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647
func_sql_simple_case=yes		# Function simple CASE
   ###
   ###<select case 2 when 1 then 'false' when 2 then 'true' end 
   ###>true
func_sql_substring=yes			# Function ANSI SQL SUBSTRING
   ###
   ###<select substring('abcd' from 2 for 2) 
   ###>bc
func_sql_system_user=with_parenthesis	# SYSTEM_USER
   ###< select SYSTEM_USER 
   ###> execute error:Unknown column 'SYSTEM_USER' in 'field list'
   ###
   ###< select SYSTEM_USER() 
   ###> OK
1648 1649 1650 1651 1652 1653 1654 1655 1656 1657
   ###< select SYSTEM_USER 
   ###> execute error:Unknown column 'SYSTEM_USER' in 'field list'
   ###
   ###< select SYSTEM_USER() 
   ###> OK
   ###< select SYSTEM_USER 
   ###> execute error:Unknown column 'SYSTEM_USER' in 'field list'
   ###
   ###< select SYSTEM_USER() 
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671
func_sql_trim=yes			# Function TRIM
   ###
   ###<select trim(trailing from trim(LEADING FROM ' abc ')) 
   ###>abc
func_sql_upper=yes			# Function UPPER
   ###
   ###<select UPPER('abc') 
   ###>ABC
func_sql_user=with_parenthesis		# USER
   ###< select USER 
   ###> execute error:Unknown column 'USER' in 'field list'
   ###
   ###< select USER() 
   ###> OK
1672 1673 1674 1675 1676 1677 1678 1679 1680 1681
   ###< select USER 
   ###> execute error:Unknown column 'USER' in 'field list'
   ###
   ###< select USER() 
   ###> OK
   ###< select USER 
   ###> execute error:Unknown column 'USER' in 'field list'
   ###
   ###< select USER() 
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
1682 1683 1684 1685
func_where_between=yes			# Function BETWEEN
   ###
   ###<select a from crash_me where 5 between 4 and 6
   ###>1
1686
func_where_eq_all=yes			# Function = ALL
monty@mysql.com's avatar
monty@mysql.com committed
1687 1688
   ###
   ###<select a from crash_me where b =all (select b from crash_me)
1689 1690
   ###>1
func_where_eq_any=yes			# Function = ANY
monty@mysql.com's avatar
monty@mysql.com committed
1691 1692
   ###
   ###<select a from crash_me where b =any (select b from crash_me)
1693 1694
   ###>1
func_where_eq_some=yes			# Function = SOME
monty@mysql.com's avatar
monty@mysql.com committed
1695 1696
   ###
   ###<select a from crash_me where b =some (select b from crash_me)
1697 1698
   ###>1
func_where_exists=yes			# Function EXISTS
monty@mysql.com's avatar
monty@mysql.com committed
1699 1700
   ###
   ###<select a from crash_me where exists (select * from crash_me)
1701
   ###>1
monty@mysql.com's avatar
monty@mysql.com committed
1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729
func_where_in_num=yes			# Function IN on numbers
   ###
   ###<select a from crash_me where 2 in (3,2,5,9,5,1)
   ###>1
func_where_like=yes			# Function LIKE
   ###
   ###<select a from crash_me where b like 'a%'
   ###>1
func_where_like_escape=yes		# Function LIKE ESCAPE
   ###
   ###<select a from crash_me where b like '%' escape 'a'
   ###>1
func_where_match=no			# Function MATCH
   ###
   ###<select a from crash_me where 1 match (select a from crash_me)
   ###> execute failed: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 'match (select a from crash_me)' at line 1
func_where_match_unique=no		# Function MATCH UNIQUE
   ###
   ###<select a from crash_me where 1 match unique (select a from crash_me)
   ###> execute failed: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 'match unique (select a from crash_me)' at line 1
func_where_matches=no			# Function MATCHES
   ###
   ###<select a from crash_me where b matcjhes 'a*'
   ###> execute failed: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 'matcjhes 'a*'' at line 1
func_where_not_between=yes		# Function NOT BETWEEN
   ###
   ###<select a from crash_me where 7 not between 4 and 6
   ###>1
1730
func_where_not_exists=yes		# Function NOT EXISTS
monty@mysql.com's avatar
monty@mysql.com committed
1731 1732
   ###
   ###<select a from crash_me where not exists (select * from crash_me where a = 2)
1733
   ###>1
monty@mysql.com's avatar
monty@mysql.com committed
1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803
func_where_not_like=yes			# Function NOT LIKE
   ###
   ###<select a from crash_me where b not like 'b%'
   ###>1
func_where_not_unique=no		# Function NOT UNIQUE
   ###
   ###<select a from crash_me where not unique (select * from crash_me where a = 2)
   ###> execute failed: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 'unique (select * from crash_me where a = 2)' at line 1
func_where_unique=no			# Function UNIQUE
   ###
   ###<select a from crash_me where unique (select * from crash_me)
   ###> execute failed: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 'unique (select * from crash_me)' at line 1
functions=yes				# Functions
   ###< select 1+1 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
group_by=yes				# Group by
   ###< select a from crash_me group by a
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
group_by_alias=yes			# Group by alias
   ###< select a as ab from crash_me group by ab
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
group_by_null=yes			# Group on column with null values
   ###< create table crash_q (s char(10))
   ###> OK
   ###< insert into crash_q values(null)
   ###> OK
   ###< insert into crash_q values(null)
   ###> OK
   ###
   ###<select count(*),s from crash_q group by s
   ###>2
   ###
   ###< drop table crash_q 
   ###> OK
group_by_position=yes			# Group by position
   ###< select a from crash_me group by 1
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
group_distinct_functions=yes		# Group functions with distinct
   ###< select count(distinct a) from crash_me
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
group_func_extra_bit_and=yes		# Group function BIT_AND
   ###
   ###<select bit_and(a),a from crash_me group by a
   ###>1
group_func_extra_bit_or=yes		# Group function BIT_OR
   ###
   ###<select bit_or(a),a from crash_me group by a
   ###>1
group_func_extra_count_distinct_list=yes	# Group function COUNT(DISTINCT expr,expr,...)
   ###
   ###<select count(distinct a,b),a from crash_me group by a
   ###>1
group_func_extra_std=yes		# Group function STD
   ###
   ###<select std(a),a from crash_me group by a
   ###>0.0000
group_func_extra_stddev=yes		# Group function STDDEV
   ###
   ###<select stddev(a),a from crash_me group by a
   ###>0.0000
1804
group_func_extra_variance=yes		# Group function VARIANCE
monty@mysql.com's avatar
monty@mysql.com committed
1805 1806
   ###
   ###<select variance(a),a from crash_me group by a
1807
   ###>0.0000
monty@mysql.com's avatar
monty@mysql.com committed
1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870
group_func_sql_any=no			# Group function ANY
   ###
   ###<select any(a),a from crash_me group by a
   ###> execute failed: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 '(a),a from crash_me group by a' at line 1
group_func_sql_avg=yes			# Group function AVG
   ###
   ###<select avg(a),a from crash_me group by a
   ###>1.0000
group_func_sql_count_*=yes		# Group function COUNT (*)
   ###
   ###<select count(*),a from crash_me group by a
   ###>1
group_func_sql_count_column=yes		# Group function COUNT column name
   ###
   ###<select count(a),a from crash_me group by a
   ###>1
group_func_sql_count_distinct=yes	# Group function COUNT(DISTINCT expr)
   ###
   ###<select count(distinct a),a from crash_me group by a
   ###>1
group_func_sql_every=no			# Group function EVERY
   ###
   ###<select every(a),a from crash_me group by a
   ###> execute failed: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 '(a),a from crash_me group by a' at line 1
group_func_sql_max=yes			# Group function MAX on numbers
   ###
   ###<select max(a),a from crash_me group by a
   ###>1
group_func_sql_max_str=yes		# Group function MAX on strings
   ###
   ###<select max(b),a from crash_me group by a
   ###>a
group_func_sql_min=yes			# Group function MIN on numbers
   ###
   ###<select min(a),a from crash_me group by a
   ###>1
group_func_sql_min_str=yes		# Group function MIN on strings
   ###
   ###<select min(b),a from crash_me group by a
   ###>a
group_func_sql_some=no			# Group function SOME
   ###
   ###<select some(a),a from crash_me group by a
   ###> execute failed: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 '(a),a from crash_me group by a' at line 1
group_func_sql_sum=yes			# Group function SUM
   ###
   ###<select sum(a),a from crash_me group by a
   ###>1
group_functions=yes			# Group functions
   ###< select count(*) from crash_me
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
group_many_distinct_functions=yes	# Group functions with several distinct
   ###< select count(distinct a), count(distinct b) from crash_me
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
group_on_unused=yes			# Group on unused column
   ###< select count(*) from crash_me group by a
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
1871
has_true_false=yes			# TRUE and FALSE
monty@mysql.com's avatar
monty@mysql.com committed
1872
   ###< select (1=1)=true 
1873
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012
having=yes				# Having
   ###<select a from crash_me group by a having a > 0
   ###>1
   ###
   ###<select a from crash_me group by a having a < 0
   ###> didn't return any result:
having_with_alias=yes			# Having on alias
   ###< select a as ab from crash_me group by a having ab > 0
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
having_with_group=yes			# Having with group function
   ###< select a from crash_me group by a having count(*) = 1
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
hex_numbers=yes				# hex numbers (0x41)
   ###< select 0x41 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
hex_strings=yes				# hex strings (x'1ace')
   ###< select x'1ace' 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
ignore_end_space=yes			# Ignore end space in compare
   ###
   ###<select b from crash_me where b = 'a '
   ###>a
index_in_create=yes			# index in create table
   ###< create table crash_q (q integer not null,index (q))
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
index_namespace=yes			# different namespace for index
   ###< create index crash_me on crash_me (b)
   ###> OK
   ###< drop index crash_me on crash_me
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
index_parts=yes				# index on column part (extension)
   ###< create index crash_q on crash_me (b(5))
   ###> OK
   ###< drop index crash_q on crash_me
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
inner_join=yes				# inner join
   ###< select crash_me.a from crash_me inner join crash_me2 ON crash_me.a=crash_me2.a
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
insert_default_values=no		# INSERT DEFAULT VALUES
   ###< create table crash_me_q (a int)
   ###> OK
   ###< insert into crash_me_q  DEFAULT VALUES
   ###> execute error: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 'DEFAULT VALUES' at line 1
   ###< drop table crash_me_q 
   ###> OK
   ###
   ###As far as some queries didnt return OK, result is NO
insert_empty_string=yes			# insert empty string
   ###< create table crash_q (a char(10) not null,b char(10)) 
   ###> OK
   ###< insert into crash_q values ('','')
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
insert_multi_value=yes			# INSERT with Value lists
   ###< create table crash_q (s char(10))
   ###> OK
   ###< insert into crash_q values ('a'),('b')
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
insert_select=yes			# insert INTO ... SELECT ...
   ###< create table crash_q (a int)
   ###> OK
   ###< insert into crash_q (a) SELECT crash_me.a from crash_me
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
insert_with_default=yes			# INSERT with DEFAULT
   ###< create table crash_me_q (a int)
   ###> OK
   ###< insert into crash_me_q (a) values (DEFAULT)
   ###> OK
   ###< drop table crash_me_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
insert_with_empty_value_list=no		# INSERT with empty value list
   ###< create table crash_me_q (a int)
   ###> OK
   ###< insert into crash_me_q (a) values ()
   ###> execute error:Column count doesn't match value count at row 1
   ###< drop table crash_me_q 
   ###> OK
   ###
   ###As far as some queries didnt return OK, result is NO
insert_with_set=yes			# INSERT with set syntax
   ###< create table crash_q (a integer)
   ###> OK
   ###< insert into crash_q SET a=1
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
intersect=no				# intersect
   ###< select * from crash_me intersect select * from crash_me3
   ###> execute error: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 'select * from crash_me3' at line 1
   ###
   ###As far as some queries didnt return OK, result is NO
intersect_all=no			# intersect all
   ###< select * from crash_me intersect all select * from crash_me3
   ###> execute error: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 'all select * from crash_me3' at line 1
   ###
   ###As far as some queries didnt return OK, result is NO
intersect_all_incompat=no		# intersect all (incompatible lists)
   ###< select * from crash_me intersect all select * from crash_me2
   ###> execute error: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 'all select * from crash_me2' at line 1
   ###
   ###As far as some queries didnt return OK, result is NO
intersect_incompat=no			# intersect (incompatible lists)
   ###< select * from crash_me intersect select * from crash_me2
   ###> execute error: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 'select * from crash_me2' at line 1
   ###
   ###As far as some queries didnt return OK, result is NO
2013
join_tables=61				# tables in join
monty@mysql.com's avatar
monty@mysql.com committed
2014 2015
   ###We are trying (example with N=5):
   ###select crash_me.a,t0.a,t1.a,t2.a,t3.a,t4.a from crash_me,crash_me t0,crash_me t1,crash_me t2,crash_me t3,crash_me t4
2016
   ### 32:OK 48:OK 56:OK 60:OK 62:FAIL 61:FAIL
monty@mysql.com's avatar
monty@mysql.com committed
2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070
left_outer_join=yes			# left outer join
   ###< select crash_me.a from crash_me left join crash_me2 ON crash_me.a=crash_me2.a
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
left_outer_join_using=yes		# left outer join using
   ###< select c1 from crash_me left join crash_me2 using (a)
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
length_of_varchar_field=actual length	# CHARACTER_LENGTH(varchar_field)
   ###< CREATE TABLE crash_me1 (S1 VARCHAR(100))
   ###> OK
   ###< INSERT INTO crash_me1 VALUES ('X')
   ###> OK
   ###
   ###< SELECT CHARACTER_LENGTH(S1) FROM crash_me1
   ### > 1
   ###< drop table crash_me1 
   ###> OK
like_with_column=yes			# column LIKE column
   ###< create table crash_q (a char(10),b char(10))
   ###> OK
   ###< insert into crash_q values('abc','abc')
   ###> OK
   ###< select * from crash_q where a like b
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
like_with_number=yes			# LIKE on numbers
   ###< create table crash_q (a int,b int)
   ###> OK
   ###< insert into crash_q values(10,10)
   ###> OK
   ###< select * from crash_q where a like '10'
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
lock_tables=yes				# lock table
   ###< lock table crash_me READ
   ###> OK
   ###< unlock tables
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
logical_value=1				# Value of logical operation (1=1)
   ###<select (1=1) 
   ###>1
max_big_expressions=10			# big expressions
   ###We are trying (example with N=5):
2071
   ###select 0+(1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+...(14328)
monty@mysql.com's avatar
monty@mysql.com committed
2072
   ### 50:FAIL 10:OK 30:FAIL 14:FAIL 11:FAIL
2073
max_char_size=1048543			# max char() size
monty@mysql.com's avatar
monty@mysql.com committed
2074 2075 2076 2077
   ###We are trying (example with N=5):
   ###create table crash_q (q char(5))
   ###insert into crash_q values ('aaaaa')
   ###select * from crash_q
2078
   ### 524287:OK 786431:OK 917503:OK 983039:OK 1015807:OK 1032191:OK 1040383:OK 1044479:OK 1046527:OK 1047551:OK 1048063:OK 1048319:OK 1048447:OK 1048511:OK 1048543:OK 1048559:FAIL 1048546:FAIL 1048544:FAIL
monty@mysql.com's avatar
monty@mysql.com committed
2079 2080 2081 2082 2083 2084
max_column_name=64			# column name length
   ###We are trying (example with N=5):
   ###create table crash_q (qaaaaa integer)
   ###insert into crash_q (qaaaaa) values(1)
   ###select qaaaaa from crash_q
   ### 256:FAIL 51:OK 153:FAIL 72:FAIL 55:OK 63:OK 67:FAIL 64:FAIL
2085
max_columns=2599			# Columns in table
monty@mysql.com's avatar
monty@mysql.com committed
2086 2087
   ###We are trying (example with N=5):
   ###create table crash_q (a integer ,a0 integer,a1 integer,a2 integer,a3 integer,a4 integer)
2088
   ### 4096:FAIL 819:OK 2457:OK 3276:FAIL 2621:FAIL 2490:OK 2555:OK 2588:OK 2604:FAIL 2591:OK 2597:OK 2600:FAIL 2598:OK 2599:FAIL
monty@mysql.com's avatar
monty@mysql.com committed
2089 2090 2091 2092
max_conditions=85660			# OR and AND in WHERE
   ###We are trying (example with N=5):
   ###select a from crash_me where a=1 and b='a'  or a=0 and b='0' or a=1 and b='1' or a=2 and b='2' or a=3 and b='3' or a=4 and b='4'
   ### 27592:OK 41389:OK 48287:FAIL 42769:OK 45528:FAIL 43321:FAIL 42880:FAIL 42791:OK 42835:FAIL 42800:OK 42817:OK 42826:OK 42830:OK 42832:FAIL 42831:FAIL
2093
max_expressions=1452			# simple expressions
monty@mysql.com's avatar
monty@mysql.com committed
2094 2095
   ###We are trying (example with N=5):
   ###select 1+1+1+1+1+1
2096
   ### 5000:FAIL 1000:OK 3000:FAIL 1400:OK 2200:FAIL 1560:FAIL 1432:OK 1496:FAIL 1445:OK 1470:FAIL 1450:OK 1460:FAIL 1452:OK 1456:FAIL 1453:FAIL
monty@mysql.com's avatar
monty@mysql.com committed
2097 2098
max_index=32				# max index
   ### max_unique_index=32 ,so max_index must be same
2099 2100
   ### max_unique_index=32 ,so max_index must be same
   ### max_unique_index=32 ,so max_index must be same
monty@mysql.com's avatar
monty@mysql.com committed
2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114
max_index_length=500			# index length
   ###We are trying (example with N=5):
   ###create table crash_q (q0 char(5) not null,unique (q0))
   ###insert into crash_q values('aaaaa')
   ### 4096:FAIL 819:FAIL 164:OK 491:OK 655:FAIL 524:FAIL 498:OK 511:FAIL 501:FAIL 499:OK 500:OK
max_index_name=64			# index name length
   ###We are trying (example with N=5):
   ###create index crash_qaaaaa on crash_me (a)
   ### 256:FAIL 51:OK 153:FAIL 72:FAIL 55:OK 63:FAIL 57:OK 60:FAIL 58:FAIL
max_index_part_length=255		# max index part length
   ###We are trying (example with N=5):
   ###create table crash_q (q char(5) not null,unique(q))
   ###insert into crash_q (q) values ('aaaaa')
   ###select q from crash_q
2115
   ### 524271:FAIL 104854:FAIL 20971:FAIL 4194:FAIL 839:FAIL 168:OK 503:FAIL 235:OK 369:FAIL 262:FAIL 241:OK 251:OK 256:FAIL 252:OK 254:OK 255:OK
monty@mysql.com's avatar
monty@mysql.com committed
2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126
max_index_parts=16			# index parts
   ###We are trying (example with N=5):
   ###create table crash_q (q0 integer not null,q1 integer not null,q2 integer not null,q3 integer not null,q4 integer not nul...(1263)
   ###insert into crash_q (q0,q1,q2,q3,q4,q5,q6,q7,q8,q9,q10,q11,q12,q13,q14,q15,q16,q17,q18,q19,q20,q21,q22,q23,q24,q25,q26,q...(284)
   ###select q0 from crash_q
   ### 32:FAIL 7:OK 19:FAIL 10:OK 14:OK 16:FAIL 15:OK
max_index_varchar_part_length=255	# index varchar part length
   ###We are trying (example with N=5):
   ###create table crash_q (q varchar(5) not null,unique(q))
   ###insert into crash_q (q) values ('aaaaa')
   ###select q from crash_q
2127
   ### 524271:FAIL 104854:FAIL 20971:FAIL 4194:FAIL 839:FAIL 168:OK 503:FAIL 235:OK 369:FAIL 262:FAIL 241:OK 251:OK 256:FAIL 252:OK 254:OK 255:OK
monty@mysql.com's avatar
monty@mysql.com committed
2128 2129 2130 2131
max_row_length=65534			# max table row length (without blobs)
   ###We are trying (example with N=5):
   ###create table crash_q  (q0 char(5) not null)
   ###insert into crash_q  values ('aaaaa')
2132
   ### 331372:FAIL 66275:FAIL 13255:OK 39765:OK 53020:OK 59647:OK 62961:OK 64618:OK 65446:OK 65860:FAIL 65529:OK 65694:FAIL 65562:FAIL 65536:FAIL 65531:OK 65533:OK 65534:OK 65535:FAIL
monty@mysql.com's avatar
monty@mysql.com committed
2133 2134 2135 2136 2137 2138 2139 2140
max_row_length_with_null=65502		# table row length with nulls (without blobs)
   ###We are trying (example with N=5):
   ###create table crash_q  (q0 char(5) )
   ###insert into crash_q  values ('aaaaa')
   ### 65534:FAIL 13107:OK 39320:OK 52427:OK 58980:OK 62257:OK 63895:OK 64714:OK 65124:OK 65329:OK 65431:OK 65482:OK 65508:FAIL 65487:OK 65497:OK 65502:OK 65505:FAIL 65503:FAIL
max_select_alias_name=+512		# select alias name length
   ###We are trying (example with N=5):
   ###select b as aaaaa from crash_me
2141
max_stack_expression=1452		# stacked expressions
monty@mysql.com's avatar
monty@mysql.com committed
2142 2143
   ###We are trying (example with N=5):
   ###select 1+(1+(1+(1+(1+(1)))))
2144
   ### 1000:OK 1500:FAIL 1100:OK 1300:OK 1400:OK 1450:OK 1475:FAIL 1455:FAIL 1451:OK 1453:FAIL 1452:OK
monty@mysql.com's avatar
monty@mysql.com committed
2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165
max_table_alias_name=+512		# table alias name length
   ###We are trying (example with N=5):
   ###select aaaaa.b from crash_me aaaaa
max_table_name=64			# table name length
   ###We are trying (example with N=5):
   ###create table crash_qaaaaa (q integer)
   ###insert into crash_qaaaaa values(1)
   ###select * from crash_qaaaaa
   ### 256:FAIL 51:OK 153:FAIL 72:FAIL 55:OK 63:FAIL 57:OK 60:FAIL 58:FAIL
max_text_size=1048543			# max text or blob size
   ###We are trying (example with N=5):
   ###create table crash_q (q mediumtext)
   ###insert into crash_q values ('aaaaa')
   ###select * from crash_q
   ### 524272:OK 786408:OK 917476:OK 983010:OK 1015777:OK 1032161:OK 1040353:OK 1044449:OK 1046497:OK 1047521:OK 1048033:OK 1048289:OK 1048417:OK 1048481:OK 1048513:OK 1048529:OK 1048537:OK 1048541:OK 1048543:OK 1048544:FAIL
max_unique_index=32			# unique indexes
   ###We are trying (example with N=5):
   ###create table crash_q (q integer,q1 integer not null,unique (q1),q2 integer not null,unique (q2),q3 integer not null,uniq...(72)
   ###insert into crash_q (q,q1,q2,q3,q4,q5) values (1,1,1,1,1,1)
   ###select q from crash_q
   ### 32:OK 48:FAIL 35:FAIL 33:FAIL
2166
max_varchar_size=1048543		# max varchar() size
monty@mysql.com's avatar
monty@mysql.com committed
2167 2168 2169 2170
   ###We are trying (example with N=5):
   ###create table crash_q (q varchar(5))
   ###insert into crash_q values ('aaaaa')
   ###select * from crash_q
2171
   ### 524287:OK 786431:OK 917503:OK 983039:OK 1015807:OK 1032191:OK 1040383:OK 1044479:OK 1046527:OK 1047551:OK 1048063:OK 1048319:OK 1048447:OK 1048511:OK 1048543:OK 1048559:FAIL 1048546:FAIL 1048544:FAIL
monty@mysql.com's avatar
monty@mysql.com committed
2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254
minus=no				# minus
   ###< select * from crash_me minus select * from crash_me3
   ###> execute error: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 'select * from crash_me3' at line 1
   ###
   ###As far as some queries didnt return OK, result is NO
minus_incompat=no			# minus (incompatible lists)
   ###< select * from crash_me minus select * from crash_me2
   ###> execute error: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 'select * from crash_me2' at line 1
   ###
   ###As far as some queries didnt return OK, result is NO
minus_neg=yes				# Calculate 1--1
   ###
   ###<select a--1 from crash_me
   ###>2
multi_drop=yes				# many tables to drop table
   ###< create table crash_q (a int)
   ###> OK
   ###< create table crash_q2 (a int)
   ###> OK
   ###< drop table crash_q,crash_q2 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
multi_null_in_unique=yes		# null in unique index
   ###< create table crash_q (q integer, x integer,unique (q)) 
   ###> OK
   ###< insert into crash_q(x) values(1)
   ###> OK
   ###< insert into crash_q(x) values(2)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
multi_strings=yes			# Multiple line strings
   ###
   ###<select a from crash_me where b < 'a'
   ###'b'
   ###>1
multi_table_delete=yes			# DELETE FROM table1,table2...
   ###< create table crash_q (a integer,b char(10))
   ###> OK
   ###< insert into crash_q values(1,'c')
   ###> OK
   ###< delete crash_q.* from crash_q,crash_me where crash_q.a=crash_me.a
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
multi_table_update=yes			# Update with many tables
   ###< create table crash_q (a integer,b char(10))
   ###> OK
   ###< insert into crash_q values(1,'c')
   ###> OK
   ###< update crash_q left join crash_me on crash_q.a=crash_me.a set crash_q.b=crash_me.b
   ###> OK
   ###
   ###<select b from crash_q
   ###>a
   ###
   ###< drop table crash_q 
   ###> OK
natural_join=yes			# natural join
   ###< select * from crash_me natural join crash_me3
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
natural_join_incompat=yes		# natural join (incompatible lists)
   ###< select c1 from crash_me natural join crash_me2
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
natural_left_outer_join=yes		# natural left outer join
   ###< select c1 from crash_me natural left join crash_me2
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
no_primary_key=yes			# Tables without primary key
   ###< create table crash_me (a integer not null,b char(10) not null)
   ###> OK
   ###< insert into crash_me (a,b) values (1,'a')
   ###> OK
2255 2256 2257 2258 2259 2260 2261 2262
   ###< create table crash_me (a integer not null,b char(10) not null)
   ###> OK
   ###< insert into crash_me (a,b) values (1,'a')
   ###> OK
   ###< create table crash_me (a integer not null,b char(10) not null)
   ###> OK
   ###< insert into crash_me (a,b) values (1,'a')
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275
not_id_between=no			# NOT ID BETWEEN interprets as ID NOT BETWEEN
   ###< create table crash_me_b (i int)
   ###> OK
   ###< insert into crash_me_b values(2)
   ###> OK
   ###< insert into crash_me_b values(5)
   ###> OK
   ###
   ###<select i from crash_me_b where not i between 1 and 3
   ###> didn't return any result:
   ###
   ###< drop table crash_me_b
   ###> OK
2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299
   ###< create table crash_me_b (i int)
   ###> OK
   ###< insert into crash_me_b values(2)
   ###> OK
   ###< insert into crash_me_b values(5)
   ###> OK
   ###
   ###<select i from crash_me_b where not i between 1 and 3
   ###> didn't return any result:
   ###
   ###< drop table crash_me_b
   ###> OK
   ###< create table crash_me_b (i int)
   ###> OK
   ###< insert into crash_me_b values(2)
   ###> OK
   ###< insert into crash_me_b values(5)
   ###> OK
   ###
   ###<select i from crash_me_b where not i between 1 and 3
   ###> didn't return any result:
   ###
   ###< drop table crash_me_b
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389
null_concat_expr=yes			# Is concat('a',NULL) = NULL
   ###
   ###<select concat('a',NULL) 
   ###>
null_in_index=yes			# null in index
   ###< create table crash_q (a char(10),index (a)) 
   ###> OK
   ###< insert into crash_q values (NULL)
   ###> OK
   ###
   ###<select * from crash_q
   ###>
   ###
   ###< drop table crash_q 
   ###> OK
null_in_unique=yes			# null in unique index
   ###< create table crash_q (q integer,unique (q)) 
   ###> OK
   ###< insert into crash_q (q) values(NULL)
   ###> OK
   ###< insert into crash_q (q) values(NULL)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
null_num_expr=yes			# Is 1+NULL = NULL
   ###
   ###<select 1+NULL 
   ###>
nulls_in_unique=yes			# null combination in unique index
   ###< create table crash_q (q integer,q1 integer,unique (q,q1)) 
   ###> OK
   ###< insert into crash_q (q,q1) values(1,NULL)
   ###> OK
   ###< insert into crash_q (q,q1) values(1,NULL)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
odbc_left_outer_join=yes		# left outer join odbc style
   ###< select crash_me.a from { oj crash_me left outer join crash_me2 ON crash_me.a=crash_me2.a }
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
operating_system=Linux 2.4.20-64GB-SMP i686	# crash-me tested on
order_by=yes				# Order by
   ###< select a from crash_me order by a
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
order_by_alias=yes			# Order by alias
   ###< select a as ab from crash_me order by ab
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
order_by_function=yes			# Order by function
   ###< select a from crash_me order by a+1
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
order_by_position=yes			# Order by position
   ###< select a from crash_me order by 1
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
order_on_unused=yes			# Order by on unused column
   ###< select b from crash_me order by a
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
position_of_null=first			# Where is null values in sorted recordset
   ###< insert into crash_me_n (i) values(1)
   ###> OK
   ###< insert into crash_me_n values(2,2)
   ###> OK
   ###< insert into crash_me_n values(3,3)
   ###> OK
   ###< insert into crash_me_n values(4,4)
   ###> OK
   ###< insert into crash_me_n (i) values(5)
   ###> OK
   ###
   ###< select r from crash_me_n order by r 
   ###> 
   ###> 
   ###> 2
   ###> 3
   ###> 4
2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409
   ###< insert into crash_me_n (i) values(1)
   ###> OK
   ###< insert into crash_me_n values(2,2)
   ###> OK
   ###< insert into crash_me_n values(3,3)
   ###> OK
   ###< insert into crash_me_n values(4,4)
   ###> OK
   ###< insert into crash_me_n (i) values(5)
   ###> OK
   ###< insert into crash_me_n (i) values(1)
   ###> OK
   ###< insert into crash_me_n values(2,2)
   ###> OK
   ###< insert into crash_me_n values(3,3)
   ###> OK
   ###< insert into crash_me_n values(4,4)
   ###> OK
   ###< insert into crash_me_n (i) values(5)
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427
position_of_null_desc=last		# Where is null values in sorted recordset (DESC)
   ###< select r from crash_me_n order by r  desc
   ###> 4
   ###> 3
   ###> 2
   ###> 
   ###> 
primary_key_in_create=yes		# primary key in create table
   ###< create table crash_q (q integer not null,primary key (q))
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
psm_functions=no			# PSM functions (ANSI SQL)
   ###< create table crash_q (a int)
   ###> OK
   ###< create function crash_func(in a1 int, in b1 int) returns int language sql deterministic contains sql  begin return a1 * b1; end
2428
   ###> execute error: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 'in a1 int, in b1 int) returns int language sql deterministic co
monty@mysql.com's avatar
monty@mysql.com committed
2429 2430 2431 2432 2433
   ###< insert into crash_q values(crash_func(2,4))
   ###> execute error: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 '(2,4))' at line 1
   ###< select a,crash_func(a,2) from crash_q
   ###> execute error: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 '(a,2) from crash_q' at line 1
   ###< drop function crash_func cascade
2434
   ###> execute error:Failed to DROP FUNCTION crash_func
monty@mysql.com's avatar
monty@mysql.com committed
2435 2436 2437 2438 2439 2440 2441 2442 2443 2444
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as some queries didnt return OK, result is NO
psm_modules=no				# PSM modules (ANSI SQL)
   ###< create table crash_q (a int,b int)
   ###> OK
   ###< create module crash_m declare procedure crash_proc(in a1 int, in b1 int) language sql modifies sql data begin declare c1 int; set c1 = a1 + b1; insert into crash_q(a,b) values (a1,c1); end; declare procedure crash_proc2(INOUT a int, in b int) contains sql set a = b + 10; end module
   ###> execute error: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 'module crash_m declare procedure crash_proc(in a1 int, in b1 in
   ###< call crash_proc(1,10)
2445
   ###> execute error:PROCEDURE crash_proc does not exist
monty@mysql.com's avatar
monty@mysql.com committed
2446 2447 2448 2449 2450 2451 2452 2453 2454 2455
   ###< drop module crash_m cascade
   ###> execute error: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 'module crash_m cascade' at line 1
   ###< drop table crash_q cascade 
   ###> OK
   ###
   ###As far as some queries didnt return OK, result is NO
psm_procedures=no			# PSM procedures (ANSI SQL)
   ###< create table crash_q (a int,b int)
   ###> OK
   ###< create procedure crash_proc(in a1 int, in b1 int) language sql modifies sql data begin declare c1 int; set c1 = a1 + b1; insert into crash_q(a,b) values (a1,c1); end
2456
   ###> execute error: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 'sql data begin declare c1 int; set c1 = a1 + b1; insert into cr
monty@mysql.com's avatar
monty@mysql.com committed
2457
   ###< call crash_proc(1,10)
2458
   ###> execute error:PROCEDURE crash_proc does not exist
monty@mysql.com's avatar
monty@mysql.com committed
2459
   ###< drop procedure crash_proc
2460
   ###> execute error:Failed to DROP PROCEDURE crash_proc
monty@mysql.com's avatar
monty@mysql.com committed
2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as some queries didnt return OK, result is NO
psm_trigger=no				# Triggers (ANSI SQL)
   ###< create table crash_q (a int ,b int)
   ###> OK
   ###< create trigger crash_trigger after insert on crash_q referencing new table as new_a when (localtime > time '18:00:00') begin atomic end
   ###> execute error: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 'trigger crash_trigger after insert on crash_q referencing new t
   ###< insert into crash_q values(1,2)
   ###> OK
   ###< drop trigger crash_trigger
   ###> execute error: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 'trigger crash_trigger' at line 1
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as some queries didnt return OK, result is NO
query_size=1048574			# query size
quote_ident_with_"=error		# " as identifier quote (ANSI SQL)
   ###
   ###<select "A" from crash_me
   ###>A
   ###We expected '1' but got 'A' 
quote_ident_with_[=no			# [] as identifier quote
   ###
   ###<select [A] from crash_me
   ###> execute failed: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 '[A] from crash_me' at line 1
quote_ident_with_`=yes			# ` as identifier quote
   ###
   ###<select `A` from crash_me
   ###>1
quote_ident_with_dbl_"=no		# Double "" in identifiers as "
   ###< create table crash_me1 ("abc""d" integer)
   ###> execute error: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 '"abc""d" integer)' at line 1
   ###< drop table crash_me1
   ###> execute error:Unknown table 'crash_me1'
   ###
   ###As far as some queries didnt return OK, result is NO
quote_with_"=yes			# Allows ' and " as string markers
   ###< select a from crash_me where b<"c"
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
2504 2505 2506
recursive_subqueries=+64		# recursive subqueries
   ###We are trying (example with N=5):
   ###select a from crash_me where a in (select a from crash_me where a in (select a from crash_me where a in (select a from c...(82)
monty@mysql.com's avatar
monty@mysql.com committed
2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655
remember_end_space=no			# Remembers end space in char()
   ###< create table crash_q (a char(10))
   ###> OK
   ###< insert into crash_q values('hello ')
   ###> OK
   ###
   ###<select a from crash_q where a = 'hello '
   ###>hello
   ###We expected 'hello ' but got 'hello' 
   ###
   ###< drop table crash_q 
   ###> OK
remember_end_space_varchar=no		# Remembers end space in varchar()
   ###< create table crash_q (a varchar(10))
   ###> OK
   ###< insert into crash_q values('hello ')
   ###> OK
   ###
   ###<select a from crash_q where a = 'hello '
   ###>hello
   ###We expected 'hello ' but got 'hello' 
   ###
   ###< drop table crash_q 
   ###> OK
rename_table=yes			# rename table
   ###< create table crash_q (a integer, b integer,c1 CHAR(10))
   ###> OK
   ###< rename table crash_q to crash_q1
   ###> OK
   ###< drop table crash_q1 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
repeat_string_size=1047552		# return string size from function
   ###We are trying (example with N=5):
   ###select repeat('a',5) 
   ### 4000000:FAIL 800000:OK 2400000:FAIL 1120000:FAIL 864000:OK 992000:OK 1056000:FAIL 1004800:OK 1030400:OK 1043200:OK 1049600:FAIL 1044480:OK 1047040:OK 1048320:FAIL 1047296:OK 1047808:FAIL 1047399:OK 1047603:FAIL 1047440:OK 1047521:OK 1047562:FAIL 1047529:OK 1047545:OK 1047553:FAIL 1047547:OK 1047550:OK 1047551:OK 1047552:OK
reserved_word_ansi-92/99_absolute=no	# Keyword ABSOLUTE
   ###< create table crash_me10 (ABSOLUTE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_action=no	# Keyword ACTION
   ###< create table crash_me10 (ACTION int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_add=yes	# Keyword ADD
   ###< create table crash_me10 (ADD int not null)
   ###> execute error: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 'ADD int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_after=no	# Keyword AFTER
   ###< create table crash_me10 (AFTER int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_alias=no	# Keyword ALIAS
   ###< create table crash_me10 (ALIAS int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_all=yes	# Keyword ALL
   ###< create table crash_me10 (ALL int not null)
   ###> execute error: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 'ALL int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_allocate=no	# Keyword ALLOCATE
   ###< create table crash_me10 (ALLOCATE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_alter=yes	# Keyword ALTER
   ###< create table crash_me10 (ALTER int not null)
   ###> execute error: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 'ALTER int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_and=yes	# Keyword AND
   ###< create table crash_me10 (AND int not null)
   ###> execute error: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 'AND int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_any=no		# Keyword ANY
   ###< create table crash_me10 (ANY int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_are=no		# Keyword ARE
   ###< create table crash_me10 (ARE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_as=yes		# Keyword AS
   ###< create table crash_me10 (AS int not null)
   ###> execute error: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 'AS int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_asc=yes	# Keyword ASC
   ###< create table crash_me10 (ASC int not null)
   ###> execute error: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 'ASC int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_assertion=no	# Keyword ASSERTION
   ###< create table crash_me10 (ASSERTION int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_at=no		# Keyword AT
   ###< create table crash_me10 (AT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_authorization=no	# Keyword AUTHORIZATION
   ###< create table crash_me10 (AUTHORIZATION int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
2656
reserved_word_ansi-92/99_before=yes	# Keyword BEFORE
monty@mysql.com's avatar
monty@mysql.com committed
2657
   ###< create table crash_me10 (BEFORE int not null)
2658
   ###> execute error: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 'BEFORE int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
2659
   ###< drop table crash_me10 
2660
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
2661
   ###
2662
   ###As far as some queries didnt return OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704
reserved_word_ansi-92/99_begin=no	# Keyword BEGIN
   ###< create table crash_me10 (BEGIN int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_bit=no		# Keyword BIT
   ###< create table crash_me10 (BIT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_boolean=no	# Keyword BOOLEAN
   ###< create table crash_me10 (BOOLEAN int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_both=yes	# Keyword BOTH
   ###< create table crash_me10 (BOTH int not null)
   ###> execute error: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 'BOTH int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_breadth=no	# Keyword BREADTH
   ###< create table crash_me10 (BREADTH int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_by=yes		# Keyword BY
   ###< create table crash_me10 (BY int not null)
   ###> execute error: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 'BY int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
2705
reserved_word_ansi-92/99_call=yes	# Keyword CALL
monty@mysql.com's avatar
monty@mysql.com committed
2706
   ###< create table crash_me10 (CALL int not null)
2707
   ###> execute error: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 'CALL int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
2708
   ###< drop table crash_me10 
2709
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
2710
   ###
2711
   ###As far as some queries didnt return OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774
reserved_word_ansi-92/99_cascade=yes	# Keyword CASCADE
   ###< create table crash_me10 (CASCADE int not null)
   ###> execute error: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 'CASCADE int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_cascaded=no	# Keyword CASCADED
   ###< create table crash_me10 (CASCADED int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_case=yes	# Keyword CASE
   ###< create table crash_me10 (CASE int not null)
   ###> execute error: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 'CASE int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_cast=no	# Keyword CAST
   ###< create table crash_me10 (CAST int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_catalog=no	# Keyword CATALOG
   ###< create table crash_me10 (CATALOG int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_char=yes	# Keyword CHAR
   ###< create table crash_me10 (CHAR int not null)
   ###> execute error: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 'CHAR int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_character=yes	# Keyword CHARACTER
   ###< create table crash_me10 (CHARACTER int not null)
   ###> execute error: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 'CHARACTER int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_check=yes	# Keyword CHECK
   ###< create table crash_me10 (CHECK int not null)
   ###> execute error: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 'int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_close=no	# Keyword CLOSE
   ###< create table crash_me10 (CLOSE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
2775
reserved_word_ansi-92/99_collate=yes	# Keyword COLLATE
monty@mysql.com's avatar
monty@mysql.com committed
2776
   ###< create table crash_me10 (COLLATE int not null)
2777
   ###> execute error: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 'COLLATE int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
2778
   ###< drop table crash_me10 
2779
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
2780
   ###
2781
   ###As far as some queries didnt return OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816
reserved_word_ansi-92/99_collation=no	# Keyword COLLATION
   ###< create table crash_me10 (COLLATION int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_column=yes	# Keyword COLUMN
   ###< create table crash_me10 (COLUMN int not null)
   ###> execute error: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 'COLUMN int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_commit=no	# Keyword COMMIT
   ###< create table crash_me10 (COMMIT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_completion=no	# Keyword COMPLETION
   ###< create table crash_me10 (COMPLETION int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_connect=no	# Keyword CONNECT
   ###< create table crash_me10 (CONNECT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
2817
reserved_word_ansi-92/99_connection=yes	# Keyword CONNECTION
monty@mysql.com's avatar
monty@mysql.com committed
2818
   ###< create table crash_me10 (CONNECTION int not null)
2819
   ###> execute error: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 'CONNECTION int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
2820
   ###< drop table crash_me10 
2821
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
2822
   ###
2823
   ###As far as some queries didnt return OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837
reserved_word_ansi-92/99_constraint=yes	# Keyword CONSTRAINT
   ###< create table crash_me10 (CONSTRAINT int not null)
   ###> execute error: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 'int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_constraints=no	# Keyword CONSTRAINTS
   ###< create table crash_me10 (CONSTRAINTS int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
2838
reserved_word_ansi-92/99_continue=yes	# Keyword CONTINUE
monty@mysql.com's avatar
monty@mysql.com committed
2839
   ###< create table crash_me10 (CONTINUE int not null)
2840
   ###> execute error: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 'CONTINUE int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
2841
   ###< drop table crash_me10 
2842
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
2843
   ###
2844
   ###As far as some queries didnt return OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900
reserved_word_ansi-92/99_corresponding=no	# Keyword CORRESPONDING
   ###< create table crash_me10 (CORRESPONDING int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_create=yes	# Keyword CREATE
   ###< create table crash_me10 (CREATE int not null)
   ###> execute error: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 'CREATE int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_cross=yes	# Keyword CROSS
   ###< create table crash_me10 (CROSS int not null)
   ###> execute error: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 'CROSS int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_current=no	# Keyword CURRENT
   ###< create table crash_me10 (CURRENT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_current_date=yes	# Keyword CURRENT_DATE
   ###< create table crash_me10 (CURRENT_DATE int not null)
   ###> execute error: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 'CURRENT_DATE int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_current_time=yes	# Keyword CURRENT_TIME
   ###< create table crash_me10 (CURRENT_TIME int not null)
   ###> execute error: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 'CURRENT_TIME int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_current_timestamp=yes	# Keyword CURRENT_TIMESTAMP
   ###< create table crash_me10 (CURRENT_TIMESTAMP int not null)
   ###> execute error: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 'CURRENT_TIMESTAMP int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_current_user=no	# Keyword CURRENT_USER
   ###< create table crash_me10 (CURRENT_USER int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
2901
reserved_word_ansi-92/99_cursor=yes	# Keyword CURSOR
monty@mysql.com's avatar
monty@mysql.com committed
2902
   ###< create table crash_me10 (CURSOR int not null)
2903
   ###> execute error: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 'CURSOR int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
2904
   ###< drop table crash_me10 
2905
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
2906
   ###
2907
   ###As far as some queries didnt return OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956
reserved_word_ansi-92/99_cycle=no	# Keyword CYCLE
   ###< create table crash_me10 (CYCLE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_data=no	# Keyword DATA
   ###< create table crash_me10 (DATA int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_date=no	# Keyword DATE
   ###< create table crash_me10 (DATE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_day=no		# Keyword DAY
   ###< create table crash_me10 (DAY int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_deallocate=no	# Keyword DEALLOCATE
   ###< create table crash_me10 (DEALLOCATE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_dec=yes	# Keyword DEC
   ###< create table crash_me10 (DEC int not null)
   ###> execute error: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 'DEC int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_decimal=yes	# Keyword DECIMAL
   ###< create table crash_me10 (DECIMAL int not null)
   ###> execute error: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 'DECIMAL int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
2957
reserved_word_ansi-92/99_declare=yes	# Keyword DECLARE
monty@mysql.com's avatar
monty@mysql.com committed
2958
   ###< create table crash_me10 (DECLARE int not null)
2959
   ###> execute error: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 'DECLARE int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
2960
   ###< drop table crash_me10 
2961
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
2962
   ###
2963
   ###As far as some queries didnt return OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082
reserved_word_ansi-92/99_default=yes	# Keyword DEFAULT
   ###< create table crash_me10 (DEFAULT int not null)
   ###> execute error: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 'DEFAULT int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_deferrable=no	# Keyword DEFERRABLE
   ###< create table crash_me10 (DEFERRABLE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_deferred=no	# Keyword DEFERRED
   ###< create table crash_me10 (DEFERRED int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_delete=yes	# Keyword DELETE
   ###< create table crash_me10 (DELETE int not null)
   ###> execute error: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 'DELETE int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_depth=no	# Keyword DEPTH
   ###< create table crash_me10 (DEPTH int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_desc=yes	# Keyword DESC
   ###< create table crash_me10 (DESC int not null)
   ###> execute error: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 'DESC int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_describe=yes	# Keyword DESCRIBE
   ###< create table crash_me10 (DESCRIBE int not null)
   ###> execute error: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 'DESCRIBE int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_descriptor=no	# Keyword DESCRIPTOR
   ###< create table crash_me10 (DESCRIPTOR int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_diagnostics=no	# Keyword DIAGNOSTICS
   ###< create table crash_me10 (DIAGNOSTICS int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_dictionary=no	# Keyword DICTIONARY
   ###< create table crash_me10 (DICTIONARY int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_disconnect=no	# Keyword DISCONNECT
   ###< create table crash_me10 (DISCONNECT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_distinct=yes	# Keyword DISTINCT
   ###< create table crash_me10 (DISTINCT int not null)
   ###> execute error: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 'DISTINCT int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_domain=no	# Keyword DOMAIN
   ###< create table crash_me10 (DOMAIN int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_double=yes	# Keyword DOUBLE
   ###< create table crash_me10 (DOUBLE int not null)
   ###> execute error: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 'DOUBLE int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_drop=yes	# Keyword DROP
   ###< create table crash_me10 (DROP int not null)
   ###> execute error: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 'DROP int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_each=no	# Keyword EACH
   ###< create table crash_me10 (EACH int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_else=yes	# Keyword ELSE
   ###< create table crash_me10 (ELSE int not null)
   ###> execute error: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 'ELSE int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
3083
reserved_word_ansi-92/99_elseif=yes	# Keyword ELSEIF
monty@mysql.com's avatar
monty@mysql.com committed
3084
   ###< create table crash_me10 (ELSEIF int not null)
3085
   ###> execute error: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 'ELSEIF int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
3086
   ###< drop table crash_me10 
3087
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
3088
   ###
3089
   ###As far as some queries didnt return OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152
reserved_word_ansi-92/99_end=no		# Keyword END
   ###< create table crash_me10 (END int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_end-exec=yes	# Keyword END-EXEC
   ###< create table crash_me10 (END-EXEC int not null)
   ###> execute error: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 '-EXEC int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_equals=no	# Keyword EQUALS
   ###< create table crash_me10 (EQUALS int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_escape=no	# Keyword ESCAPE
   ###< create table crash_me10 (ESCAPE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_except=no	# Keyword EXCEPT
   ###< create table crash_me10 (EXCEPT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_exception=no	# Keyword EXCEPTION
   ###< create table crash_me10 (EXCEPTION int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_exec=no	# Keyword EXEC
   ###< create table crash_me10 (EXEC int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_execute=no	# Keyword EXECUTE
   ###< create table crash_me10 (EXECUTE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_external=no	# Keyword EXTERNAL
   ###< create table crash_me10 (EXTERNAL int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
3153
reserved_word_ansi-92/99_false=yes	# Keyword FALSE
monty@mysql.com's avatar
monty@mysql.com committed
3154
   ###< create table crash_me10 (FALSE int not null)
3155
   ###> execute error: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 'FALSE int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
3156
   ###< drop table crash_me10 
3157
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
3158
   ###
3159 3160
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_fetch=yes	# Keyword FETCH
monty@mysql.com's avatar
monty@mysql.com committed
3161
   ###< create table crash_me10 (FETCH int not null)
3162
   ###> execute error: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 'FETCH int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
3163
   ###< drop table crash_me10 
3164
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
3165
   ###
3166
   ###As far as some queries didnt return OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194
reserved_word_ansi-92/99_first=no	# Keyword FIRST
   ###< create table crash_me10 (FIRST int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_float=yes	# Keyword FLOAT
   ###< create table crash_me10 (FLOAT int not null)
   ###> execute error: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 'FLOAT int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_for=yes	# Keyword FOR
   ###< create table crash_me10 (FOR int not null)
   ###> execute error: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 'FOR int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_foreign=yes	# Keyword FOREIGN
   ###< create table crash_me10 (FOREIGN int not null)
   ###> execute error: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 'int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
3195
reserved_word_ansi-92/99_found=yes	# Keyword FOUND
monty@mysql.com's avatar
monty@mysql.com committed
3196
   ###< create table crash_me10 (FOUND int not null)
3197
   ###> execute error: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 'FOUND int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
3198
   ###< drop table crash_me10 
3199
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
3200
   ###
3201
   ###As far as some queries didnt return OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432
reserved_word_ansi-92/99_from=yes	# Keyword FROM
   ###< create table crash_me10 (FROM int not null)
   ###> execute error: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 'FROM int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_full=no	# Keyword FULL
   ###< create table crash_me10 (FULL int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_general=no	# Keyword GENERAL
   ###< create table crash_me10 (GENERAL int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_get=no		# Keyword GET
   ###< create table crash_me10 (GET int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_global=no	# Keyword GLOBAL
   ###< create table crash_me10 (GLOBAL int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_go=no		# Keyword GO
   ###< create table crash_me10 (GO int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_goto=no	# Keyword GOTO
   ###< create table crash_me10 (GOTO int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_grant=yes	# Keyword GRANT
   ###< create table crash_me10 (GRANT int not null)
   ###> execute error: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 'GRANT int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_group=yes	# Keyword GROUP
   ###< create table crash_me10 (GROUP int not null)
   ###> execute error: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 'GROUP int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_having=yes	# Keyword HAVING
   ###< create table crash_me10 (HAVING int not null)
   ###> execute error: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 'HAVING int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_hour=no	# Keyword HOUR
   ###< create table crash_me10 (HOUR int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_identity=no	# Keyword IDENTITY
   ###< create table crash_me10 (IDENTITY int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_if=yes		# Keyword IF
   ###< create table crash_me10 (IF int not null)
   ###> execute error: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 'IF int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_ignore=yes	# Keyword IGNORE
   ###< create table crash_me10 (IGNORE int not null)
   ###> execute error: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 'IGNORE int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_immediate=no	# Keyword IMMEDIATE
   ###< create table crash_me10 (IMMEDIATE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_in=yes		# Keyword IN
   ###< create table crash_me10 (IN int not null)
   ###> execute error: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 'IN int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_indicator=no	# Keyword INDICATOR
   ###< create table crash_me10 (INDICATOR int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_initially=no	# Keyword INITIALLY
   ###< create table crash_me10 (INITIALLY int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_inner=yes	# Keyword INNER
   ###< create table crash_me10 (INNER int not null)
   ###> execute error: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 'INNER int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_input=no	# Keyword INPUT
   ###< create table crash_me10 (INPUT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_insert=yes	# Keyword INSERT
   ###< create table crash_me10 (INSERT int not null)
   ###> execute error: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 'INSERT int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_int=yes	# Keyword INT
   ###< create table crash_me10 (INT int not null)
   ###> execute error: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 'INT int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_integer=yes	# Keyword INTEGER
   ###< create table crash_me10 (INTEGER int not null)
   ###> execute error: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 'INTEGER int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_intersect=no	# Keyword INTERSECT
   ###< create table crash_me10 (INTERSECT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_interval=yes	# Keyword INTERVAL
   ###< create table crash_me10 (INTERVAL int not null)
   ###> execute error: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 'INTERVAL int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_into=yes	# Keyword INTO
   ###< create table crash_me10 (INTO int not null)
   ###> execute error: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 'INTO int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_is=yes		# Keyword IS
   ###< create table crash_me10 (IS int not null)
   ###> execute error: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 'IS int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_isolation=no	# Keyword ISOLATION
   ###< create table crash_me10 (ISOLATION int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_join=yes	# Keyword JOIN
   ###< create table crash_me10 (JOIN int not null)
   ###> execute error: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 'JOIN int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_key=yes	# Keyword KEY
   ###< create table crash_me10 (KEY int not null)
   ###> execute error: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 'int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_language=no	# Keyword LANGUAGE
   ###< create table crash_me10 (LANGUAGE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_last=no	# Keyword LAST
   ###< create table crash_me10 (LAST int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_leading=yes	# Keyword LEADING
   ###< create table crash_me10 (LEADING int not null)
   ###> execute error: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 'LEADING int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
3433
reserved_word_ansi-92/99_leave=yes	# Keyword LEAVE
monty@mysql.com's avatar
monty@mysql.com committed
3434
   ###< create table crash_me10 (LEAVE int not null)
3435
   ###> execute error: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 'LEAVE int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
3436
   ###< drop table crash_me10 
3437
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
3438
   ###
3439
   ###As far as some queries didnt return OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462
reserved_word_ansi-92/99_left=yes	# Keyword LEFT
   ###< create table crash_me10 (LEFT int not null)
   ###> execute error: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 'LEFT int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_less=no	# Keyword LESS
   ###< create table crash_me10 (LESS int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_level=no	# Keyword LEVEL
   ###< create table crash_me10 (LEVEL int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_like=yes	# Keyword LIKE
   ###< create table crash_me10 (LIKE int not null)
3463
   ###> execute error: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 'int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_limit=yes	# Keyword LIMIT
   ###< create table crash_me10 (LIMIT int not null)
   ###> execute error: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 'LIMIT int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_local=no	# Keyword LOCAL
   ###< create table crash_me10 (LOCAL int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
3482
reserved_word_ansi-92/99_loop=yes	# Keyword LOOP
monty@mysql.com's avatar
monty@mysql.com committed
3483
   ###< create table crash_me10 (LOOP int not null)
3484
   ###> execute error: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 'LOOP int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
3485
   ###< drop table crash_me10 
3486
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
3487
   ###
3488
   ###As far as some queries didnt return OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705
reserved_word_ansi-92/99_match=yes	# Keyword MATCH
   ###< create table crash_me10 (MATCH int not null)
   ###> execute error: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 'MATCH int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_minute=no	# Keyword MINUTE
   ###< create table crash_me10 (MINUTE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_modify=no	# Keyword MODIFY
   ###< create table crash_me10 (MODIFY int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_module=no	# Keyword MODULE
   ###< create table crash_me10 (MODULE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_month=no	# Keyword MONTH
   ###< create table crash_me10 (MONTH int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_names=no	# Keyword NAMES
   ###< create table crash_me10 (NAMES int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_national=no	# Keyword NATIONAL
   ###< create table crash_me10 (NATIONAL int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_natural=yes	# Keyword NATURAL
   ###< create table crash_me10 (NATURAL int not null)
   ###> execute error: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 'NATURAL int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_nchar=no	# Keyword NCHAR
   ###< create table crash_me10 (NCHAR int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_new=no		# Keyword NEW
   ###< create table crash_me10 (NEW int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_next=no	# Keyword NEXT
   ###< create table crash_me10 (NEXT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_no=no		# Keyword NO
   ###< create table crash_me10 (NO int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_none=no	# Keyword NONE
   ###< create table crash_me10 (NONE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_not=yes	# Keyword NOT
   ###< create table crash_me10 (NOT int not null)
   ###> execute error: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 'NOT int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_null=yes	# Keyword NULL
   ###< create table crash_me10 (NULL int not null)
   ###> execute error: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 'NULL int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_numeric=yes	# Keyword NUMERIC
   ###< create table crash_me10 (NUMERIC int not null)
   ###> execute error: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 'NUMERIC int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_object=no	# Keyword OBJECT
   ###< create table crash_me10 (OBJECT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_of=no		# Keyword OF
   ###< create table crash_me10 (OF int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_off=no		# Keyword OFF
   ###< create table crash_me10 (OFF int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_old=no		# Keyword OLD
   ###< create table crash_me10 (OLD int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_on=yes		# Keyword ON
   ###< create table crash_me10 (ON int not null)
   ###> execute error: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 'ON int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_only=no	# Keyword ONLY
   ###< create table crash_me10 (ONLY int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_open=no	# Keyword OPEN
   ###< create table crash_me10 (OPEN int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_operation=no	# Keyword OPERATION
   ###< create table crash_me10 (OPERATION int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_option=yes	# Keyword OPTION
   ###< create table crash_me10 (OPTION int not null)
   ###> execute error: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 'OPTION int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_or=yes		# Keyword OR
   ###< create table crash_me10 (OR int not null)
   ###> execute error: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 'OR int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_order=yes	# Keyword ORDER
   ###< create table crash_me10 (ORDER int not null)
   ###> execute error: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 'ORDER int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_outer=yes	# Keyword OUTER
   ###< create table crash_me10 (OUTER int not null)
   ###> execute error: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 'OUTER int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_output=no	# Keyword OUTPUT
   ###< create table crash_me10 (OUTPUT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_pad=no		# Keyword PAD
   ###< create table crash_me10 (PAD int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_parameters=no	# Keyword PARAMETERS
   ###< create table crash_me10 (PARAMETERS int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
3706
reserved_word_ansi-92/99_partial=no	# Keyword PARTIAL
monty@mysql.com's avatar
monty@mysql.com committed
3707
   ###< create table crash_me10 (PARTIAL int not null)
3708
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
3709
   ###< drop table crash_me10 
3710
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
3711
   ###
3712
   ###As far as all queries returned OK, result is NO
monty@mysql.com's avatar
monty@mysql.com committed
3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838
reserved_word_ansi-92/99_precision=yes	# Keyword PRECISION
   ###< create table crash_me10 (PRECISION int not null)
   ###> execute error: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 'PRECISION int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_preorder=no	# Keyword PREORDER
   ###< create table crash_me10 (PREORDER int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_prepare=no	# Keyword PREPARE
   ###< create table crash_me10 (PREPARE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_preserve=no	# Keyword PRESERVE
   ###< create table crash_me10 (PRESERVE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_primary=yes	# Keyword PRIMARY
   ###< create table crash_me10 (PRIMARY int not null)
   ###> execute error: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 'int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_prior=no	# Keyword PRIOR
   ###< create table crash_me10 (PRIOR int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_privileges=yes	# Keyword PRIVILEGES
   ###< create table crash_me10 (PRIVILEGES int not null)
   ###> execute error: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 'PRIVILEGES int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_procedure=yes	# Keyword PROCEDURE
   ###< create table crash_me10 (PROCEDURE int not null)
   ###> execute error: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 'PROCEDURE int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_public=no	# Keyword PUBLIC
   ###< create table crash_me10 (PUBLIC int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_read=yes	# Keyword READ
   ###< create table crash_me10 (READ int not null)
   ###> execute error: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 'READ int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_real=yes	# Keyword REAL
   ###< create table crash_me10 (REAL int not null)
   ###> execute error: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 'REAL int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_recursive=no	# Keyword RECURSIVE
   ###< create table crash_me10 (RECURSIVE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_ref=no		# Keyword REF
   ###< create table crash_me10 (REF int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_references=yes	# Keyword REFERENCES
   ###< create table crash_me10 (REFERENCES int not null)
   ###> execute error: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 'REFERENCES int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_referencing=no	# Keyword REFERENCING
   ###< create table crash_me10 (REFERENCING int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_relative=no	# Keyword RELATIVE
   ###< create table crash_me10 (RELATIVE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_resignal=no	# Keyword RESIGNAL
   ###< create table crash_me10 (RESIGNAL int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_restrict=yes	# Keyword RESTRICT
   ###< create table crash_me10 (RESTRICT int not null)
   ###> execute error: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 'RESTRICT int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
3839
reserved_word_ansi-92/99_return=yes	# Keyword RETURN
monty@mysql.com's avatar
monty@mysql.com committed
3840
   ###< create table crash_me10 (RETURN int not null)
3841
   ###> execute error: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 'RETURN int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
3842
   ###< drop table crash_me10 
3843
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
3844
   ###
3845 3846
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_returns=no	# Keyword RETURNS
monty@mysql.com's avatar
monty@mysql.com committed
3847
   ###< create table crash_me10 (RETURNS int not null)
3848
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
3849
   ###< drop table crash_me10 
3850
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
3851
   ###
3852
   ###As far as all queries returned OK, result is NO
monty@mysql.com's avatar
monty@mysql.com committed
3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013
reserved_word_ansi-92/99_revoke=yes	# Keyword REVOKE
   ###< create table crash_me10 (REVOKE int not null)
   ###> execute error: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 'REVOKE int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_right=yes	# Keyword RIGHT
   ###< create table crash_me10 (RIGHT int not null)
   ###> execute error: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 'RIGHT int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_role=no	# Keyword ROLE
   ###< create table crash_me10 (ROLE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_rollback=no	# Keyword ROLLBACK
   ###< create table crash_me10 (ROLLBACK int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_routine=no	# Keyword ROUTINE
   ###< create table crash_me10 (ROUTINE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_row=no		# Keyword ROW
   ###< create table crash_me10 (ROW int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_rows=no	# Keyword ROWS
   ###< create table crash_me10 (ROWS int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_savepoint=no	# Keyword SAVEPOINT
   ###< create table crash_me10 (SAVEPOINT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_schema=no	# Keyword SCHEMA
   ###< create table crash_me10 (SCHEMA int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_scroll=no	# Keyword SCROLL
   ###< create table crash_me10 (SCROLL int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_search=no	# Keyword SEARCH
   ###< create table crash_me10 (SEARCH int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_second=no	# Keyword SECOND
   ###< create table crash_me10 (SECOND int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_section=no	# Keyword SECTION
   ###< create table crash_me10 (SECTION int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_select=yes	# Keyword SELECT
   ###< create table crash_me10 (SELECT int not null)
   ###> execute error: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 'int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_sequence=no	# Keyword SEQUENCE
   ###< create table crash_me10 (SEQUENCE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_session=no	# Keyword SESSION
   ###< create table crash_me10 (SESSION int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_session_user=no	# Keyword SESSION_USER
   ###< create table crash_me10 (SESSION_USER int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_set=yes	# Keyword SET
   ###< create table crash_me10 (SET int not null)
   ###> execute error: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 'SET int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_signal=no	# Keyword SIGNAL
   ###< create table crash_me10 (SIGNAL int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_size=no	# Keyword SIZE
   ###< create table crash_me10 (SIZE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_smallint=yes	# Keyword SMALLINT
   ###< create table crash_me10 (SMALLINT int not null)
   ###> execute error: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 'SMALLINT int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_some=no	# Keyword SOME
   ###< create table crash_me10 (SOME int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_space=no	# Keyword SPACE
   ###< create table crash_me10 (SPACE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
4014
reserved_word_ansi-92/99_sql=yes	# Keyword SQL
monty@mysql.com's avatar
monty@mysql.com committed
4015
   ###< create table crash_me10 (SQL int not null)
4016
   ###> execute error: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 'SQL int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
4017
   ###< drop table crash_me10 
4018
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
4019
   ###
4020 4021
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_sqlexception=yes	# Keyword SQLEXCEPTION
monty@mysql.com's avatar
monty@mysql.com committed
4022
   ###< create table crash_me10 (SQLEXCEPTION int not null)
4023
   ###> execute error: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 'SQLEXCEPTION int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
4024
   ###< drop table crash_me10 
4025
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
4026
   ###
4027 4028
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_sqlstate=yes	# Keyword SQLSTATE
monty@mysql.com's avatar
monty@mysql.com committed
4029
   ###< create table crash_me10 (SQLSTATE int not null)
4030
   ###> execute error: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 'SQLSTATE int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
4031
   ###< drop table crash_me10 
4032
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
4033
   ###
4034 4035
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_sqlwarning=yes	# Keyword SQLWARNING
monty@mysql.com's avatar
monty@mysql.com committed
4036
   ###< create table crash_me10 (SQLWARNING int not null)
4037
   ###> execute error: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 'SQLWARNING int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
4038
   ###< drop table crash_me10 
4039
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
4040
   ###
4041
   ###As far as some queries didnt return OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139
reserved_word_ansi-92/99_structure=no	# Keyword STRUCTURE
   ###< create table crash_me10 (STRUCTURE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_system_user=no	# Keyword SYSTEM_USER
   ###< create table crash_me10 (SYSTEM_USER int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_table=yes	# Keyword TABLE
   ###< create table crash_me10 (TABLE int not null)
   ###> execute error: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 'TABLE int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_temporary=no	# Keyword TEMPORARY
   ###< create table crash_me10 (TEMPORARY int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_then=yes	# Keyword THEN
   ###< create table crash_me10 (THEN int not null)
   ###> execute error: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 'THEN int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_time=no	# Keyword TIME
   ###< create table crash_me10 (TIME int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_timestamp=no	# Keyword TIMESTAMP
   ###< create table crash_me10 (TIMESTAMP int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_timezone_hour=no	# Keyword TIMEZONE_HOUR
   ###< create table crash_me10 (TIMEZONE_HOUR int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_timezone_minute=no	# Keyword TIMEZONE_MINUTE
   ###< create table crash_me10 (TIMEZONE_MINUTE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_to=yes		# Keyword TO
   ###< create table crash_me10 (TO int not null)
   ###> execute error: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 'TO int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_trailing=yes	# Keyword TRAILING
   ###< create table crash_me10 (TRAILING int not null)
   ###> execute error: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 'TRAILING int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_transaction=no	# Keyword TRANSACTION
   ###< create table crash_me10 (TRANSACTION int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_translation=no	# Keyword TRANSLATION
   ###< create table crash_me10 (TRANSLATION int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_trigger=no	# Keyword TRIGGER
   ###< create table crash_me10 (TRIGGER int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
4140
reserved_word_ansi-92/99_true=yes	# Keyword TRUE
monty@mysql.com's avatar
monty@mysql.com committed
4141
   ###< create table crash_me10 (TRUE int not null)
4142
   ###> execute error: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 'TRUE int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
4143
   ###< drop table crash_me10 
4144
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
4145
   ###
4146
   ###As far as some queries didnt return OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265
reserved_word_ansi-92/99_under=no	# Keyword UNDER
   ###< create table crash_me10 (UNDER int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_union=yes	# Keyword UNION
   ###< create table crash_me10 (UNION int not null)
   ###> execute error: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 'UNION int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_unique=yes	# Keyword UNIQUE
   ###< create table crash_me10 (UNIQUE int not null)
   ###> execute error: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 'int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_unknown=no	# Keyword UNKNOWN
   ###< create table crash_me10 (UNKNOWN int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_update=yes	# Keyword UPDATE
   ###< create table crash_me10 (UPDATE int not null)
   ###> execute error: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 'UPDATE int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_usage=yes	# Keyword USAGE
   ###< create table crash_me10 (USAGE int not null)
   ###> execute error: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 'USAGE int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_user=no	# Keyword USER
   ###< create table crash_me10 (USER int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_using=yes	# Keyword USING
   ###< create table crash_me10 (USING int not null)
   ###> execute error: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 'USING int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_value=no	# Keyword VALUE
   ###< create table crash_me10 (VALUE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_values=yes	# Keyword VALUES
   ###< create table crash_me10 (VALUES int not null)
   ###> execute error: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 'VALUES int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_varchar=yes	# Keyword VARCHAR
   ###< create table crash_me10 (VARCHAR int not null)
   ###> execute error: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 'VARCHAR int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_variable=no	# Keyword VARIABLE
   ###< create table crash_me10 (VARIABLE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_varying=yes	# Keyword VARYING
   ###< create table crash_me10 (VARYING int not null)
   ###> execute error: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 'VARYING int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_view=no	# Keyword VIEW
   ###< create table crash_me10 (VIEW int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_when=yes	# Keyword WHEN
   ###< create table crash_me10 (WHEN int not null)
   ###> execute error: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 'WHEN int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_whenever=no	# Keyword WHENEVER
   ###< create table crash_me10 (WHENEVER int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_where=yes	# Keyword WHERE
   ###< create table crash_me10 (WHERE int not null)
   ###> execute error: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 'WHERE int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
4266
reserved_word_ansi-92/99_while=yes	# Keyword WHILE
monty@mysql.com's avatar
monty@mysql.com committed
4267
   ###< create table crash_me10 (WHILE int not null)
4268
   ###> execute error: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 'WHILE int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
4269
   ###< drop table crash_me10 
4270
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
4271
   ###
4272
   ###As far as some queries didnt return OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391
reserved_word_ansi-92/99_with=yes	# Keyword WITH
   ###< create table crash_me10 (WITH int not null)
   ###> execute error: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 'WITH int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_without=no	# Keyword WITHOUT
   ###< create table crash_me10 (WITHOUT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_work=no	# Keyword WORK
   ###< create table crash_me10 (WORK int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_write=yes	# Keyword WRITE
   ###< create table crash_me10 (WRITE int not null)
   ###> execute error: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 'WRITE int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_year=no	# Keyword YEAR
   ###< create table crash_me10 (YEAR int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_zone=no	# Keyword ZONE
   ###< create table crash_me10 (ZONE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_async=no		# Keyword ASYNC
   ###< create table crash_me10 (ASYNC int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_avg=no		# Keyword AVG
   ###< create table crash_me10 (AVG int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_between=yes	# Keyword BETWEEN
   ###< create table crash_me10 (BETWEEN int not null)
   ###> execute error: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 'BETWEEN int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi92_bit_length=no	# Keyword BIT_LENGTH
   ###< create table crash_me10 (BIT_LENGTH int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_char_length=no	# Keyword CHAR_LENGTH
   ###< create table crash_me10 (CHAR_LENGTH int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_character_length=no	# Keyword CHARACTER_LENGTH
   ###< create table crash_me10 (CHARACTER_LENGTH int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_coalesce=no	# Keyword COALESCE
   ###< create table crash_me10 (COALESCE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_convert=no		# Keyword CONVERT
   ###< create table crash_me10 (CONVERT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_count=no		# Keyword COUNT
   ###< create table crash_me10 (COUNT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_exists=yes		# Keyword EXISTS
   ###< create table crash_me10 (EXISTS int not null)
   ###> execute error: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 'EXISTS int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi92_extract=no		# Keyword EXTRACT
   ###< create table crash_me10 (EXTRACT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
4392
reserved_word_ansi92_insensitive=yes	# Keyword INSENSITIVE
monty@mysql.com's avatar
monty@mysql.com committed
4393
   ###< create table crash_me10 (INSENSITIVE int not null)
4394
   ###> execute error: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 'INSENSITIVE int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
4395
   ###< drop table crash_me10 
4396
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
4397
   ###
4398
   ###As far as some queries didnt return OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496
reserved_word_ansi92_lower=no		# Keyword LOWER
   ###< create table crash_me10 (LOWER int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_max=no		# Keyword MAX
   ###< create table crash_me10 (MAX int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_min=no		# Keyword MIN
   ###< create table crash_me10 (MIN int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_nullif=no		# Keyword NULLIF
   ###< create table crash_me10 (NULLIF int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_octet_length=no	# Keyword OCTET_LENGTH
   ###< create table crash_me10 (OCTET_LENGTH int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_oid=no		# Keyword OID
   ###< create table crash_me10 (OID int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_operators=no	# Keyword OPERATORS
   ###< create table crash_me10 (OPERATORS int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_others=no		# Keyword OTHERS
   ###< create table crash_me10 (OTHERS int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_overlaps=no	# Keyword OVERLAPS
   ###< create table crash_me10 (OVERLAPS int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_pendant=no		# Keyword PENDANT
   ###< create table crash_me10 (PENDANT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_position=no	# Keyword POSITION
   ###< create table crash_me10 (POSITION int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_private=no		# Keyword PRIVATE
   ###< create table crash_me10 (PRIVATE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_protected=no	# Keyword PROTECTED
   ###< create table crash_me10 (PROTECTED int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_replace=yes	# Keyword REPLACE
   ###< create table crash_me10 (REPLACE int not null)
   ###> execute error: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 'REPLACE int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
4497
reserved_word_ansi92_sensitive=yes	# Keyword SENSITIVE
monty@mysql.com's avatar
monty@mysql.com committed
4498
   ###< create table crash_me10 (SENSITIVE int not null)
4499
   ###> execute error: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 'SENSITIVE int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
4500
   ###< drop table crash_me10 
4501
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
4502
   ###
4503
   ###As far as some queries didnt return OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650
reserved_word_ansi92_similar=no		# Keyword SIMILAR
   ###< create table crash_me10 (SIMILAR int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_sqlcode=no		# Keyword SQLCODE
   ###< create table crash_me10 (SQLCODE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_sqlerror=no	# Keyword SQLERROR
   ###< create table crash_me10 (SQLERROR int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_substring=no	# Keyword SUBSTRING
   ###< create table crash_me10 (SUBSTRING int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_sum=no		# Keyword SUM
   ###< create table crash_me10 (SUM int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_test=no		# Keyword TEST
   ###< create table crash_me10 (TEST int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_there=no		# Keyword THERE
   ###< create table crash_me10 (THERE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_translate=no	# Keyword TRANSLATE
   ###< create table crash_me10 (TRANSLATE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_trim=no		# Keyword TRIM
   ###< create table crash_me10 (TRIM int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_type=no		# Keyword TYPE
   ###< create table crash_me10 (TYPE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_upper=no		# Keyword UPPER
   ###< create table crash_me10 (UPPER int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_virtual=no		# Keyword VIRTUAL
   ###< create table crash_me10 (VIRTUAL int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_visible=no		# Keyword VISIBLE
   ###< create table crash_me10 (VISIBLE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi92_wait=no		# Keyword WAIT
   ###< create table crash_me10 (WAIT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_admin=no		# Keyword ADMIN
   ###< create table crash_me10 (ADMIN int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_aggregate=no	# Keyword AGGREGATE
   ###< create table crash_me10 (AGGREGATE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_array=no		# Keyword ARRAY
   ###< create table crash_me10 (ARRAY int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_binary=yes		# Keyword BINARY
   ###< create table crash_me10 (BINARY int not null)
   ###> execute error: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 'BINARY int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi99_blob=yes		# Keyword BLOB
   ###< create table crash_me10 (BLOB int not null)
   ###> execute error: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 'BLOB int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi99_class=no		# Keyword CLASS
   ###< create table crash_me10 (CLASS int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_clob=no		# Keyword CLOB
   ###< create table crash_me10 (CLOB int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
4651
reserved_word_ansi99_condition=yes	# Keyword CONDITION
monty@mysql.com's avatar
monty@mysql.com committed
4652
   ###< create table crash_me10 (CONDITION int not null)
4653
   ###> execute error: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 'CONDITION int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
4654
   ###< drop table crash_me10 
4655
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
4656
   ###
4657
   ###As far as some queries didnt return OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720
reserved_word_ansi99_constructor=no	# Keyword CONSTRUCTOR
   ###< create table crash_me10 (CONSTRUCTOR int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_contains=no	# Keyword CONTAINS
   ###< create table crash_me10 (CONTAINS int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_cube=no		# Keyword CUBE
   ###< create table crash_me10 (CUBE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_current_path=no	# Keyword CURRENT_PATH
   ###< create table crash_me10 (CURRENT_PATH int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_current_role=no	# Keyword CURRENT_ROLE
   ###< create table crash_me10 (CURRENT_ROLE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_datalink=no	# Keyword DATALINK
   ###< create table crash_me10 (DATALINK int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_deref=no		# Keyword DEREF
   ###< create table crash_me10 (DEREF int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_destroy=no		# Keyword DESTROY
   ###< create table crash_me10 (DESTROY int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_destructor=no	# Keyword DESTRUCTOR
   ###< create table crash_me10 (DESTRUCTOR int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
4721
reserved_word_ansi99_deterministic=yes	# Keyword DETERMINISTIC
monty@mysql.com's avatar
monty@mysql.com committed
4722
   ###< create table crash_me10 (DETERMINISTIC int not null)
4723
   ###> execute error: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 'DETERMINISTIC int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
4724
   ###< drop table crash_me10 
4725
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
4726
   ###
4727
   ###As far as some queries didnt return OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748
reserved_word_ansi99_do=no		# Keyword DO
   ###< create table crash_me10 (DO int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_dynamic=no		# Keyword DYNAMIC
   ###< create table crash_me10 (DYNAMIC int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_every=no		# Keyword EVERY
   ###< create table crash_me10 (EVERY int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
4749
reserved_word_ansi99_exit=yes		# Keyword EXIT
monty@mysql.com's avatar
monty@mysql.com committed
4750
   ###< create table crash_me10 (EXIT int not null)
4751
   ###> execute error: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 'EXIT int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
4752
   ###< drop table crash_me10 
4753
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
4754
   ###
4755
   ###As far as some queries didnt return OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818
reserved_word_ansi99_expand=no		# Keyword EXPAND
   ###< create table crash_me10 (EXPAND int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_expanding=no	# Keyword EXPANDING
   ###< create table crash_me10 (EXPANDING int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_free=no		# Keyword FREE
   ###< create table crash_me10 (FREE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_function=no	# Keyword FUNCTION
   ###< create table crash_me10 (FUNCTION int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_grouping=no	# Keyword GROUPING
   ###< create table crash_me10 (GROUPING int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_handler=no		# Keyword HANDLER
   ###< create table crash_me10 (HANDLER int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_hast=no		# Keyword HAST
   ###< create table crash_me10 (HAST int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_host=no		# Keyword HOST
   ###< create table crash_me10 (HOST int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_initialize=no	# Keyword INITIALIZE
   ###< create table crash_me10 (INITIALIZE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
4819
reserved_word_ansi99_inout=yes		# Keyword INOUT
monty@mysql.com's avatar
monty@mysql.com committed
4820
   ###< create table crash_me10 (INOUT int not null)
4821
   ###> execute error: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 'INOUT int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
4822
   ###< drop table crash_me10 
4823
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
4824
   ###
4825 4826
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi99_iterate=yes	# Keyword ITERATE
monty@mysql.com's avatar
monty@mysql.com committed
4827
   ###< create table crash_me10 (ITERATE int not null)
4828
   ###> execute error: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 'ITERATE int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
4829
   ###< drop table crash_me10 
4830
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
4831
   ###
4832
   ###As far as some queries didnt return OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902
reserved_word_ansi99_large=no		# Keyword LARGE
   ###< create table crash_me10 (LARGE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_lateral=no		# Keyword LATERAL
   ###< create table crash_me10 (LATERAL int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_localtime=yes	# Keyword LOCALTIME
   ###< create table crash_me10 (LOCALTIME int not null)
   ###> execute error: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 'LOCALTIME int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi99_localtimestamp=yes	# Keyword LOCALTIMESTAMP
   ###< create table crash_me10 (LOCALTIMESTAMP int not null)
   ###> execute error: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 'LOCALTIMESTAMP int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_ansi99_locator=no		# Keyword LOCATOR
   ###< create table crash_me10 (LOCATOR int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_meets=no		# Keyword MEETS
   ###< create table crash_me10 (MEETS int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_modifies=no	# Keyword MODIFIES
   ###< create table crash_me10 (MODIFIES int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_nclob=no		# Keyword NCLOB
   ###< create table crash_me10 (NCLOB int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_normalize=no	# Keyword NORMALIZE
   ###< create table crash_me10 (NORMALIZE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_ordinality=no	# Keyword ORDINALITY
   ###< create table crash_me10 (ORDINALITY int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
4903
reserved_word_ansi99_out=yes		# Keyword OUT
monty@mysql.com's avatar
monty@mysql.com committed
4904
   ###< create table crash_me10 (OUT int not null)
4905
   ###> execute error: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 'OUT int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
4906
   ###< drop table crash_me10 
4907
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
4908
   ###
4909
   ###As far as some queries didnt return OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965
reserved_word_ansi99_parameter=no	# Keyword PARAMETER
   ###< create table crash_me10 (PARAMETER int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_path=no		# Keyword PATH
   ###< create table crash_me10 (PATH int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_period=no		# Keyword PERIOD
   ###< create table crash_me10 (PERIOD int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_postfix=no		# Keyword POSTFIX
   ###< create table crash_me10 (POSTFIX int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_precedes=no	# Keyword PRECEDES
   ###< create table crash_me10 (PRECEDES int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_prefix=no		# Keyword PREFIX
   ###< create table crash_me10 (PREFIX int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_reads=no		# Keyword READS
   ###< create table crash_me10 (READS int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_redo=no		# Keyword REDO
   ###< create table crash_me10 (REDO int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
4966
reserved_word_ansi99_repeat=yes		# Keyword REPEAT
monty@mysql.com's avatar
monty@mysql.com committed
4967
   ###< create table crash_me10 (REPEAT int not null)
4968
   ###> execute error: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 'REPEAT int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
4969
   ###< drop table crash_me10 
4970
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
4971
   ###
4972
   ###As far as some queries didnt return OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993
reserved_word_ansi99_result=no		# Keyword RESULT
   ###< create table crash_me10 (RESULT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_rollup=no		# Keyword ROLLUP
   ###< create table crash_me10 (ROLLUP int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_sets=no		# Keyword SETS
   ###< create table crash_me10 (SETS int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
4994
reserved_word_ansi99_specific=yes	# Keyword SPECIFIC
monty@mysql.com's avatar
monty@mysql.com committed
4995
   ###< create table crash_me10 (SPECIFIC int not null)
4996
   ###> execute error: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 'SPECIFIC int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
4997
   ###< drop table crash_me10 
4998
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
4999
   ###
5000
   ###As far as some queries didnt return OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056
reserved_word_ansi99_specifictype=no	# Keyword SPECIFICTYPE
   ###< create table crash_me10 (SPECIFICTYPE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_start=no		# Keyword START
   ###< create table crash_me10 (START int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_state=no		# Keyword STATE
   ###< create table crash_me10 (STATE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_static=no		# Keyword STATIC
   ###< create table crash_me10 (STATIC int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_succeeds=no	# Keyword SUCCEEDS
   ###< create table crash_me10 (SUCCEEDS int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_terminate=no	# Keyword TERMINATE
   ###< create table crash_me10 (TERMINATE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_than=no		# Keyword THAN
   ###< create table crash_me10 (THAN int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_ansi99_treat=no		# Keyword TREAT
   ###< create table crash_me10 (TREAT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
5057
reserved_word_ansi99_undo=yes		# Keyword UNDO
monty@mysql.com's avatar
monty@mysql.com committed
5058
   ###< create table crash_me10 (UNDO int not null)
5059
   ###> execute error: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 'UNDO int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
5060
   ###< drop table crash_me10 
5061
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
5062
   ###
5063
   ###As far as some queries didnt return OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959
reserved_word_ansi99_until=no		# Keyword UNTIL
   ###< create table crash_me10 (UNTIL int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_access=no		# Keyword ACCESS
   ###< create table crash_me10 (ACCESS int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_analyze=yes		# Keyword ANALYZE
   ###< create table crash_me10 (ANALYZE int not null)
   ###> execute error: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 'ANALYZE int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_audit=no		# Keyword AUDIT
   ###< create table crash_me10 (AUDIT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_auto_increment=no	# Keyword AUTO_INCREMENT
   ###< create table crash_me10 (AUTO_INCREMENT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_backup=no		# Keyword BACKUP
   ###< create table crash_me10 (BACKUP int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_bdb=no		# Keyword BDB
   ###< create table crash_me10 (BDB int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_berkeleydb=no	# Keyword BERKELEYDB
   ###< create table crash_me10 (BERKELEYDB int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_bigint=yes		# Keyword BIGINT
   ###< create table crash_me10 (BIGINT int not null)
   ###> execute error: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 'BIGINT int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_break=no		# Keyword BREAK
   ###< create table crash_me10 (BREAK int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_browse=no		# Keyword BROWSE
   ###< create table crash_me10 (BROWSE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_btree=no		# Keyword BTREE
   ###< create table crash_me10 (BTREE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_bulk=no		# Keyword BULK
   ###< create table crash_me10 (BULK int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_change=yes		# Keyword CHANGE
   ###< create table crash_me10 (CHANGE int not null)
   ###> execute error: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 'CHANGE int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_checkpoint=no	# Keyword CHECKPOINT
   ###< create table crash_me10 (CHECKPOINT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_cluster=no		# Keyword CLUSTER
   ###< create table crash_me10 (CLUSTER int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_clustered=no	# Keyword CLUSTERED
   ###< create table crash_me10 (CLUSTERED int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_columns=yes		# Keyword COLUMNS
   ###< create table crash_me10 (COLUMNS int not null)
   ###> execute error: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 'COLUMNS int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_comment=no		# Keyword COMMENT
   ###< create table crash_me10 (COMMENT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_compress=no		# Keyword COMPRESS
   ###< create table crash_me10 (COMPRESS int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_compute=no		# Keyword COMPUTE
   ###< create table crash_me10 (COMPUTE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_containstable=no	# Keyword CONTAINSTABLE
   ###< create table crash_me10 (CONTAINSTABLE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_database=yes	# Keyword DATABASE
   ###< create table crash_me10 (DATABASE int not null)
   ###> execute error: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 'DATABASE int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_databases=yes	# Keyword DATABASES
   ###< create table crash_me10 (DATABASES int not null)
   ###> execute error: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 'DATABASES int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_day_hour=yes	# Keyword DAY_HOUR
   ###< create table crash_me10 (DAY_HOUR int not null)
   ###> execute error: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 'DAY_HOUR int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_day_minute=yes	# Keyword DAY_MINUTE
   ###< create table crash_me10 (DAY_MINUTE int not null)
   ###> execute error: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 'DAY_MINUTE int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_day_second=yes	# Keyword DAY_SECOND
   ###< create table crash_me10 (DAY_SECOND int not null)
   ###> execute error: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 'DAY_SECOND int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_dbcc=no		# Keyword DBCC
   ###< create table crash_me10 (DBCC int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_delayed=yes		# Keyword DELAYED
   ###< create table crash_me10 (DELAYED int not null)
   ###> execute error: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 'DELAYED int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_deny=no		# Keyword DENY
   ###< create table crash_me10 (DENY int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_disk=no		# Keyword DISK
   ###< create table crash_me10 (DISK int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_distinctrow=yes	# Keyword DISTINCTROW
   ###< create table crash_me10 (DISTINCTROW int not null)
   ###> execute error: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 'DISTINCTROW int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_distributed=no	# Keyword DISTRIBUTED
   ###< create table crash_me10 (DISTRIBUTED int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_dummy=no		# Keyword DUMMY
   ###< create table crash_me10 (DUMMY int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_dump=no		# Keyword DUMP
   ###< create table crash_me10 (DUMP int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_enclosed=yes	# Keyword ENCLOSED
   ###< create table crash_me10 (ENCLOSED int not null)
   ###> execute error: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 'ENCLOSED int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_errlvl=no		# Keyword ERRLVL
   ###< create table crash_me10 (ERRLVL int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_errors=no		# Keyword ERRORS
   ###< create table crash_me10 (ERRORS int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_escaped=yes		# Keyword ESCAPED
   ###< create table crash_me10 (ESCAPED int not null)
   ###> execute error: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 'ESCAPED int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_exclusive=no	# Keyword EXCLUSIVE
   ###< create table crash_me10 (EXCLUSIVE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_explain=yes		# Keyword EXPLAIN
   ###< create table crash_me10 (EXPLAIN int not null)
   ###> execute error: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 'EXPLAIN int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_fields=yes		# Keyword FIELDS
   ###< create table crash_me10 (FIELDS int not null)
   ###> execute error: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 'FIELDS int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_file=no		# Keyword FILE
   ###< create table crash_me10 (FILE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_fillfactor=no	# Keyword FILLFACTOR
   ###< create table crash_me10 (FILLFACTOR int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_freetext=no		# Keyword FREETEXT
   ###< create table crash_me10 (FREETEXT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_freetexttable=no	# Keyword FREETEXTTABLE
   ###< create table crash_me10 (FREETEXTTABLE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_fulltext=yes	# Keyword FULLTEXT
   ###< create table crash_me10 (FULLTEXT int not null)
   ###> execute error: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 'int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_geometry=no		# Keyword GEOMETRY
   ###< create table crash_me10 (GEOMETRY int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_hash=no		# Keyword HASH
   ###< create table crash_me10 (HASH int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_high_priority=yes	# Keyword HIGH_PRIORITY
   ###< create table crash_me10 (HIGH_PRIORITY int not null)
   ###> execute error: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 'HIGH_PRIORITY int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_holdlock=no		# Keyword HOLDLOCK
   ###< create table crash_me10 (HOLDLOCK int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_hour_minute=yes	# Keyword HOUR_MINUTE
   ###< create table crash_me10 (HOUR_MINUTE int not null)
   ###> execute error: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 'HOUR_MINUTE int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_hour_second=yes	# Keyword HOUR_SECOND
   ###< create table crash_me10 (HOUR_SECOND int not null)
   ###> execute error: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 'HOUR_SECOND int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_identified=no	# Keyword IDENTIFIED
   ###< create table crash_me10 (IDENTIFIED int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_identity_insert=no	# Keyword IDENTITY_INSERT
   ###< create table crash_me10 (IDENTITY_INSERT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_identitycol=no	# Keyword IDENTITYCOL
   ###< create table crash_me10 (IDENTITYCOL int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_increment=no	# Keyword INCREMENT
   ###< create table crash_me10 (INCREMENT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_index=yes		# Keyword INDEX
   ###< create table crash_me10 (INDEX int not null)
   ###> execute error: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 'int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_infile=yes		# Keyword INFILE
   ###< create table crash_me10 (INFILE int not null)
   ###> execute error: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 'INFILE int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_initial=no		# Keyword INITIAL
   ###< create table crash_me10 (INITIAL int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_innodb=no		# Keyword INNODB
   ###< create table crash_me10 (INNODB int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_keys=yes		# Keyword KEYS
   ###< create table crash_me10 (KEYS int not null)
   ###> execute error: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 'KEYS int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_kill=yes		# Keyword KILL
   ###< create table crash_me10 (KILL int not null)
   ###> execute error: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 'KILL int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_lineno=no		# Keyword LINENO
   ###< create table crash_me10 (LINENO int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_lines=yes		# Keyword LINES
   ###< create table crash_me10 (LINES int not null)
   ###> execute error: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 'LINES int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_load=yes		# Keyword LOAD
   ###< create table crash_me10 (LOAD int not null)
   ###> execute error: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 'LOAD int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_lock=yes		# Keyword LOCK
   ###< create table crash_me10 (LOCK int not null)
   ###> execute error: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 'LOCK int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_long=yes		# Keyword LONG
   ###< create table crash_me10 (LONG int not null)
   ###> execute error: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 'LONG int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_longblob=yes	# Keyword LONGBLOB
   ###< create table crash_me10 (LONGBLOB int not null)
   ###> execute error: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 'LONGBLOB int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_longtext=yes	# Keyword LONGTEXT
   ###< create table crash_me10 (LONGTEXT int not null)
   ###> execute error: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 'LONGTEXT int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_low_priority=yes	# Keyword LOW_PRIORITY
   ###< create table crash_me10 (LOW_PRIORITY int not null)
   ###> execute error: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 'LOW_PRIORITY int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_master_server_id=yes	# Keyword MASTER_SERVER_ID
   ###< create table crash_me10 (MASTER_SERVER_ID int not null)
   ###> execute error: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 'MASTER_SERVER_ID int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_maxextents=no	# Keyword MAXEXTENTS
   ###< create table crash_me10 (MAXEXTENTS int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_mediumblob=yes	# Keyword MEDIUMBLOB
   ###< create table crash_me10 (MEDIUMBLOB int not null)
   ###> execute error: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 'MEDIUMBLOB int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_mediumint=yes	# Keyword MEDIUMINT
   ###< create table crash_me10 (MEDIUMINT int not null)
   ###> execute error: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 'MEDIUMINT int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_mediumtext=yes	# Keyword MEDIUMTEXT
   ###< create table crash_me10 (MEDIUMTEXT int not null)
   ###> execute error: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 'MEDIUMTEXT int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_middleint=yes	# Keyword MIDDLEINT
   ###< create table crash_me10 (MIDDLEINT int not null)
   ###> execute error: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 'MIDDLEINT int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_minus=no		# Keyword MINUS
   ###< create table crash_me10 (MINUS int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_minute_second=yes	# Keyword MINUTE_SECOND
   ###< create table crash_me10 (MINUTE_SECOND int not null)
   ###> execute error: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 'MINUTE_SECOND int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_mlslabel=no		# Keyword MLSLABEL
   ###< create table crash_me10 (MLSLABEL int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_mode=no		# Keyword MODE
   ###< create table crash_me10 (MODE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_mrg_myisam=no	# Keyword MRG_MYISAM
   ###< create table crash_me10 (MRG_MYISAM int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_noaudit=no		# Keyword NOAUDIT
   ###< create table crash_me10 (NOAUDIT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_nocheck=no		# Keyword NOCHECK
   ###< create table crash_me10 (NOCHECK int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_nocompress=no	# Keyword NOCOMPRESS
   ###< create table crash_me10 (NOCOMPRESS int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_nonclustered=no	# Keyword NONCLUSTERED
   ###< create table crash_me10 (NONCLUSTERED int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_nowait=no		# Keyword NOWAIT
   ###< create table crash_me10 (NOWAIT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_number=no		# Keyword NUMBER
   ###< create table crash_me10 (NUMBER int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_offline=no		# Keyword OFFLINE
   ###< create table crash_me10 (OFFLINE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_offsets=no		# Keyword OFFSETS
   ###< create table crash_me10 (OFFSETS int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_online=no		# Keyword ONLINE
   ###< create table crash_me10 (ONLINE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_opendatasource=no	# Keyword OPENDATASOURCE
   ###< create table crash_me10 (OPENDATASOURCE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_openquery=no	# Keyword OPENQUERY
   ###< create table crash_me10 (OPENQUERY int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_openrowset=no	# Keyword OPENROWSET
   ###< create table crash_me10 (OPENROWSET int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_openxml=no		# Keyword OPENXML
   ###< create table crash_me10 (OPENXML int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_optimize=yes	# Keyword OPTIMIZE
   ###< create table crash_me10 (OPTIMIZE int not null)
   ###> execute error: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 'OPTIMIZE int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_optionally=yes	# Keyword OPTIONALLY
   ###< create table crash_me10 (OPTIONALLY int not null)
   ###> execute error: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 'OPTIONALLY int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_outfile=yes		# Keyword OUTFILE
   ###< create table crash_me10 (OUTFILE int not null)
   ###> execute error: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 'OUTFILE int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_over=no		# Keyword OVER
   ###< create table crash_me10 (OVER int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_pctfree=no		# Keyword PCTFREE
   ###< create table crash_me10 (PCTFREE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_percent=no		# Keyword PERCENT
   ###< create table crash_me10 (PERCENT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_plan=no		# Keyword PLAN
   ###< create table crash_me10 (PLAN int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_print=no		# Keyword PRINT
   ###< create table crash_me10 (PRINT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_proc=no		# Keyword PROC
   ###< create table crash_me10 (PROC int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_purge=yes		# Keyword PURGE
   ###< create table crash_me10 (PURGE int not null)
   ###> execute error: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 'PURGE int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_raiserror=no	# Keyword RAISERROR
   ###< create table crash_me10 (RAISERROR int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_raw=no		# Keyword RAW
   ###< create table crash_me10 (RAW int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_readtext=no		# Keyword READTEXT
   ###< create table crash_me10 (READTEXT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_reconfigure=no	# Keyword RECONFIGURE
   ###< create table crash_me10 (RECONFIGURE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_regexp=yes		# Keyword REGEXP
   ###< create table crash_me10 (REGEXP int not null)
   ###> execute error: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 'REGEXP int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_rename=yes		# Keyword RENAME
   ###< create table crash_me10 (RENAME int not null)
   ###> execute error: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 'RENAME int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_replication=no	# Keyword REPLICATION
   ###< create table crash_me10 (REPLICATION int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_require=yes		# Keyword REQUIRE
   ###< create table crash_me10 (REQUIRE int not null)
   ###> execute error: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 'REQUIRE int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_resource=no		# Keyword RESOURCE
   ###< create table crash_me10 (RESOURCE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_restore=no		# Keyword RESTORE
   ###< create table crash_me10 (RESTORE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_rlike=yes		# Keyword RLIKE
   ###< create table crash_me10 (RLIKE int not null)
   ###> execute error: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 'RLIKE int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_rowcount=no		# Keyword ROWCOUNT
   ###< create table crash_me10 (ROWCOUNT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_rowguidcol=no	# Keyword ROWGUIDCOL
   ###< create table crash_me10 (ROWGUIDCOL int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_rowid=no		# Keyword ROWID
   ###< create table crash_me10 (ROWID int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_rownum=no		# Keyword ROWNUM
   ###< create table crash_me10 (ROWNUM int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_rtree=no		# Keyword RTREE
   ###< create table crash_me10 (RTREE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_rule=no		# Keyword RULE
   ###< create table crash_me10 (RULE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_save=no		# Keyword SAVE
   ###< create table crash_me10 (SAVE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_setuser=no		# Keyword SETUSER
   ###< create table crash_me10 (SETUSER int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_share=no		# Keyword SHARE
   ###< create table crash_me10 (SHARE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_show=yes		# Keyword SHOW
   ###< create table crash_me10 (SHOW int not null)
   ###> execute error: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 'SHOW int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_shutdown=no		# Keyword SHUTDOWN
   ###< create table crash_me10 (SHUTDOWN int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_soname=yes		# Keyword SONAME
   ###< create table crash_me10 (SONAME int not null)
   ###> execute error: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 'SONAME int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
5960
reserved_word_extra_spatial=yes		# Keyword SPATIAL
monty@mysql.com's avatar
monty@mysql.com committed
5961
   ###< create table crash_me10 (SPATIAL int not null)
5962
   ###> execute error: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 'int not null)' at line 1
monty@mysql.com's avatar
monty@mysql.com committed
5963
   ###< drop table crash_me10 
5964
   ###> execute error:Unknown table 'crash_me10'
monty@mysql.com's avatar
monty@mysql.com committed
5965
   ###
5966
   ###As far as some queries didnt return OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277
reserved_word_extra_sql_big_result=yes	# Keyword SQL_BIG_RESULT
   ###< create table crash_me10 (SQL_BIG_RESULT int not null)
   ###> execute error: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 'SQL_BIG_RESULT int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_sql_calc_found_rows=yes	# Keyword SQL_CALC_FOUND_ROWS
   ###< create table crash_me10 (SQL_CALC_FOUND_ROWS int not null)
   ###> execute error: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 'SQL_CALC_FOUND_ROWS int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_sql_small_result=yes	# Keyword SQL_SMALL_RESULT
   ###< create table crash_me10 (SQL_SMALL_RESULT int not null)
   ###> execute error: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 'SQL_SMALL_RESULT int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_ssl=yes		# Keyword SSL
   ###< create table crash_me10 (SSL int not null)
   ###> execute error: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 'SSL int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_starting=yes	# Keyword STARTING
   ###< create table crash_me10 (STARTING int not null)
   ###> execute error: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 'STARTING int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_statistics=no	# Keyword STATISTICS
   ###< create table crash_me10 (STATISTICS int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_straight_join=yes	# Keyword STRAIGHT_JOIN
   ###< create table crash_me10 (STRAIGHT_JOIN int not null)
   ###> execute error: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 'STRAIGHT_JOIN int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_striped=no		# Keyword STRIPED
   ###< create table crash_me10 (STRIPED int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_successful=no	# Keyword SUCCESSFUL
   ###< create table crash_me10 (SUCCESSFUL int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_synonym=no		# Keyword SYNONYM
   ###< create table crash_me10 (SYNONYM int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_sysdate=no		# Keyword SYSDATE
   ###< create table crash_me10 (SYSDATE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_tables=yes		# Keyword TABLES
   ###< create table crash_me10 (TABLES int not null)
   ###> execute error: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 'TABLES int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_terminated=yes	# Keyword TERMINATED
   ###< create table crash_me10 (TERMINATED int not null)
   ###> execute error: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 'TERMINATED int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_textsize=no		# Keyword TEXTSIZE
   ###< create table crash_me10 (TEXTSIZE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_tinyblob=yes	# Keyword TINYBLOB
   ###< create table crash_me10 (TINYBLOB int not null)
   ###> execute error: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 'TINYBLOB int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_tinyint=yes		# Keyword TINYINT
   ###< create table crash_me10 (TINYINT int not null)
   ###> execute error: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 'TINYINT int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_tinytext=yes	# Keyword TINYTEXT
   ###< create table crash_me10 (TINYTEXT int not null)
   ###> execute error: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 'TINYTEXT int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_top=no		# Keyword TOP
   ###< create table crash_me10 (TOP int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_tran=no		# Keyword TRAN
   ###< create table crash_me10 (TRAN int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_truncate=no		# Keyword TRUNCATE
   ###< create table crash_me10 (TRUNCATE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_tsequal=no		# Keyword TSEQUAL
   ###< create table crash_me10 (TSEQUAL int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_types=no		# Keyword TYPES
   ###< create table crash_me10 (TYPES int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_uid=no		# Keyword UID
   ###< create table crash_me10 (UID int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_unlock=yes		# Keyword UNLOCK
   ###< create table crash_me10 (UNLOCK int not null)
   ###> execute error: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 'UNLOCK int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_unsigned=yes	# Keyword UNSIGNED
   ###< create table crash_me10 (UNSIGNED int not null)
   ###> execute error: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 'UNSIGNED int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_updatetext=no	# Keyword UPDATETEXT
   ###< create table crash_me10 (UPDATETEXT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_use=yes		# Keyword USE
   ###< create table crash_me10 (USE int not null)
   ###> execute error: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 'USE int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_user_resources=no	# Keyword USER_RESOURCES
   ###< create table crash_me10 (USER_RESOURCES int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_validate=no		# Keyword VALIDATE
   ###< create table crash_me10 (VALIDATE int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_varbinary=yes	# Keyword VARBINARY
   ###< create table crash_me10 (VARBINARY int not null)
   ###> execute error: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 'VARBINARY int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_varchar2=no		# Keyword VARCHAR2
   ###< create table crash_me10 (VARCHAR2 int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_waitfor=no		# Keyword WAITFOR
   ###< create table crash_me10 (WAITFOR int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_warnings=no		# Keyword WARNINGS
   ###< create table crash_me10 (WARNINGS int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_writetext=no	# Keyword WRITETEXT
   ###< create table crash_me10 (WRITETEXT int not null)
   ###> OK
   ###< drop table crash_me10 
   ###> OK
   ###
   ###As far as all queries returned OK, result is NO
reserved_word_extra_xor=yes		# Keyword XOR
   ###< create table crash_me10 (XOR int not null)
   ###> execute error: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 'XOR int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_year_month=yes	# Keyword YEAR_MONTH
   ###< create table crash_me10 (YEAR_MONTH int not null)
   ###> execute error: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 'YEAR_MONTH int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
reserved_word_extra_zerofill=yes	# Keyword ZEROFILL
   ###< create table crash_me10 (ZEROFILL int not null)
   ###> execute error: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 'ZEROFILL int not null)' at line 1
   ###< drop table crash_me10 
   ###> execute error:Unknown table 'crash_me10'
   ###
   ###As far as some queries didnt return OK, result is YES
right_outer_join=yes			# right outer join
   ###< select crash_me.a from crash_me right join crash_me2 ON crash_me.a=crash_me2.a
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
rollback_metadata=no			# rollback_metadata
   ###< create table crash_q (a integer not null) 
   ###> OK
   ###
   ###< insert into crash_q values (1)
   ###> OK
rowid=auto_increment			# Type for row id
   ###< create table crash_q (a rowid)
   ###> execute error: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 'rowid)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###< create table crash_q (a int not null auto_increment, primary key(a))
   ###> OK
   ###< drop table crash_q 
   ###> OK
safe_decimal_arithmetic=no		# safe decimal arithmetic
   ###< create table crash_me_a (a decimal(10,2),b decimal(10,2))
   ###> OK
   ###
   ###< insert into crash_me_a (a,b) values (11.4,18.9)
   ###> OK
   ###
   ###<select count(*) from crash_me_a where a+b=30.3
   ###>0
   ###We expected '1' but got '0' 
select_constants=yes			# Select constants
   ###< select 1 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
select_limit=with LIMIT			# LIMIT number of rows
   ###< select * from crash_me limit 1
   ###> OK
select_limit2=yes			# SELECT with LIMIT #,#
   ###< select * from crash_me limit 1,1
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
select_limit3=yes			# SELECT with LIMIT # OFFSET #
   ###< select * from crash_me limit 1 offset 1
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
select_string_size=1048565		# constant string size in SELECT
   ###We are trying (example with N=5):
   ###select 'aaaaa'
6278
select_table_update=yes			# Update with sub select
monty@mysql.com's avatar
monty@mysql.com committed
6279 6280 6281 6282 6283
   ###< create table crash_q (a integer,b char(10))
   ###> OK
   ###< insert into crash_q values(1,'c')
   ###> OK
   ###< update crash_q set b= (select b from crash_me where crash_q.a = crash_me.a)
6284 6285 6286 6287
   ###> OK
   ###
   ###<select b from crash_q
   ###>a
monty@mysql.com's avatar
monty@mysql.com committed
6288 6289 6290 6291 6292 6293 6294 6295
   ###
   ###< drop table crash_q 
   ###> OK
select_without_from=yes			# SELECT without FROM
   ###< select 1
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
6296
server_version=MySQL 5.0.0 alpha debug log/	# server version
monty@mysql.com's avatar
monty@mysql.com committed
6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390
simple_joins=yes			# ANSI SQL simple joins
   ###< select crash_me.a from crash_me, crash_me t0
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
sorted_group_by=yes			# Group by always sorted
   ###< create table crash_me_t1 (a int not null, b int not null)
   ###> OK
   ###< insert into crash_me_t1 values (1,1)
   ###> OK
   ###< insert into crash_me_t1 values (1,2)
   ###> OK
   ###< insert into crash_me_t1 values (3,1)
   ###> OK
   ###< insert into crash_me_t1 values (3,2)
   ###> OK
   ###< insert into crash_me_t1 values (2,2)
   ###> OK
   ###< insert into crash_me_t1 values (2,1)
   ###> OK
   ###< create table crash_me_t2 (a int not null, b int not null)
   ###> OK
   ###< create index crash_me_t2_ind on crash_me_t2 (a)
   ###> OK
   ###< insert into crash_me_t2 values (1,3)
   ###> OK
   ###< insert into crash_me_t2 values (3,1)
   ###> OK
   ###< insert into crash_me_t2 values (2,2)
   ###> OK
   ###< insert into crash_me_t2 values (1,1)
   ###> OK
   ###
   ###< select crash_me_t1.a,crash_me_t2.b from crash_me_t1,crash_me_t2 where crash_me_t1.a=crash_me_t2.a group by crash_me_t1.a,crash_me_t2.b
   ### > 1,1
   ### > 1,3
   ### > 2,2
   ### > 3,1
   ###
   ### Check recordset:
   ### 1,1 expected: 1,1
   ### 1,3 expected: 1,3
   ### 2,2 expected: 2,2
   ### 3,1 expected: 3,1
   ### Recordset corresponds with template
   ###< drop table crash_me_t1
   ###> OK
   ###< drop table crash_me_t2
   ###> OK
storage_of_float=round			# Storage of float values
   ###< create table crash_q (q1 float(4,1))
   ###> OK
   ###< insert into crash_q values(1.14)
   ###> OK
   ###
   ###<select q1 from crash_q
   ###>1.1
   ###
   ###< drop table crash_q 
   ###> OK
   ###
   ###< create table crash_q (q1 float(4,1))
   ###> OK
   ###< insert into crash_q values(1.16)
   ###> OK
   ###
   ###<select q1 from crash_q
   ###>1.2
   ###We expected '1.1' but got '1.2' 
   ###
   ###< drop table crash_q 
   ###> OK
   ###
   ###< create table crash_q (q1 float(4,1))
   ###> OK
   ###< insert into crash_q values(1.14)
   ###> OK
   ###
   ###<select q1 from crash_q
   ###>1.1
   ###
   ###< drop table crash_q 
   ###> OK
   ###
   ###< create table crash_q (q1 float(4,1))
   ###> OK
   ###< insert into crash_q values(1.16)
   ###> OK
   ###
   ###<select q1 from crash_q
   ###>1.2
   ###
   ###< drop table crash_q 
   ###> OK
6391
subqueries=yes				# subqueries
monty@mysql.com's avatar
monty@mysql.com committed
6392
   ###< select a from crash_me where crash_me.a in (select max(a) from crash_me)
6393
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
6394
   ###
6395
   ###As far as all queries returned OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462
table_alias=yes				# Table alias
   ###< select b.a from crash_me as b
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
table_name_case=no			# case independent table names
   ###< create table crash_q (q integer)
   ###> OK
   ###< drop table CRASH_Q 
   ###> execute error:Unknown table 'CRASH_Q'
   ###
   ###As far as some queries didnt return OK, result is NO
table_wildcard=yes			# Select table_name.*
   ###< select crash_me.* from crash_me
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
temporary_table=yes			# temporary tables
   ###< create temporary table crash_q (q integer not null)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
time_format_EUR=error			# Supports HH.MM.SS (EUR) time format
   ###< insert into crash_me_t(a) values ('20.08.16')
   ###> OK
   ###
   ###<select a from crash_me_t
   ###>00:00:20
   ###We expected '20:08:16' but got '00:00:20' 
   ###
   ###< delete from crash_me_t
   ###> OK
time_format_HHHHMMSS=yes		# Supports HHHHmmSS time format
   ###< insert into crash_me_t(a) values ('00200816')
   ###> OK
   ###
   ###<select a from crash_me_t
   ###>20:08:16
   ###
   ###< delete from crash_me_t
   ###> OK
time_format_ISO=yes			# Supports HH:MM:SS (ISO) time format
   ###< insert into crash_me_t(a)  values ('20:08:16')
   ###> OK
   ###
   ###<select a from crash_me_t
   ###>20:08:16
   ###
   ###< delete from crash_me_t
   ###> OK
time_format_USA=error			# Supports HH:MM:SS (AM|PM) time format
   ###< insert into crash_me_t(a) values ('08:08:16 PM')
   ###> OK
   ###
   ###<select a from crash_me_t
   ###>08:08:16
   ###We expected '20:08:16' but got '08:08:16' 
   ###
   ###< delete from crash_me_t
   ###> OK
time_format_inresult=iso		# Time format in result
   ###< insert into crash_me_t values(CURRENT_TIME) 
   ###> OK
   ###
   ###< select a from crash_me_t
6463
   ###> 09:46:11
monty@mysql.com's avatar
monty@mysql.com committed
6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681
   ###< delete from crash_me_t
   ###> OK
transactions=yes			# transactions
   ###<select * from crash_q
   ###>1
   ###We expected '' but got '1' 
truncate_table=yes			# truncate
   ###< create table crash_q (a integer, b integer,c1 CHAR(10))
   ###> OK
   ###< truncate table crash_q
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_extra_abstime=no			# Type abstime
   ###< create table crash_q (q abstime)
   ###> execute error: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 'abstime)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_bfile=no			# Type bfile
   ###< create table crash_q (q bfile)
   ###> execute error: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 'bfile)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_blob=yes			# Type blob
   ###< create table crash_q (q blob)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_extra_bool=yes			# Type bool
   ###< create table crash_q (q bool)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_extra_box=no			# Type box
   ###< create table crash_q (q box)
   ###> execute error: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 'box)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_byte=no			# Type byte
   ###< create table crash_q (q byte)
   ###> execute error: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 'byte)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_char(1_arg)_binary=yes	# Type char(1 arg) binary
   ###< create table crash_q (q char(10) binary)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_extra_cidr=no			# Type cidr
   ###< create table crash_q (q cidr)
   ###> execute error: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 'cidr)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_circle=no			# Type circle
   ###< create table crash_q (q circle)
   ###> execute error: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 'circle)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_clob=no			# Type clob
   ###< create table crash_q (q clob)
   ###> execute error: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 'clob)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_datetime=yes			# Type datetime
   ###< create table crash_q (q datetime)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_extra_double=yes			# Type double
   ###< create table crash_q (q double)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_extra_enum(1_arg)=yes		# Type enum(1 arg)
   ###< create table crash_q (q enum('red'))
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_extra_float(2_arg)=yes		# Type float(2 arg)
   ###< create table crash_q (q float(6,2))
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_extra_float4=yes			# Type float4
   ###< create table crash_q (q float4)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_extra_float8=yes			# Type float8
   ###< create table crash_q (q float8)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_extra_image=no			# Type image
   ###< create table crash_q (q image)
   ###> execute error: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 'image)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_inet=no			# Type inet
   ###< create table crash_q (q inet)
   ###> execute error: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 'inet)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_int(1_arg)_zerofill=yes	# Type int(1 arg) zerofill
   ###< create table crash_q (q int(5) zerofill)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_extra_int1=yes			# Type int1
   ###< create table crash_q (q int1)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_extra_int2=yes			# Type int2
   ###< create table crash_q (q int2)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_extra_int3=yes			# Type int3
   ###< create table crash_q (q int3)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_extra_int4=yes			# Type int4
   ###< create table crash_q (q int4)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_extra_int8=yes			# Type int8
   ###< create table crash_q (q int8)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_extra_int_auto_increment=yes	# Type int not null auto_increment
   ###< create table crash_q (q int not null auto_increment,unique(q))
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_extra_int_identity=no		# Type int not null identity
   ###< create table crash_q (q int not null identity,unique(q))
   ###> execute error: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 'identity,unique(q))' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_int_unsigned=yes		# Type int unsigned
   ###< create table crash_q (q int unsigned)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_extra_interval=no			# Type interval
   ###< create table crash_q (q interval)
   ###> execute error: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 'interval)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_line=no			# Type line
   ###< create table crash_q (q line)
   ###> execute error: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 'line)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
6682
type_extra_long=yes			# Type long
monty@mysql.com's avatar
monty@mysql.com committed
6683
   ###< create table crash_q (q long)
6684
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
6685
   ###< drop table crash_q 
6686
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
6687
   ###
6688
   ###As far as all queries returned OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800
type_extra_long_raw=no			# Type long raw
   ###< create table crash_q (q long raw)
   ###> execute error: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 'raw)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_long_varbinary=yes		# Type long varbinary
   ###< create table crash_q (q long varbinary)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_extra_long_varchar(1_arg)=no	# Type long varchar(1 arg)
   ###< create table crash_q (q long varchar(1))
   ###> execute error: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 '(1))' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_lseg=no			# Type lseg
   ###< create table crash_q (q lseg)
   ###> execute error: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 'lseg)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_macaddr=no			# Type macaddr
   ###< create table crash_q (q macaddr)
   ###> execute error: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 'macaddr)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_mediumint=yes		# Type mediumint
   ###< create table crash_q (q mediumint)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_extra_mediumtext=yes		# Type mediumtext
   ###< create table crash_q (q mediumtext)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_extra_middleint=yes		# Type middleint
   ###< create table crash_q (q middleint)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_extra_mlslabel=no			# Type mlslabel
   ###< create table crash_q (q mlslabel)
   ###> execute error: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 'mlslabel)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_money=no			# Type money
   ###< create table crash_q (q money)
   ###> execute error: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 'money)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_nclob=no			# Type nclob
   ###< create table crash_q (q nclob)
   ###> execute error: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 'nclob)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_number=no			# Type number
   ###< create table crash_q (q number)
   ###> execute error: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 'number)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_number(1_arg)=no		# Type number(1 arg)
   ###< create table crash_q (q number(9))
   ###> execute error: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 'number(9))' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_number(2_arg)=no		# Type number(2 arg)
   ###< create table crash_q (q number(9,2))
   ###> execute error: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 'number(9,2))' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_nvarchar2(1_arg)=no		# Type nvarchar2(1 arg)
   ###< create table crash_q (q nvarchar2(16))
   ###> execute error: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 'nvarchar2(16))' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_path=no			# Type path
   ###< create table crash_q (q path)
   ###> execute error: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 'path)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
6801
type_extra_point=yes			# Type point
monty@mysql.com's avatar
monty@mysql.com committed
6802
   ###< create table crash_q (q point)
6803
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
6804
   ###< drop table crash_q 
6805
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
6806
   ###
6807 6808
   ###As far as all queries returned OK, result is YES
type_extra_polygon=yes			# Type polygon
monty@mysql.com's avatar
monty@mysql.com committed
6809
   ###< create table crash_q (q polygon)
6810
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
6811
   ###< drop table crash_q 
6812
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
6813
   ###
6814
   ###As far as all queries returned OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835
type_extra_raw(1_arg)=no		# Type raw(1 arg)
   ###< create table crash_q (q raw(16))
   ###> execute error: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 'raw(16))' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_reltime=no			# Type reltime
   ###< create table crash_q (q reltime)
   ###> execute error: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 'reltime)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_rowid=no			# Type rowid
   ###< create table crash_q (q rowid)
   ###> execute error: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 'rowid)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
6836
type_extra_serial=yes			# Type serial
monty@mysql.com's avatar
monty@mysql.com committed
6837
   ###< create table crash_q (q serial)
6838
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
6839
   ###< drop table crash_q 
6840
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
6841
   ###
6842
   ###As far as all queries returned OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877
type_extra_set(1_arg)=yes		# Type set(1 arg)
   ###< create table crash_q (q set('red'))
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_extra_smalldatetime=no		# Type smalldatetime
   ###< create table crash_q (q smalldatetime)
   ###> execute error: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 'smalldatetime)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_smallfloat=no		# Type smallfloat
   ###< create table crash_q (q smallfloat)
   ###> execute error: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 'smallfloat)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_smallmoney=no		# Type smallmoney
   ###< create table crash_q (q smallmoney)
   ###> execute error: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 'smallmoney)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_text=yes			# Type text
   ###< create table crash_q (q text)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
6878
type_extra_text(1_arg)=yes		# Type text(1 arg)
monty@mysql.com's avatar
monty@mysql.com committed
6879
   ###< create table crash_q (q text(10))
6880
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
6881
   ###< drop table crash_q 
6882
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
6883
   ###
6884
   ###As far as all queries returned OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968
type_extra_timespan=no			# Type timespan
   ###< create table crash_q (q timespan)
   ###> execute error: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 'timespan)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_uint=no			# Type uint
   ###< create table crash_q (q uint)
   ###> execute error: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 'uint)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_varchar2(1_arg)=no		# Type varchar2(1 arg)
   ###< create table crash_q (q varchar2(257))
   ###> execute error: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 'varchar2(257))' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_extra_year=yes			# Type year
   ###< create table crash_q (q year)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_odbc_bigint=yes			# Type bigint
   ###< create table crash_q (q bigint)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_odbc_binary(1_arg)=yes		# Type binary(1 arg)
   ###< create table crash_q (q binary(1))
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_odbc_datetime=yes			# Type datetime
   ###< create table crash_q (q datetime)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_odbc_tinyint=yes			# Type tinyint
   ###< create table crash_q (q tinyint)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_odbc_varbinary(1_arg)=yes		# Type varbinary(1 arg)
   ###< create table crash_q (q varbinary(1))
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_sql_bit=yes			# Type bit
   ###< create table crash_q (q bit)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_sql_bit(1_arg)=yes			# Type bit(1 arg)
   ###< create table crash_q (q bit(2))
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_sql_bit_varying(1_arg)=no		# Type bit varying(1 arg)
   ###< create table crash_q (q bit varying(2))
   ###> execute error: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 'varying(2))' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
6969
type_sql_boolean=yes			# Type boolean
monty@mysql.com's avatar
monty@mysql.com committed
6970
   ###< create table crash_q (q boolean)
6971
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
6972
   ###< drop table crash_q 
6973
   ###> OK
monty@mysql.com's avatar
monty@mysql.com committed
6974
   ###
6975
   ###As far as all queries returned OK, result is YES
monty@mysql.com's avatar
monty@mysql.com committed
6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274
type_sql_char(1_arg)=yes		# Type char(1 arg)
   ###< create table crash_q (q char(1))
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_sql_char_varying(1_arg)=yes	# Type char varying(1 arg)
   ###< create table crash_q (q char varying(1))
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_sql_character(1_arg)=yes		# Type character(1 arg)
   ###< create table crash_q (q character(1))
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_sql_character_varying(1_arg)=yes	# Type character varying(1 arg)
   ###< create table crash_q (q character varying(1))
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_sql_date=yes			# Type date
   ###< create table crash_q (q date)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_sql_dec(2_arg)=yes			# Type dec(2 arg)
   ###< create table crash_q (q dec(6,2))
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_sql_decimal(2_arg)=yes		# Type decimal(2 arg)
   ###< create table crash_q (q decimal(6,2))
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_sql_double_precision=yes		# Type double precision
   ###< create table crash_q (q double precision)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_sql_float=yes			# Type float
   ###< create table crash_q (q float)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_sql_float(1_arg)=yes		# Type float(1 arg)
   ###< create table crash_q (q float(8))
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_sql_int=yes			# Type int
   ###< create table crash_q (q int)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_sql_integer=yes			# Type integer
   ###< create table crash_q (q integer)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_sql_interval_day=no		# Type interval day
   ###< create table crash_q (q interval day)
   ###> execute error: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 'interval day)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_sql_interval_day_to_hour=no	# Type interval day to hour
   ###< create table crash_q (q interval day to hour)
   ###> execute error: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 'interval day to hour)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_sql_interval_day_to_minute=no	# Type interval day to minute
   ###< create table crash_q (q interval day to minute)
   ###> execute error: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 'interval day to minute)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_sql_interval_day_to_second=no	# Type interval day to second
   ###< create table crash_q (q interval day to second)
   ###> execute error: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 'interval day to second)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_sql_interval_hour=no		# Type interval hour
   ###< create table crash_q (q interval hour)
   ###> execute error: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 'interval hour)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_sql_interval_hour_to_minute=no	# Type interval hour to minute
   ###< create table crash_q (q interval hour to minute)
   ###> execute error: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 'interval hour to minute)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_sql_interval_hour_to_second=no	# Type interval hour to second
   ###< create table crash_q (q interval hour to second)
   ###> execute error: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 'interval hour to second)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_sql_interval_minute=no		# Type interval minute
   ###< create table crash_q (q interval minute)
   ###> execute error: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 'interval minute)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_sql_interval_minute_to_second=no	# Type interval minute to second
   ###< create table crash_q (q interval minute to second)
   ###> execute error: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 'interval minute to second)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_sql_interval_month=no		# Type interval month
   ###< create table crash_q (q interval month)
   ###> execute error: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 'interval month)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_sql_interval_second=no		# Type interval second
   ###< create table crash_q (q interval second)
   ###> execute error: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 'interval second)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_sql_interval_year=no		# Type interval year
   ###< create table crash_q (q interval year)
   ###> execute error: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 'interval year)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_sql_interval_year_to_month=no	# Type interval year to month
   ###< create table crash_q (q interval year to month)
   ###> execute error: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 'interval year to month)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_sql_national_char_varying(1_arg)=yes	# Type national char varying(1 arg)
   ###< create table crash_q (q national char varying(20))
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_sql_national_character(1_arg)=yes	# Type national character(1 arg)
   ###< create table crash_q (q national character(20))
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_sql_national_character_varying(1_arg)=yes	# Type national character varying(1 arg)
   ###< create table crash_q (q national character varying(20))
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_sql_nchar(1_arg)=yes		# Type nchar(1 arg)
   ###< create table crash_q (q nchar(1))
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_sql_nchar_varying(1_arg)=yes	# Type nchar varying(1 arg)
   ###< create table crash_q (q nchar varying(20))
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_sql_numeric(2_arg)=yes		# Type numeric(2 arg)
   ###< create table crash_q (q numeric(9,2))
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_sql_real=yes			# Type real
   ###< create table crash_q (q real)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_sql_smallint=yes			# Type smallint
   ###< create table crash_q (q smallint)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_sql_time=yes			# Type time
   ###< create table crash_q (q time)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_sql_timestamp=yes			# Type timestamp
   ###< create table crash_q (q timestamp)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
type_sql_timestamp_with_time_zone=no	# Type timestamp with time zone
   ###< create table crash_q (q timestamp with time zone)
   ###> execute error: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 'with time zone)' at line 1
   ###< drop table crash_q 
   ###> execute error:Unknown table 'crash_q'
   ###
   ###As far as some queries didnt return OK, result is NO
type_sql_varchar(1_arg)=yes		# Type varchar(1 arg)
   ###< create table crash_q (q varchar(1))
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
union=yes				# union
   ###< select * from crash_me union select a,b from crash_me3
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
union_all=yes				# union all
   ###< select * from crash_me union all select a,b from crash_me3
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
union_all_incompat=yes			# union all (incompatible lists)
   ###< select * from crash_me union all select a,b from crash_me2
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
union_incompat=yes			# union (incompatible lists)
   ###< select * from crash_me union select a,b from crash_me2
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
unique_in_create=yes			# unique in create table
   ###< create table crash_q (q integer not null,unique (q))
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
unique_null_in_create=yes		# unique null in create
   ###< create table crash_q (q integer,unique (q))
   ###> OK
   ###< insert into crash_q (q) values (NULL)
   ###> OK
   ###< insert into crash_q (q) values (NULL)
   ###> OK
   ###< insert into crash_q (q) values (1)
   ###> OK
   ###< drop table crash_q 
   ###> OK
   ###
   ###As far as all queries returned OK, result is YES
7275
value_of_false=0			# Value of FALSE
monty@mysql.com's avatar
monty@mysql.com committed
7276
   ###<select FALSE 
7277 7278
   ###>0
value_of_true=1				# Value of TRUE
monty@mysql.com's avatar
monty@mysql.com committed
7279
   ###<select TRUE 
7280
   ###>1
monty@mysql.com's avatar
monty@mysql.com committed
7281 7282 7283 7284 7285 7286 7287 7288 7289 7290
views=no				# views
   ###< create view crash_q as select a from crash_me
   ###> execute error: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 'view crash_q as select a from crash_me' at line 1
   ###< drop view crash_q 
   ###> execute error: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 'view crash_q' at line 1
   ###
   ###As far as some queries didnt return OK, result is NO
where_string_size=1048539		# constant string size in where
   ###We are trying (example with N=5):
   ###select a from crash_me where b >='11111'