home *** CD-ROM | disk | FTP | other *** search
/ Internet Magazine 2003 October / INTERNET108.ISO / pc / software / windows / building / mysql / data1.cab / Development / bench / limits / mysql.cfg < prev    next >
Encoding:
Text File  |  2003-05-17  |  282.2 KB  |  6,997 lines

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