###As far as all queries returned OK, result is YES
alter_add_constraint=yes # Alter table add constraint
###< alter table crash_q add constraint c2 check(a > b)
###> OK
###
###As far as all queries returned OK, result is YES
alter_add_foreign_key=no # Alter table add foreign key
###< alter table crash_q add constraint f1 foreign key(c1)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
###< references crash_q1(c1)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'references crash_q1(c1)' at line 1
###
###As far as some queries didnt return OK, result is NO
alter_add_multi_col=yes # Alter table add many columns
###< alter table crash_q add (f integer,g integer)
###> OK
alter_add_primary_key=with constraint # Alter table add primary key
###< alter table crash_q1 add constraint p1 primary key(c1)
###> OK
alter_add_unique=yes # Alter table add unique
###< alter table crash_q add constraint u1 unique(c1)
###> OK
###
###As far as all queries returned OK, result is YES
alter_alter_col=yes # Alter table alter column default
###< alter table crash_q alter b set default 10
###> OK
###
###As far as all queries returned OK, result is YES
alter_change_col=yes # Alter table change column
###< alter table crash_q change a e char(50)
###> OK
###
###As far as all queries returned OK, result is YES
alter_drop_col=yes # Alter table drop column
###< alter table crash_q drop column b
###> OK
alter_drop_constraint=no # Alter table drop constraint
###< alter table crash_q drop constraint c2
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'constraint c2' at line 1
###
###< alter table crash_q drop constraint c2 restrict
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'constraint c2 restrict' at line 1
alter_drop_foreign_key=with drop foreign key # Alter table drop foreign key
###< alter table crash_q drop constraint f1
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'constraint f1' at line 1
###
###< alter table crash_q drop constraint f1 restrict
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'constraint f1 restrict' at line 1
###
###< alter table crash_q drop foreign key f1
###> OK
alter_drop_primary_key=drop primary key # Alter table drop primary key
###< alter table crash_q1 drop constraint p1 restrict
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'constraint p1 restrict' at line 1
###
###< alter table crash_q1 drop primary key
###> OK
alter_drop_unique=with drop key # Alter table drop unique
###< alter table crash_q drop constraint u1
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'constraint u1' at line 1
###
###< alter table crash_q drop constraint u1 restrict
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'constraint u1 restrict' at line 1
###As far as all queries returned OK, result is YES
comment_--=yes # -- as comment (ANSI)
###< select * from crash_me -- Testing of comments
###> OK
###
###As far as all queries returned OK, result is YES
comment_/**/=yes # /* */ as comment
###< select * from crash_me /* Testing of comments */
###> OK
###
###As far as all queries returned OK, result is YES
comment_//=no # // as comment
###< select * from crash_me // Testing of comments
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '// Testing of comments' at line 1
###
###As far as some queries didnt return OK, result is NO
compute=no # Compute
###< select a from crash_me order by a compute sum(a) by a
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'compute sum(a) by a' at line 1
###
###As far as some queries didnt return OK, result is NO
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(1+1))' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
create_if_not_exists=yes # create table if not exists
###< create table crash_q (q integer)
###> OK
###< create table if not exists crash_q (q integer)
###> OK
###
###As far as all queries returned OK, result is YES
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'schema crash_schema create table crash_q (a int) create table c
###< drop schema crash_schema cascade
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'schema crash_schema cascade' at line 1
###
###As far as some queries didnt return OK, result is NO
create_table_select=yes # create table from select
###< create table crash_q SELECT * from crash_me
###> OK
cross_join=yes # cross join (same as from a,b)
###< select crash_me.a from crash_me cross join crash_me3
###> OK
###
###As far as all queries returned OK, result is YES
date_as_string=yes # String functions on date columns
###< create table crash_me2 (a date not null)
###> OK
###< insert into crash_me2 values ('1998-03-03')
###> OK
###
###<select left(a,4) from crash_me2
###>1998
###
###< drop table crash_me2
###> OK
date_format_EUR=error # Supports DD.MM.YYYY (EUR) format
###< insert into crash_me_d(a) values ('16.08.1963')
###> OK
###
###<select a from crash_me_d
###>0000-00-00
###We expected '1963-08-16' but got '0000-00-00'
###
###< delete from crash_me_d
###> OK
date_format_EUR_with_date=error # Supports DATE 'DD.MM.YYYY' (EUR) format
###< insert into crash_me_d(a) values (DATE '16.08.1963')
###> OK
###
###<select a from crash_me_d
###>0000-00-00
###We expected '1963-08-16' but got '0000-00-00'
###
###< delete from crash_me_d
###> OK
date_format_ISO=yes # Supports YYYY-MM-DD (ISO) format
###< insert into crash_me_d(a) values ('1963-08-16')
###> OK
###
###<select a from crash_me_d
###>1963-08-16
###
###< delete from crash_me_d
###> OK
date_format_ISO_with_date=yes # Supports DATE 'YYYY-MM-DD' (ISO) format
###< insert into crash_me_d(a) values (DATE '1963-08-16')
###> OK
###
###<select a from crash_me_d
###>1963-08-16
###
###< delete from crash_me_d
###> OK
date_format_USA=error # Supports MM/DD/YYYY format
###< insert into crash_me_d(a) values ('08/16/1963')
###> OK
###
###<select a from crash_me_d
###>0000-00-00
###We expected '1963-08-16' but got '0000-00-00'
###
###< delete from crash_me_d
###> OK
date_format_USA_with_date=error # Supports DATE 'MM/DD/YYYY' format
###< insert into crash_me_d(a) values (DATE '08/16/1963')
###> OK
###
###<select a from crash_me_d
###>0000-00-00
###We expected '1963-08-16' but got '0000-00-00'
###
###< delete from crash_me_d
###> OK
date_format_YYYYMMDD=yes # Supports YYYYMMDD format
###< insert into crash_me_d(a) values ('19630816')
###> OK
###
###<select a from crash_me_d
###>1963-08-16
###
###< delete from crash_me_d
###> OK
date_format_YYYYMMDD_with_date=yes # Supports DATE 'YYYYMMDD' format
###< insert into crash_me_d(a) values (DATE '19630816')
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'domain crash_d as varchar(10) default 'Empty' check (value <> '
###< create table crash_q(a crash_d, b int)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'crash_d, b int)' at line 1
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'domain crash_d' at line 1
###
###As far as some queries didnt return OK, result is NO
dont_require_cast_to_float=yes # No need to cast from integer to float
###< select exp(1)
###> OK
###
###As far as all queries returned OK, result is YES
double_quotes=yes # Double '' as ' in strings
###
###<select 'Walker''s'
###>Walker's
drop_if_exists=yes # drop table if exists
###< create table crash_q (q integer)
###> OK
###< drop table if exists crash_q
###> OK
###
###As far as all queries returned OK, result is YES
drop_index=with 'ON' # drop index
###< drop index crash_q
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
###
###< drop index crash_q from crash_me
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'from crash_me' at line 1
###
###< drop index crash_q on crash_me
###> OK
drop_requires_cascade=no # drop table require cascade/restrict
drop_restrict=yes # drop table with cascade/restrict
###< create table crash_q (a int)
###> OK
###< drop table crash_q restrict
###> OK
###
###As far as all queries returned OK, result is YES
end_colon=yes # allows end ';'
###< select * from crash_me;
###> OK
###
###As far as all queries returned OK, result is YES
except=no # except
###< select * from crash_me except select * from crash_me3
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'select * from crash_me3' at line 1
###
###As far as some queries didnt return OK, result is NO
except_all=no # except all
###< select * from crash_me except all select * from crash_me3
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'all select * from crash_me3' at line 1
###
###As far as some queries didnt return OK, result is NO
except_all_incompat=no # except all (incompatible lists)
###< select * from crash_me except all select * from crash_me2
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'all select * from crash_me2' at line 1
###
###As far as some queries didnt return OK, result is NO
except_incompat=no # except (incompatible lists)
###< select * from crash_me except select * from crash_me2
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'select * from crash_me2' at line 1
###
###As far as some queries didnt return OK, result is NO
field_name_case=yes # case independent field names
###< create table crash_q (q integer)
###> OK
###< insert into crash_q(Q) values (1)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
float_int_expr=yes # mixing of integer and float in expression
###< select 1+1.0
###> OK
###
###As far as all queries returned OK, result is YES
foreign_key=syntax only # foreign keys
###< create table crash_me_qf (a integer not null,primary key (a))
###> OK
###
###< create table crash_me_qf2 (a integer not null,foreign key (a) references crash_me_qf (a))
###< select crash_me.a from crash_me full join crash_me2 ON
### crash_me.a=crash_me2.a
###> execute error:Unknown table 'crash_me' in field list
###
###As far as some queries didnt return OK, result is NO
func_extra_!=yes # Function NOT as '!' in SELECT
###
###<select ! 1
###>0
func_extra_%=yes # Function MOD as %
###
###<select 10%7
###>3
func_extra_&=yes # Function & (bitwise and)
###
###<select 5 & 3
###>1
func_extra_&&=yes # Function AND as '&&'
###
###<select 1=1 && 2=2
###>1
func_extra_<>=yes # Function <> in SELECT
###
###<select 1<>1
###>0
func_extra_==yes # Function =
###
###<select (1=1)
###>1
func_extra_add_months=no # Function ADD_MONTHS
###
###<select add_months('1997-01-01',1) from crash_me_d
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '('1997-01-01',1) from crash_me_d' at line 1
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '('A<>',2)' at line 1
func_extra_and_or=yes # Function AND and OR in SELECT
###
###<select 1=1 AND 2=2
###>1
func_extra_ascii_char=no # Function ASCII_CHAR
###
###<select ASCII_CHAR(65)
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(65)' at line 1
func_extra_ascii_code=no # Function ASCII_CODE
###
###<select ASCII_CODE('A')
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '('A')' at line 1
func_extra_ascii_string=error # Function ASCII in string cast
###
###<select ascii('a')
###>97
###We expected 'a' but got '97'
func_extra_atn2=no # Function ATN2
###
###<select atn2(1,0)
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(1,0)' at line 1
func_extra_auto_num2string=yes # Function automatic num->string convert
###
###<select concat('a',2)
###>a2
func_extra_auto_string2num=yes # Function automatic string->num convert
###
###<select '1'+2
###>3
func_extra_between=yes # Function BETWEEN in SELECT
###
###<select 5 between 4 and 6
###>1
func_extra_binary_shifts=yes # Function << and >> (bitwise shifts)
###
###<select (1 << 4) >> 2
###>4
func_extra_bit_count=yes # Function BIT_COUNT
###
###<select bit_count(5)
###>2
func_extra_ceil=yes # Function CEIL
###
###<select ceil(-4.5)
###>-4
func_extra_char_date=no # Function CHAR (conversation date)
###
###<select CHAR(a,EUR) from crash_me_d
###> execute failed:Unknown column 'EUR' in 'field list'
func_extra_charindex=no # Function CHARINDEX
###
###<select charindex('a','crash')
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '('a','crash')' at line 1
func_extra_chr=no # Function CHR
###
###<select CHR(65)
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(65)' at line 1
func_extra_chr_str=no # Function CHR (any type to string)
###
###<select CHR(67)
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(67)' at line 1
func_extra_concat_as_+=error # Function concatenation with +
###
###<select 'abc' + 'def'
###>0
###We expected 'abcdef' but got '0'
func_extra_concat_list=yes # Function CONCAT(list)
###
###<select concat('a','b','c','d')
###>abcd
func_extra_convert=no # Function CONVERT
###
###<select convert(CHAR,5)
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '5)' at line 1
func_extra_cosh=no # Function COSH
###
###<select cosh(0)
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(0)' at line 1
###<select date_format('1997-01-02 03:04:05','M W D Y y m d h i s w') from crash_me_d
###>M W D Y y m d h i s w
func_extra_dateadd=no # Function DATEADD
###
###<select dateadd(day,3,'1997-11-30') from crash_me_d
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(day,3,'1997-11-30') from crash_me_d' at line 1
func_extra_datediff=no # Function DATEDIFF
###
###<select datediff(month,'Oct 21 1997','Nov 30 1997') from crash_me_d
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ''Nov 30 1997') from crash_me_d' at line 1
func_extra_datediff2arg=yes # Function DATEDIFF (2 arg)
###<select datename(month,'Nov 30 1997') from crash_me_d
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(month,'Nov 30 1997') from crash_me_d' at line 1
func_extra_datepart=no # Function DATEPART
###
###<select datepart(month,'July 20 1997') from crash_me_d
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(month,'July 20 1997') from crash_me_d' at line 1
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '1,'S-103',2,'Leopard',3)' at line 1
func_extra_ebcdic_string=no # Function EBCDIC in string cast
###
###<select ebcdic('a')
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '('a')' at line 1
###> 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
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(222.6666,10,2)' at line 1
func_extra_float=no # Function FLOAT
###
###<select float(6666.66,4)
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'float(6666.66,4)' at line 1
func_extra_format=yes # Function FORMAT
###
###<select format(1234.5555,2)
###>1,234.56
func_extra_from_days=yes # Function FROM_DAYS
###
###<select from_days(729024) from crash_me_d
###>1996-01-01
func_extra_from_unixtime=yes # Function FROM_UNIXTIME
###
###<select from_unixtime(0) from crash_me_d
###>1970-01-01 02:00:00
func_extra_getdate=no # Function GETDATE
###
###<select getdate()
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '()' at line 1
func_extra_greatest=yes # Function GREATEST
###
###<select greatest('HARRY','HARRIOT','HAROLD')
###>HARRY
func_extra_hex=yes # Function HEX
###
###<select HEX('A')
###>41
func_extra_if=yes # Function IF
###
###<select if(5,6,7)
###>6
func_extra_in_num=yes # Function IN on numbers in SELECT
###
###<select 2 in (3,2,5,9,5,1)
###>1
func_extra_in_str=yes # Function IN on strings in SELECT
###
###<select 'monty' in ('david','monty','allan')
###>1
func_extra_index=no # Function INDEX
###
###<select index('abcdefg','cd',1,1)
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'index('abcdefg','cd',1,1)' at line 1
func_extra_initcap=no # Function INITCAP
###
###<select initcap('the soap')
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '('the soap')' at line 1
func_extra_instr=yes # Function LOCATE as INSTR
###
###<select instr('hello','ll')
###>3
func_extra_instr_oracle=no # Function INSTR (Oracle syntax)
###
###<select INSTR('CORPORATE FLOOR','OR',3,2)
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '3,2)' at line 1
func_extra_instrb=no # Function INSTRB
###
###<select INSTRB('CORPORATE FLOOR','OR',5,2)
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '('CORPORATE FLOOR','OR',5,2)' at line 1
func_extra_last_insert_id=yes # Function LAST_INSERT_ID
###
###<select last_insert_id()
###>0
func_extra_least=yes # Function LEAST
###
###<select least('HARRY','HARRIOT','HAROLD')
###>HAROLD
func_extra_length=error # Function LENGTH
###
###<select length(1)
###>1
###We expected '2' but got '1'
func_extra_lengthb=no # Function LENGTHB
###
###<select lengthb('CANDIDE')
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '('CANDIDE')' at line 1
func_extra_lfill3arg=no # Function LFILL (3 arg)
###
###<select lfill('abcd','.',6)
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '('abcd','.',6)' at line 1
func_extra_like=yes # Function LIKE in SELECT
###
###<select 'a' like 'a%'
###>1
func_extra_like_escape=yes # Function LIKE ESCAPE in SELECT
###
###<select '%' like 'a%' escape 'a'
###>1
func_extra_ln=yes # Function LN
###
###<select ln(95)
###>4.553877
func_extra_log(m_n)=yes # Function LOG(m,n)
###
###<select log(10,100)
###>2.000000
func_extra_logn=no # Function LOGN
###
###<select logn(2)
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(2)' at line 1
func_extra_lpad=yes # Function LPAD
###
###<select lpad('hi',4,'??')
###>??hi
func_extra_ltrim2arg=no # Function LTRIM (2 arg)
###
###<select ltrim('..abcd..','.')
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ''.')' at line 1
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '('A<>')' at line 1
func_extra_mdy=no # Function MDY
###
###<select mdy(7,1,1998) from crash_me_d
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(7,1,1998) from crash_me_d' at line 1
func_extra_months_between=no # Function MONTHS_BETWEEN
###
###<select months_between('1997-02-02','1997-01-01') from crash_me_d
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '('1997-02-02','1997-01-01') from crash_me_d' at line 1
func_extra_noround=no # Function NOROUND
###< select noround(22.6)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(22.6)' at line 1
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(22.6)' at line 1
###< select noround(22.6)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(22.6)' at line 1
func_extra_not_between=yes # Function NOT BETWEEN in SELECT
###
###<select 5 not between 4 and 6
###>0
func_extra_not_like=yes # Function NOT LIKE in SELECT
###
###<select 'a' not like 'a%'
###>0
func_extra_num=no # Function NUM
###
###<select NUM('2123')
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '('2123')' at line 1
func_extra_odbc_convert=no # Function ODBC CONVERT
###> 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
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '('ABCDEFG',3,2,'1234')' at line 1
func_extra_patindex=no # Function PATINDEX
###
###<select patindex('%a%','crash')
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '('%a%','crash')' at line 1
func_extra_period_add=yes # Function PERIOD_ADD
###
###<select period_add(9602,-12) from crash_me_d
###>199502
func_extra_period_diff=yes # Function PERIOD_DIFF
###
###<select period_diff(199505,199404) from crash_me_d
###>13
func_extra_pow=yes # Function POW
###
###<select pow(3,2)
###>9.000000
func_extra_range=no # Function RANGE
###
###<select range(a)
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(a)' at line 1
func_extra_regexp=yes # Function REGEXP in SELECT
###
###<select 'a' regexp '^(a|b)*$'
###>1
func_extra_replace2arg=no # Function REPLACE (2 arg)
###
###<select replace('AbCd','bC')
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1
func_extra_replicate=no # Function REPLICATE
###
###<select replicate('a',5)
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '('a',5)' at line 1
func_extra_reverse=yes # Function REVERSE
###
###<select reverse('abcd')
###>dcba
func_extra_rfill3arg=no # Function RFILL (3 arg)
###
###<select rfill('abcd','.',6)
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '('abcd','.',6)' at line 1
func_extra_root=no # Function ROOT
###
###<select root(4)
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(4)' at line 1
func_extra_round1=yes # Function ROUND(1 arg)
###
###<select round(5.63)
###>6
func_extra_rpad=yes # Function RPAD
###
###<select rpad('hi',4,'??')
###>hi??
func_extra_rpad4arg=no # Function RPAD (4 arg)
###
###<select rpad('abcd',2,'+-',8)
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '8)' at line 1
func_extra_rtrim2arg=no # Function RTRIM (2 arg)
###
###<select rtrim('..abcd..','.')
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ''.')' at line 1
func_extra_sec_to_time=yes # Function SEC_TO_TIME
###
###<select sec_to_time(5001)
###>01:23:21
func_extra_sinh=no # Function SINH
###
###<select sinh(1)
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(1)' at line 1
func_extra_str=no # Function STR
###
###<select str(123.45,5,1)
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(123.45,5,1)' at line 1
func_extra_strcmp=yes # Function STRCMP
###
###<select strcmp('abc','adc')
###>-1
func_extra_stuff=no # Function STUFF
###
###<select stuff('abc',2,3,'xyz')
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '('abc',2,3,'xyz')' at line 1
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '('ABCDEFG',5,4.2)' at line 1
func_extra_substring_index=yes # Function SUBSTRING_INDEX
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '('ABCDEFG',3)' at line 1
func_extra_tanh=no # Function TANH
###
###<select tanh(1)
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(1)' at line 1
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '('abc','bc','de')' at line 1
func_extra_trim1arg=yes # Function TRIM (1 arg)
###
###<select trim(' abcd ')
###>abcd
func_extra_trim2arg=no # Function TRIM (2 arg)
###
###<select trim('..abcd..','.')
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ''.')' at line 1
func_extra_trim_many_char=error # Function TRIM; Many char extension
###
###<select trim(':!' FROM ':abc!')
###>:abc!
###We expected 'abc' but got ':abc!'
func_extra_trim_substring=yes # Function TRIM; Substring extension
###
###<select trim('cb' FROM 'abccb')
###>abc
func_extra_trunc=no # Function TRUNC
###
###<select trunc(18.18,-1)
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(18.18,-1)' at line 1
func_extra_trunc1arg=no # Function TRUNC (1 arg)
###
###<select trunc(222.6)
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(222.6)' at line 1
func_extra_uid=no # Function UID
###
###<select uid
###> execute failed:Unknown column 'uid' in 'field list'
func_extra_unix_timestamp=yes # Function UNIX_TIMESTAMP
###> execute failed:Unknown column 'userenv' in 'field list'
func_extra_value=no # Function VALUE
###
###<select value(NULL,'WALRUS')
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(NULL,'WALRUS')' at line 1
func_extra_~*=no # Function ~* (case insensitive compare)
###
###<select 'hi' ~* 'HI'
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '~* 'HI'' at line 1
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '('abc','abe')' at line 1
###
###<select {fn difference('abc','abe') }
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '('abc','abe') }' at line 1
func_odbc_exp=yes # Function EXP
###
###<select exp(1.0)
###>2.718282
func_odbc_floor=yes # Function FLOOR
###
###<select floor(2.5)
###>2
func_odbc_fn_left=yes # Function ODBC syntax LEFT & RIGHT
###<select a from crash_me where 2 in (3,2,5,9,5,1)
###>1
func_where_like=yes # Function LIKE
###
###<select a from crash_me where b like 'a%'
###>1
func_where_like_escape=yes # Function LIKE ESCAPE
###
###<select a from crash_me where b like '%' escape 'a'
###>1
func_where_match=no # Function MATCH
###
###<select a from crash_me where 1 match (select a from crash_me)
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'match (select a from crash_me)' at line 1
func_where_match_unique=no # Function MATCH UNIQUE
###
###<select a from crash_me where 1 match unique (select a from crash_me)
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'match unique (select a from crash_me)' at line 1
func_where_matches=no # Function MATCHES
###
###<select a from crash_me where b matcjhes 'a*'
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'matcjhes 'a*'' at line 1
func_where_not_between=yes # Function NOT BETWEEN
###
###<select a from crash_me where 7 not between 4 and 6
###<select a from crash_me where not unique (select * from crash_me where a = 2)
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'unique (select * from crash_me where a = 2)' at line 1
func_where_unique=no # Function UNIQUE
###
###<select a from crash_me where unique (select * from crash_me)
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'unique (select * from crash_me)' at line 1
functions=yes # Functions
###< select 1+1
###> OK
###
###As far as all queries returned OK, result is YES
group_by=yes # Group by
###< select a from crash_me group by a
###> OK
###
###As far as all queries returned OK, result is YES
group_by_alias=yes # Group by alias
###< select a as ab from crash_me group by ab
###> OK
###
###As far as all queries returned OK, result is YES
group_by_null=yes # Group on column with null values
###< create table crash_q (s char(10))
###> OK
###< insert into crash_q values(null)
###> OK
###< insert into crash_q values(null)
###> OK
###
###<select count(*),s from crash_q group by s
###>2
###
###< drop table crash_q
###> OK
group_by_position=yes # Group by position
###< select a from crash_me group by 1
###> OK
###
###As far as all queries returned OK, result is YES
group_distinct_functions=yes # Group functions with distinct
###< select count(distinct a) from crash_me
###> OK
###
###As far as all queries returned OK, result is YES
group_func_extra_bit_and=yes # Group function BIT_AND
###
###<select bit_and(a),a from crash_me group by a
###>1
group_func_extra_bit_or=yes # Group function BIT_OR
###
###<select bit_or(a),a from crash_me group by a
###>1
group_func_extra_count_distinct_list=yes # Group function COUNT(DISTINCT expr,expr,...)
###
###<select count(distinct a,b),a from crash_me group by a
###>1
group_func_extra_std=yes # Group function STD
###
###<select std(a),a from crash_me group by a
###>0.0000
group_func_extra_stddev=yes # Group function STDDEV
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(a),a from crash_me group by a' at line 1
group_func_sql_avg=yes # Group function AVG
###
###<select avg(a),a from crash_me group by a
###>1.0000
group_func_sql_count_*=yes # Group function COUNT (*)
###
###<select count(*),a from crash_me group by a
###>1
group_func_sql_count_column=yes # Group function COUNT column name
###
###<select count(a),a from crash_me group by a
###>1
group_func_sql_count_distinct=yes # Group function COUNT(DISTINCT expr)
###
###<select count(distinct a),a from crash_me group by a
###>1
group_func_sql_every=no # Group function EVERY
###
###<select every(a),a from crash_me group by a
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(a),a from crash_me group by a' at line 1
group_func_sql_max=yes # Group function MAX on numbers
###
###<select max(a),a from crash_me group by a
###>1
group_func_sql_max_str=yes # Group function MAX on strings
###
###<select max(b),a from crash_me group by a
###>a
group_func_sql_min=yes # Group function MIN on numbers
###
###<select min(a),a from crash_me group by a
###>1
group_func_sql_min_str=yes # Group function MIN on strings
###
###<select min(b),a from crash_me group by a
###>a
group_func_sql_some=no # Group function SOME
###
###<select some(a),a from crash_me group by a
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(a),a from crash_me group by a' at line 1
group_func_sql_sum=yes # Group function SUM
###
###<select sum(a),a from crash_me group by a
###>1
group_functions=yes # Group functions
###< select count(*) from crash_me
###> OK
###
###As far as all queries returned OK, result is YES
group_many_distinct_functions=yes # Group functions with several distinct
###< select count(distinct a), count(distinct b) from crash_me
###> OK
###
###As far as all queries returned OK, result is YES
group_on_unused=yes # Group on unused column
###< select count(*) from crash_me group by a
###> OK
###
###As far as all queries returned OK, result is YES
###<select a from crash_me group by a having a > 0
###>1
###
###<select a from crash_me group by a having a < 0
###> didn't return any result:
having_with_alias=yes # Having on alias
###< select a as ab from crash_me group by a having ab > 0
###> OK
###
###As far as all queries returned OK, result is YES
having_with_group=yes # Having with group function
###< select a from crash_me group by a having count(*) = 1
###> OK
###
###As far as all queries returned OK, result is YES
hex_numbers=yes # hex numbers (0x41)
###< select 0x41
###> OK
###
###As far as all queries returned OK, result is YES
hex_strings=yes # hex strings (x'1ace')
###< select x'1ace'
###> OK
###
###As far as all queries returned OK, result is YES
ignore_end_space=yes # Ignore end space in compare
###
###<select b from crash_me where b = 'a '
###>a
index_in_create=yes # index in create table
###< create table crash_q (q integer not null,index (q))
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
index_namespace=yes # different namespace for index
###< create index crash_me on crash_me (b)
###> OK
###< drop index crash_me on crash_me
###> OK
###
###As far as all queries returned OK, result is YES
index_parts=yes # index on column part (extension)
###< create index crash_q on crash_me (b(5))
###> OK
###< drop index crash_q on crash_me
###> OK
###
###As far as all queries returned OK, result is YES
inner_join=yes # inner join
###< select crash_me.a from crash_me inner join crash_me2 ON crash_me.a=crash_me2.a
###> OK
###
###As far as all queries returned OK, result is YES
insert_default_values=no # INSERT DEFAULT VALUES
###< create table crash_me_q (a int)
###> OK
###< insert into crash_me_q DEFAULT VALUES
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DEFAULT VALUES' at line 1
###< drop table crash_me_q
###> OK
###
###As far as some queries didnt return OK, result is NO
insert_empty_string=yes # insert empty string
###< create table crash_q (a char(10) not null,b char(10))
###> OK
###< insert into crash_q values ('','')
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
insert_multi_value=yes # INSERT with Value lists
###< create table crash_q (s char(10))
###> OK
###< insert into crash_q values ('a'),('b')
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
insert_select=yes # insert INTO ... SELECT ...
###< create table crash_q (a int)
###> OK
###< insert into crash_q (a) SELECT crash_me.a from crash_me
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
insert_with_default=yes # INSERT with DEFAULT
###< create table crash_me_q (a int)
###> OK
###< insert into crash_me_q (a) values (DEFAULT)
###> OK
###< drop table crash_me_q
###> OK
###
###As far as all queries returned OK, result is YES
insert_with_empty_value_list=no # INSERT with empty value list
###< create table crash_me_q (a int)
###> OK
###< insert into crash_me_q (a) values ()
###> execute error:Column count doesn't match value count at row 1
###< drop table crash_me_q
###> OK
###
###As far as some queries didnt return OK, result is NO
insert_with_set=yes # INSERT with set syntax
###< create table crash_q (a integer)
###> OK
###< insert into crash_q SET a=1
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
intersect=no # intersect
###< select * from crash_me intersect select * from crash_me3
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'select * from crash_me3' at line 1
###
###As far as some queries didnt return OK, result is NO
intersect_all=no # intersect all
###< select * from crash_me intersect all select * from crash_me3
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'all select * from crash_me3' at line 1
###
###As far as some queries didnt return OK, result is NO
intersect_all_incompat=no # intersect all (incompatible lists)
###< select * from crash_me intersect all select * from crash_me2
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'all select * from crash_me2' at line 1
###
###As far as some queries didnt return OK, result is NO
###< select * from crash_me intersect select * from crash_me2
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'select * from crash_me2' at line 1
###
###As far as some queries didnt return OK, result is NO
###< select * from crash_me minus select * from crash_me3
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'select * from crash_me3' at line 1
###
###As far as some queries didnt return OK, result is NO
minus_incompat=no # minus (incompatible lists)
###< select * from crash_me minus select * from crash_me2
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'select * from crash_me2' at line 1
###
###As far as some queries didnt return OK, result is NO
minus_neg=yes # Calculate 1--1
###
###<select a--1 from crash_me
###>2
multi_drop=yes # many tables to drop table
###< create table crash_q (a int)
###> OK
###< create table crash_q2 (a int)
###> OK
###< drop table crash_q,crash_q2
###> OK
###
###As far as all queries returned OK, result is YES
multi_null_in_unique=yes # null in unique index
###< create table crash_q (q integer, x integer,unique (q))
###> OK
###< insert into crash_q(x) values(1)
###> OK
###< insert into crash_q(x) values(2)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
multi_strings=yes # Multiple line strings
###
###<select a from crash_me where b < 'a'
###'b'
###>1
multi_table_delete=yes # DELETE FROM table1,table2...
###< create table crash_q (a integer,b char(10))
###> OK
###< insert into crash_q values(1,'c')
###> OK
###< delete crash_q.* from crash_q,crash_me where crash_q.a=crash_me.a
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
multi_table_update=yes # Update with many tables
###< create table crash_q (a integer,b char(10))
###> OK
###< insert into crash_q values(1,'c')
###> OK
###< update crash_q left join crash_me on crash_q.a=crash_me.a set crash_q.b=crash_me.b
###> OK
###
###<select b from crash_q
###>a
###
###< drop table crash_q
###> OK
natural_join=yes # natural join
###< select * from crash_me natural join crash_me3
###> OK
###
###As far as all queries returned OK, result is YES
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'in a1 int, in b1 int) returns int language sql deterministic co
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(2,4))' at line 1
###< select a,crash_func(a,2) from crash_q
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(a,2) from crash_q' at line 1
###As far as some queries didnt return OK, result is NO
psm_modules=no # PSM modules (ANSI SQL)
###< create table crash_q (a int,b int)
###> OK
###< create module crash_m declare procedure crash_proc(in a1 int, in b1 int) language sql modifies sql data begin declare c1 int; set c1 = a1 + b1; insert into crash_q(a,b) values (a1,c1); end; declare procedure crash_proc2(INOUT a int, in b int) contains sql set a = b + 10; end module
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'module crash_m declare procedure crash_proc(in a1 int, in b1 in
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'module crash_m cascade' at line 1
###< drop table crash_q cascade
###> OK
###
###As far as some queries didnt return OK, result is NO
psm_procedures=no # PSM procedures (ANSI SQL)
###< create table crash_q (a int,b int)
###> OK
###< create procedure crash_proc(in a1 int, in b1 int) language sql modifies sql data begin declare c1 int; set c1 = a1 + b1; insert into crash_q(a,b) values (a1,c1); end
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'sql data begin declare c1 int; set c1 = a1 + b1; insert into cr
###As far as some queries didnt return OK, result is NO
psm_trigger=no # Triggers (ANSI SQL)
###< create table crash_q (a int ,b int)
###> OK
###< create trigger crash_trigger after insert on crash_q referencing new table as new_a when (localtime > time '18:00:00') begin atomic end
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'trigger crash_trigger after insert on crash_q referencing new t
###< insert into crash_q values(1,2)
###> OK
###< drop trigger crash_trigger
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'trigger crash_trigger' at line 1
###< drop table crash_q
###> OK
###
###As far as some queries didnt return OK, result is NO
query_size=1048574 # query size
quote_ident_with_"=error # " as identifier quote (ANSI SQL)
###
###<select "A" from crash_me
###>A
###We expected '1' but got 'A'
quote_ident_with_[=no # [] as identifier quote
###
###<select [A] from crash_me
###> execute failed:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '[A] from crash_me' at line 1
quote_ident_with_`=yes # ` as identifier quote
###
###<select `A` from crash_me
###>1
quote_ident_with_dbl_"=no # Double "" in identifiers as "
###< create table crash_me1 ("abc""d" integer)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '"abc""d" integer)' at line 1
###< drop table crash_me1
###> execute error:Unknown table 'crash_me1'
###
###As far as some queries didnt return OK, result is NO
quote_with_"=yes # Allows ' and " as string markers
###< select a from crash_me where b<"c"
###> OK
###
###As far as all queries returned OK, result is YES
###< create table crash_me10 (ACTION int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_add=yes # Keyword ADD
###< create table crash_me10 (ADD int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ADD int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_after=no # Keyword AFTER
###< create table crash_me10 (AFTER int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_alias=no # Keyword ALIAS
###< create table crash_me10 (ALIAS int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_all=yes # Keyword ALL
###< create table crash_me10 (ALL int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ALL int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (ALLOCATE int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_alter=yes # Keyword ALTER
###< create table crash_me10 (ALTER int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ALTER int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_and=yes # Keyword AND
###< create table crash_me10 (AND int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'AND int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_any=no # Keyword ANY
###< create table crash_me10 (ANY int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_are=no # Keyword ARE
###< create table crash_me10 (ARE int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_as=yes # Keyword AS
###< create table crash_me10 (AS int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'AS int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_asc=yes # Keyword ASC
###< create table crash_me10 (ASC int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ASC int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'BEFORE int not null)' at line 1
###< create table crash_me10 (BOOLEAN int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_both=yes # Keyword BOTH
###< create table crash_me10 (BOTH int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'BOTH int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (BREADTH int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_by=yes # Keyword BY
###< create table crash_me10 (BY int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'BY int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'CALL int not null)' at line 1
###< create table crash_me10 (CASCADE int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'CASCADE int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (CASCADED int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_case=yes # Keyword CASE
###< create table crash_me10 (CASE int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'CASE int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_cast=no # Keyword CAST
###< create table crash_me10 (CAST int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
###< create table crash_me10 (CATALOG int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_char=yes # Keyword CHAR
###< create table crash_me10 (CHAR int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'CHAR int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_character=yes # Keyword CHARACTER
###< create table crash_me10 (CHARACTER int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'CHARACTER int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_close=no # Keyword CLOSE
###< create table crash_me10 (CLOSE int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'COLLATE int not null)' at line 1
###< create table crash_me10 (COLUMN int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'COLUMN int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'CONNECTION int not null)' at line 1
###< create table crash_me10 (CONSTRAINT int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'CONTINUE int not null)' at line 1
###< create table crash_me10 (CREATE int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'CREATE int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'CROSS int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_current=no # Keyword CURRENT
###< create table crash_me10 (CURRENT int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
###< create table crash_me10 (CURRENT_DATE int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'CURRENT_DATE int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (CURRENT_TIME int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'CURRENT_TIME int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (CURRENT_TIMESTAMP int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'CURRENT_TIMESTAMP int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'CURSOR int not null)' at line 1
###< create table crash_me10 (DEALLOCATE int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_dec=yes # Keyword DEC
###< create table crash_me10 (DEC int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DEC int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (DECIMAL int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DECIMAL int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DECLARE int not null)' at line 1
###< create table crash_me10 (DEFAULT int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DEFAULT int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (DELETE int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DELETE int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_depth=no # Keyword DEPTH
###< create table crash_me10 (DEPTH int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_desc=yes # Keyword DESC
###< create table crash_me10 (DESC int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DESC int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (DESCRIBE int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DESCRIBE int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (DISTINCT int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DISTINCT int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (DOUBLE int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DOUBLE int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_drop=yes # Keyword DROP
###< create table crash_me10 (DROP int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DROP int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_each=no # Keyword EACH
###< create table crash_me10 (EACH int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_else=yes # Keyword ELSE
###< create table crash_me10 (ELSE int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ELSE int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ELSEIF int not null)' at line 1
###< create table crash_me10 (END-EXEC int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '-EXEC int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'FALSE int not null)' at line 1
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'FETCH int not null)' at line 1
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'FLOAT int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_for=yes # Keyword FOR
###< create table crash_me10 (FOR int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'FOR int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (FOREIGN int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'FOUND int not null)' at line 1
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'FROM int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_full=no # Keyword FULL
###< create table crash_me10 (FULL int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_general=no # Keyword GENERAL
###< create table crash_me10 (GENERAL int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_get=no # Keyword GET
###< create table crash_me10 (GET int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_global=no # Keyword GLOBAL
###< create table crash_me10 (GLOBAL int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_go=no # Keyword GO
###< create table crash_me10 (GO int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_goto=no # Keyword GOTO
###< create table crash_me10 (GOTO int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_grant=yes # Keyword GRANT
###< create table crash_me10 (GRANT int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'GRANT int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_group=yes # Keyword GROUP
###< create table crash_me10 (GROUP int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'GROUP int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_having=yes # Keyword HAVING
###< create table crash_me10 (HAVING int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'HAVING int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_hour=no # Keyword HOUR
###< create table crash_me10 (HOUR int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
###< create table crash_me10 (IDENTITY int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_if=yes # Keyword IF
###< create table crash_me10 (IF int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'IF int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (IGNORE int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'IGNORE int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (IMMEDIATE int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_in=yes # Keyword IN
###< create table crash_me10 (IN int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'IN int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'INNER int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_input=no # Keyword INPUT
###< create table crash_me10 (INPUT int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
###< create table crash_me10 (INSERT int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'INSERT int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_int=yes # Keyword INT
###< create table crash_me10 (INT int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'INT int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (INTEGER int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'INTEGER int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (INTERVAL int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'INTERVAL int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_into=yes # Keyword INTO
###< create table crash_me10 (INTO int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'INTO int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_is=yes # Keyword IS
###< create table crash_me10 (IS int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'IS int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (ISOLATION int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_join=yes # Keyword JOIN
###< create table crash_me10 (JOIN int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'JOIN int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_key=yes # Keyword KEY
###< create table crash_me10 (KEY int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_language=no # Keyword LANGUAGE
###< create table crash_me10 (LANGUAGE int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_last=no # Keyword LAST
###< create table crash_me10 (LAST int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_leading=yes # Keyword LEADING
###< create table crash_me10 (LEADING int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'LEADING int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'LEAVE int not null)' at line 1
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'LEFT int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_less=no # Keyword LESS
###< create table crash_me10 (LESS int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_level=no # Keyword LEVEL
###< create table crash_me10 (LEVEL int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
###> execute error:You 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
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'LIMIT int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_local=no # Keyword LOCAL
###< create table crash_me10 (LOCAL int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'LOOP int not null)' at line 1
reserved_word_ansi-92/99_match=yes # Keyword MATCH
###< create table crash_me10 (MATCH int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'MATCH int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (NATURAL int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'NATURAL int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_nchar=no # Keyword NCHAR
###< create table crash_me10 (NCHAR int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_new=no # Keyword NEW
###< create table crash_me10 (NEW int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_next=no # Keyword NEXT
###< create table crash_me10 (NEXT int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_no=no # Keyword NO
###< create table crash_me10 (NO int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_none=no # Keyword NONE
###< create table crash_me10 (NONE int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_not=yes # Keyword NOT
###< create table crash_me10 (NOT int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'NOT int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_null=yes # Keyword NULL
###< create table crash_me10 (NULL int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (NUMERIC int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'NUMERIC int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (OBJECT int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_of=no # Keyword OF
###< create table crash_me10 (OF int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_off=no # Keyword OFF
###< create table crash_me10 (OFF int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_old=no # Keyword OLD
###< create table crash_me10 (OLD int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_on=yes # Keyword ON
###< create table crash_me10 (ON int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ON int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_only=no # Keyword ONLY
###< create table crash_me10 (ONLY int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_open=no # Keyword OPEN
###< create table crash_me10 (OPEN int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
###< create table crash_me10 (OPTION int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'OPTION int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_or=yes # Keyword OR
###< create table crash_me10 (OR int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'OR int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_order=yes # Keyword ORDER
###< create table crash_me10 (ORDER int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ORDER int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'OUTER int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (PRECISION int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'PRECISION int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (PRIMARY int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_prior=no # Keyword PRIOR
###< create table crash_me10 (PRIOR int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
###< create table crash_me10 (PRIVILEGES int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'PRIVILEGES int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (PROCEDURE int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'PROCEDURE int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_public=no # Keyword PUBLIC
###< create table crash_me10 (PUBLIC int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_read=yes # Keyword READ
###< create table crash_me10 (READ int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'READ int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_real=yes # Keyword REAL
###< create table crash_me10 (REAL int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'REAL int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (REFERENCES int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'REFERENCES int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (RESTRICT int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'RESTRICT int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'RETURN int not null)' at line 1
###< create table crash_me10 (REVOKE int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'REVOKE int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_right=yes # Keyword RIGHT
###< create table crash_me10 (RIGHT int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'RIGHT int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_role=no # Keyword ROLE
###< create table crash_me10 (ROLE int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
###< create table crash_me10 (SELECT int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (SESSION_USER int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_set=yes # Keyword SET
###< create table crash_me10 (SET int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SET int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_signal=no # Keyword SIGNAL
###< create table crash_me10 (SIGNAL int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_size=no # Keyword SIZE
###< create table crash_me10 (SIZE int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
###< create table crash_me10 (SMALLINT int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SMALLINT int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_some=no # Keyword SOME
###< create table crash_me10 (SOME int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_space=no # Keyword SPACE
###< create table crash_me10 (SPACE int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SQL int not null)' at line 1
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SQLEXCEPTION int not null)' at line 1
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SQLSTATE int not null)' at line 1
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SQLWARNING int not null)' at line 1
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'TABLE int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (TEMPORARY int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_then=yes # Keyword THEN
###< create table crash_me10 (THEN int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'THEN int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_time=no # Keyword TIME
###< create table crash_me10 (TIME int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
###< create table crash_me10 (TIMEZONE_MINUTE int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_to=yes # Keyword TO
###< create table crash_me10 (TO int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'TO int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (TRAILING int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'TRAILING int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'TRUE int not null)' at line 1
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_union=yes # Keyword UNION
###< create table crash_me10 (UNION int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'UNION int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (UNIQUE int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (UPDATE int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'UPDATE int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'USAGE int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_user=no # Keyword USER
###< create table crash_me10 (USER int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_using=yes # Keyword USING
###< create table crash_me10 (USING int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'USING int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_value=no # Keyword VALUE
###< create table crash_me10 (VALUE int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
###< create table crash_me10 (VALUES int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'VALUES int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (VARCHAR int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'VARCHAR int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (VARYING int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'VARYING int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_view=no # Keyword VIEW
###< create table crash_me10 (VIEW int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_when=yes # Keyword WHEN
###< create table crash_me10 (WHEN int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHEN int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (WHENEVER int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_where=yes # Keyword WHERE
###< create table crash_me10 (WHERE int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHILE int not null)' at line 1
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'WITH int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_without=no # Keyword WITHOUT
###< create table crash_me10 (WITHOUT int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_work=no # Keyword WORK
###< create table crash_me10 (WORK int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'WRITE int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi-92/99_year=no # Keyword YEAR
###< create table crash_me10 (YEAR int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi-92/99_zone=no # Keyword ZONE
###< create table crash_me10 (ZONE int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi92_async=no # Keyword ASYNC
###< create table crash_me10 (ASYNC int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi92_avg=no # Keyword AVG
###< create table crash_me10 (AVG int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi92_between=yes # Keyword BETWEEN
###< create table crash_me10 (BETWEEN int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'BETWEEN int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (COALESCE int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi92_convert=no # Keyword CONVERT
###< create table crash_me10 (CONVERT int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi92_count=no # Keyword COUNT
###< create table crash_me10 (COUNT int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi92_exists=yes # Keyword EXISTS
###< create table crash_me10 (EXISTS int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'EXISTS int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi92_extract=no # Keyword EXTRACT
###< create table crash_me10 (EXTRACT int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'INSENSITIVE int not null)' at line 1
###< create table crash_me10 (REPLACE int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'REPLACE int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SENSITIVE int not null)' at line 1
###< create table crash_me10 (AGGREGATE int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi99_array=no # Keyword ARRAY
###< create table crash_me10 (ARRAY int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi99_binary=yes # Keyword BINARY
###< create table crash_me10 (BINARY int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'BINARY int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi99_blob=yes # Keyword BLOB
###< create table crash_me10 (BLOB int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'BLOB int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi99_class=no # Keyword CLASS
###< create table crash_me10 (CLASS int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi99_clob=no # Keyword CLOB
###< create table crash_me10 (CLOB int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'CONDITION int not null)' at line 1
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DETERMINISTIC int not null)' at line 1
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'EXIT int not null)' at line 1
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'INOUT int not null)' at line 1
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ITERATE int not null)' at line 1
###< create table crash_me10 (LOCALTIME int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'LOCALTIME int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (LOCALTIMESTAMP int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'LOCALTIMESTAMP int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_ansi99_locator=no # Keyword LOCATOR
###< create table crash_me10 (LOCATOR int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_ansi99_meets=no # Keyword MEETS
###< create table crash_me10 (MEETS int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'OUT int not null)' at line 1
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'REPEAT int not null)' at line 1
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SPECIFIC int not null)' at line 1
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'UNDO int not null)' at line 1
###As far as all queries returned OK, result is NO
reserved_word_extra_access=no # Keyword ACCESS
###< create table crash_me10 (ACCESS int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_analyze=yes # Keyword ANALYZE
###< create table crash_me10 (ANALYZE int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ANALYZE int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_extra_audit=no # Keyword AUDIT
###< create table crash_me10 (AUDIT int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
###< create table crash_me10 (BERKELEYDB int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_bigint=yes # Keyword BIGINT
###< create table crash_me10 (BIGINT int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'BIGINT int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_extra_break=no # Keyword BREAK
###< create table crash_me10 (BREAK int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_browse=no # Keyword BROWSE
###< create table crash_me10 (BROWSE int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_btree=no # Keyword BTREE
###< create table crash_me10 (BTREE int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_bulk=no # Keyword BULK
###< create table crash_me10 (BULK int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_change=yes # Keyword CHANGE
###< create table crash_me10 (CHANGE int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'CHANGE int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (CLUSTERED int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_columns=yes # Keyword COLUMNS
###< create table crash_me10 (COLUMNS int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'COLUMNS int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_extra_comment=no # Keyword COMMENT
###< create table crash_me10 (COMMENT int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
###< create table crash_me10 (DATABASE int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DATABASE int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (DATABASES int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DATABASES int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (DAY_HOUR int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DAY_HOUR int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (DAY_MINUTE int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DAY_MINUTE int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (DAY_SECOND int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DAY_SECOND int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_extra_dbcc=no # Keyword DBCC
###< create table crash_me10 (DBCC int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_delayed=yes # Keyword DELAYED
###< create table crash_me10 (DELAYED int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DELAYED int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_extra_deny=no # Keyword DENY
###< create table crash_me10 (DENY int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_disk=no # Keyword DISK
###< create table crash_me10 (DISK int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
###< create table crash_me10 (DISTINCTROW int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DISTINCTROW int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (ENCLOSED int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ENCLOSED int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_extra_errlvl=no # Keyword ERRLVL
###< create table crash_me10 (ERRLVL int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_errors=no # Keyword ERRORS
###< create table crash_me10 (ERRORS int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_escaped=yes # Keyword ESCAPED
###< create table crash_me10 (ESCAPED int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ESCAPED int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (EXCLUSIVE int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_explain=yes # Keyword EXPLAIN
###< create table crash_me10 (EXPLAIN int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'EXPLAIN int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_extra_fields=yes # Keyword FIELDS
###< create table crash_me10 (FIELDS int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'FIELDS int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_extra_file=no # Keyword FILE
###< create table crash_me10 (FILE int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
###< create table crash_me10 (FULLTEXT int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (HIGH_PRIORITY int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'HIGH_PRIORITY int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (HOUR_MINUTE int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'HOUR_MINUTE int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (HOUR_SECOND int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'HOUR_SECOND int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (INCREMENT int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_index=yes # Keyword INDEX
###< create table crash_me10 (INDEX int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_extra_infile=yes # Keyword INFILE
###< create table crash_me10 (INFILE int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'INFILE int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_extra_initial=no # Keyword INITIAL
###< create table crash_me10 (INITIAL int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_innodb=no # Keyword INNODB
###< create table crash_me10 (INNODB int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_keys=yes # Keyword KEYS
###< create table crash_me10 (KEYS int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'KEYS int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_extra_kill=yes # Keyword KILL
###< create table crash_me10 (KILL int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'KILL int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_extra_lineno=no # Keyword LINENO
###< create table crash_me10 (LINENO int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_lines=yes # Keyword LINES
###< create table crash_me10 (LINES int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'LINES int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_extra_load=yes # Keyword LOAD
###< create table crash_me10 (LOAD int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'LOAD int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_extra_lock=yes # Keyword LOCK
###< create table crash_me10 (LOCK int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'LOCK int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_extra_long=yes # Keyword LONG
###< create table crash_me10 (LONG int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'LONG int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (LONGBLOB int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'LONGBLOB int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (LONGTEXT int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'LONGTEXT int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (LOW_PRIORITY int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'LOW_PRIORITY int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (MASTER_SERVER_ID int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'MASTER_SERVER_ID int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (MEDIUMBLOB int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'MEDIUMBLOB int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (MEDIUMINT int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'MEDIUMINT int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (MEDIUMTEXT int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'MEDIUMTEXT int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (MIDDLEINT int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'MIDDLEINT int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_extra_minus=no # Keyword MINUS
###< create table crash_me10 (MINUS int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
###< create table crash_me10 (MINUTE_SECOND int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'MINUTE_SECOND int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (OPTIMIZE int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'OPTIMIZE int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (OPTIONALLY int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'OPTIONALLY int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_extra_outfile=yes # Keyword OUTFILE
###< create table crash_me10 (OUTFILE int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'OUTFILE int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_extra_over=no # Keyword OVER
###< create table crash_me10 (OVER int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_pctfree=no # Keyword PCTFREE
###< create table crash_me10 (PCTFREE int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_percent=no # Keyword PERCENT
###< create table crash_me10 (PERCENT int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_plan=no # Keyword PLAN
###< create table crash_me10 (PLAN int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_print=no # Keyword PRINT
###< create table crash_me10 (PRINT int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_proc=no # Keyword PROC
###< create table crash_me10 (PROC int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_purge=yes # Keyword PURGE
###< create table crash_me10 (PURGE int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'PURGE int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (RECONFIGURE int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_regexp=yes # Keyword REGEXP
###< create table crash_me10 (REGEXP int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'REGEXP int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_extra_rename=yes # Keyword RENAME
###< create table crash_me10 (RENAME int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'RENAME int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (REPLICATION int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_require=yes # Keyword REQUIRE
###< create table crash_me10 (REQUIRE int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'REQUIRE int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (RESOURCE int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_restore=no # Keyword RESTORE
###< create table crash_me10 (RESTORE int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_rlike=yes # Keyword RLIKE
###< create table crash_me10 (RLIKE int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'RLIKE int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (ROWGUIDCOL int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_rowid=no # Keyword ROWID
###< create table crash_me10 (ROWID int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_rownum=no # Keyword ROWNUM
###< create table crash_me10 (ROWNUM int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_rtree=no # Keyword RTREE
###< create table crash_me10 (RTREE int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_rule=no # Keyword RULE
###< create table crash_me10 (RULE int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_save=no # Keyword SAVE
###< create table crash_me10 (SAVE int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_setuser=no # Keyword SETUSER
###< create table crash_me10 (SETUSER int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_share=no # Keyword SHARE
###< create table crash_me10 (SHARE int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_show=yes # Keyword SHOW
###< create table crash_me10 (SHOW int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SHOW int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (SHUTDOWN int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_soname=yes # Keyword SONAME
###< create table crash_me10 (SONAME int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SONAME int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###> execute error:You 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
###< create table crash_me10 (SQL_BIG_RESULT int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SQL_BIG_RESULT int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (SQL_CALC_FOUND_ROWS int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SQL_CALC_FOUND_ROWS int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (SQL_SMALL_RESULT int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SQL_SMALL_RESULT int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_extra_ssl=yes # Keyword SSL
###< create table crash_me10 (SSL int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SSL int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (STARTING int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'STARTING int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (STRAIGHT_JOIN int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'STRAIGHT_JOIN int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_extra_striped=no # Keyword STRIPED
###< create table crash_me10 (STRIPED int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
###< create table crash_me10 (SUCCESSFUL int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_synonym=no # Keyword SYNONYM
###< create table crash_me10 (SYNONYM int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_sysdate=no # Keyword SYSDATE
###< create table crash_me10 (SYSDATE int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_tables=yes # Keyword TABLES
###< create table crash_me10 (TABLES int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'TABLES int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (TERMINATED int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'TERMINATED int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (TINYBLOB int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'TINYBLOB int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_extra_tinyint=yes # Keyword TINYINT
###< create table crash_me10 (TINYINT int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'TINYINT int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (TINYTEXT int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'TINYTEXT int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
reserved_word_extra_top=no # Keyword TOP
###< create table crash_me10 (TOP int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_tran=no # Keyword TRAN
###< create table crash_me10 (TRAN int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
###< create table crash_me10 (TRUNCATE int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_tsequal=no # Keyword TSEQUAL
###< create table crash_me10 (TSEQUAL int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_types=no # Keyword TYPES
###< create table crash_me10 (TYPES int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_uid=no # Keyword UID
###< create table crash_me10 (UID int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_unlock=yes # Keyword UNLOCK
###< create table crash_me10 (UNLOCK int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'UNLOCK int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (UNSIGNED int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'UNSIGNED int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (UPDATETEXT int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_use=yes # Keyword USE
###< create table crash_me10 (USE int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'USE int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (VARBINARY int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'VARBINARY int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (WRITETEXT int not null)
###> OK
###< drop table crash_me10
###> OK
###
###As far as all queries returned OK, result is NO
reserved_word_extra_xor=yes # Keyword XOR
###< create table crash_me10 (XOR int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'XOR int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (YEAR_MONTH int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'YEAR_MONTH int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
###< create table crash_me10 (ZEROFILL int not null)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ZEROFILL int not null)' at line 1
###< drop table crash_me10
###> execute error:Unknown table 'crash_me10'
###
###As far as some queries didnt return OK, result is YES
right_outer_join=yes # right outer join
###< select crash_me.a from crash_me right join crash_me2 ON crash_me.a=crash_me2.a
###> OK
###
###As far as all queries returned OK, result is YES
rollback_metadata=no # rollback_metadata
###< create table crash_q (a integer not null)
###> OK
###
###< insert into crash_q values (1)
###> OK
rowid=auto_increment # Type for row id
###< create table crash_q (a rowid)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'rowid)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###< create table crash_q (a int not null auto_increment, primary key(a))
###< create table crash_q (a integer, b integer,c1 CHAR(10))
###> OK
###< truncate table crash_q
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_extra_abstime=no # Type abstime
###< create table crash_q (q abstime)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'abstime)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_bfile=no # Type bfile
###< create table crash_q (q bfile)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'bfile)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_blob=yes # Type blob
###< create table crash_q (q blob)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_extra_bool=yes # Type bool
###< create table crash_q (q bool)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_extra_box=no # Type box
###< create table crash_q (q box)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'box)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_byte=no # Type byte
###< create table crash_q (q byte)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'byte)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_char(1_arg)_binary=yes # Type char(1 arg) binary
###< create table crash_q (q char(10) binary)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_extra_cidr=no # Type cidr
###< create table crash_q (q cidr)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'cidr)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_circle=no # Type circle
###< create table crash_q (q circle)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'circle)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_clob=no # Type clob
###< create table crash_q (q clob)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'clob)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_datetime=yes # Type datetime
###< create table crash_q (q datetime)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_extra_double=yes # Type double
###< create table crash_q (q double)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_extra_enum(1_arg)=yes # Type enum(1 arg)
###< create table crash_q (q enum('red'))
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_extra_float(2_arg)=yes # Type float(2 arg)
###< create table crash_q (q float(6,2))
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_extra_float4=yes # Type float4
###< create table crash_q (q float4)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_extra_float8=yes # Type float8
###< create table crash_q (q float8)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_extra_image=no # Type image
###< create table crash_q (q image)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'image)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_inet=no # Type inet
###< create table crash_q (q inet)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'inet)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_int(1_arg)_zerofill=yes # Type int(1 arg) zerofill
###< create table crash_q (q int(5) zerofill)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_extra_int1=yes # Type int1
###< create table crash_q (q int1)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_extra_int2=yes # Type int2
###< create table crash_q (q int2)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_extra_int3=yes # Type int3
###< create table crash_q (q int3)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_extra_int4=yes # Type int4
###< create table crash_q (q int4)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_extra_int8=yes # Type int8
###< create table crash_q (q int8)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_extra_int_auto_increment=yes # Type int not null auto_increment
###< create table crash_q (q int not null auto_increment,unique(q))
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_extra_int_identity=no # Type int not null identity
###< create table crash_q (q int not null identity,unique(q))
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'identity,unique(q))' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_int_unsigned=yes # Type int unsigned
###< create table crash_q (q int unsigned)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_extra_interval=no # Type interval
###< create table crash_q (q interval)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'interval)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_line=no # Type line
###< create table crash_q (q line)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'line)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'raw)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_long_varbinary=yes # Type long varbinary
###< create table crash_q (q long varbinary)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_extra_long_varchar(1_arg)=no # Type long varchar(1 arg)
###< create table crash_q (q long varchar(1))
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(1))' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_lseg=no # Type lseg
###< create table crash_q (q lseg)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'lseg)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_macaddr=no # Type macaddr
###< create table crash_q (q macaddr)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'macaddr)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_mediumint=yes # Type mediumint
###< create table crash_q (q mediumint)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_extra_mediumtext=yes # Type mediumtext
###< create table crash_q (q mediumtext)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_extra_middleint=yes # Type middleint
###< create table crash_q (q middleint)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_extra_mlslabel=no # Type mlslabel
###< create table crash_q (q mlslabel)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'mlslabel)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_money=no # Type money
###< create table crash_q (q money)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'money)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_nclob=no # Type nclob
###< create table crash_q (q nclob)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'nclob)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_number=no # Type number
###< create table crash_q (q number)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'number)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_number(1_arg)=no # Type number(1 arg)
###< create table crash_q (q number(9))
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'number(9))' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_number(2_arg)=no # Type number(2 arg)
###< create table crash_q (q number(9,2))
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'number(9,2))' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_nvarchar2(1_arg)=no # Type nvarchar2(1 arg)
###< create table crash_q (q nvarchar2(16))
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'nvarchar2(16))' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_path=no # Type path
###< create table crash_q (q path)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'path)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'raw(16))' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_reltime=no # Type reltime
###< create table crash_q (q reltime)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'reltime)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_rowid=no # Type rowid
###< create table crash_q (q rowid)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'rowid)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
###As far as all queries returned OK, result is YES
type_extra_smalldatetime=no # Type smalldatetime
###< create table crash_q (q smalldatetime)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'smalldatetime)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_smallfloat=no # Type smallfloat
###< create table crash_q (q smallfloat)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'smallfloat)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_smallmoney=no # Type smallmoney
###< create table crash_q (q smallmoney)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'smallmoney)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_text=yes # Type text
###< create table crash_q (q text)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'timespan)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_uint=no # Type uint
###< create table crash_q (q uint)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'uint)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_varchar2(1_arg)=no # Type varchar2(1 arg)
###< create table crash_q (q varchar2(257))
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'varchar2(257))' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_extra_year=yes # Type year
###< create table crash_q (q year)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_odbc_bigint=yes # Type bigint
###< create table crash_q (q bigint)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_odbc_binary(1_arg)=yes # Type binary(1 arg)
###< create table crash_q (q binary(1))
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_odbc_datetime=yes # Type datetime
###< create table crash_q (q datetime)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_odbc_tinyint=yes # Type tinyint
###< create table crash_q (q tinyint)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_odbc_varbinary(1_arg)=yes # Type varbinary(1 arg)
###< create table crash_q (q varbinary(1))
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_sql_bit=yes # Type bit
###< create table crash_q (q bit)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_sql_bit(1_arg)=yes # Type bit(1 arg)
###< create table crash_q (q bit(2))
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_sql_bit_varying(1_arg)=no # Type bit varying(1 arg)
###< create table crash_q (q bit varying(2))
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'varying(2))' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
###As far as all queries returned OK, result is YES
type_sql_char_varying(1_arg)=yes # Type char varying(1 arg)
###< create table crash_q (q char varying(1))
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_sql_character(1_arg)=yes # Type character(1 arg)
###< create table crash_q (q character(1))
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_sql_character_varying(1_arg)=yes # Type character varying(1 arg)
###< create table crash_q (q character varying(1))
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_sql_date=yes # Type date
###< create table crash_q (q date)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_sql_dec(2_arg)=yes # Type dec(2 arg)
###< create table crash_q (q dec(6,2))
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_sql_decimal(2_arg)=yes # Type decimal(2 arg)
###< create table crash_q (q decimal(6,2))
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_sql_double_precision=yes # Type double precision
###< create table crash_q (q double precision)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_sql_float=yes # Type float
###< create table crash_q (q float)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_sql_float(1_arg)=yes # Type float(1 arg)
###< create table crash_q (q float(8))
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_sql_int=yes # Type int
###< create table crash_q (q int)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_sql_integer=yes # Type integer
###< create table crash_q (q integer)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_sql_interval_day=no # Type interval day
###< create table crash_q (q interval day)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'interval day)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_sql_interval_day_to_hour=no # Type interval day to hour
###< create table crash_q (q interval day to hour)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'interval day to hour)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_sql_interval_day_to_minute=no # Type interval day to minute
###< create table crash_q (q interval day to minute)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'interval day to minute)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_sql_interval_day_to_second=no # Type interval day to second
###< create table crash_q (q interval day to second)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'interval day to second)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_sql_interval_hour=no # Type interval hour
###< create table crash_q (q interval hour)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'interval hour)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_sql_interval_hour_to_minute=no # Type interval hour to minute
###< create table crash_q (q interval hour to minute)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'interval hour to minute)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_sql_interval_hour_to_second=no # Type interval hour to second
###< create table crash_q (q interval hour to second)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'interval hour to second)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_sql_interval_minute=no # Type interval minute
###< create table crash_q (q interval minute)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'interval minute)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_sql_interval_minute_to_second=no # Type interval minute to second
###< create table crash_q (q interval minute to second)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'interval minute to second)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_sql_interval_month=no # Type interval month
###< create table crash_q (q interval month)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'interval month)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_sql_interval_second=no # Type interval second
###< create table crash_q (q interval second)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'interval second)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_sql_interval_year=no # Type interval year
###< create table crash_q (q interval year)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'interval year)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_sql_interval_year_to_month=no # Type interval year to month
###< create table crash_q (q interval year to month)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'interval year to month)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_sql_national_char_varying(1_arg)=yes # Type national char varying(1 arg)
###< create table crash_q (q national char varying(20))
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_sql_national_character(1_arg)=yes # Type national character(1 arg)
###< create table crash_q (q national character(20))
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_sql_national_character_varying(1_arg)=yes # Type national character varying(1 arg)
###< create table crash_q (q national character varying(20))
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_sql_nchar(1_arg)=yes # Type nchar(1 arg)
###< create table crash_q (q nchar(1))
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_sql_nchar_varying(1_arg)=yes # Type nchar varying(1 arg)
###< create table crash_q (q nchar varying(20))
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_sql_numeric(2_arg)=yes # Type numeric(2 arg)
###< create table crash_q (q numeric(9,2))
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_sql_real=yes # Type real
###< create table crash_q (q real)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_sql_smallint=yes # Type smallint
###< create table crash_q (q smallint)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_sql_time=yes # Type time
###< create table crash_q (q time)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_sql_timestamp=yes # Type timestamp
###< create table crash_q (q timestamp)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
type_sql_timestamp_with_time_zone=no # Type timestamp with time zone
###< create table crash_q (q timestamp with time zone)
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'with time zone)' at line 1
###< drop table crash_q
###> execute error:Unknown table 'crash_q'
###
###As far as some queries didnt return OK, result is NO
type_sql_varchar(1_arg)=yes # Type varchar(1 arg)
###< create table crash_q (q varchar(1))
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
union=yes # union
###< select * from crash_me union select a,b from crash_me3
###> OK
###
###As far as all queries returned OK, result is YES
union_all=yes # union all
###< select * from crash_me union all select a,b from crash_me3
###> OK
###
###As far as all queries returned OK, result is YES
union_all_incompat=yes # union all (incompatible lists)
###< select * from crash_me union all select a,b from crash_me2
###> OK
###
###As far as all queries returned OK, result is YES
union_incompat=yes # union (incompatible lists)
###< select * from crash_me union select a,b from crash_me2
###> OK
###
###As far as all queries returned OK, result is YES
unique_in_create=yes # unique in create table
###< create table crash_q (q integer not null,unique (q))
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
unique_null_in_create=yes # unique null in create
###< create table crash_q (q integer,unique (q))
###> OK
###< insert into crash_q (q) values (NULL)
###> OK
###< insert into crash_q (q) values (NULL)
###> OK
###< insert into crash_q (q) values (1)
###> OK
###< drop table crash_q
###> OK
###
###As far as all queries returned OK, result is YES
###< create view crash_q as select a from crash_me
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'view crash_q as select a from crash_me' at line 1
###< drop view crash_q
###> execute error:You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'view crash_q' at line 1
###
###As far as some queries didnt return OK, result is NO
where_string_size=1048539 # constant string size in where