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

MySQL数据库

开发平台:

Visual C++

  1. #This file is automaticly generated by crash-me 1.61
  2. NEG=yes # update of column= -column
  3.    ###< create table crash_q (a integer)
  4.    ###> OK
  5.    ###< insert into crash_q values(10)
  6.    ###> OK
  7.    ###< update crash_q set a=-a
  8.    ###> OK
  9.    ###< drop table crash_q 
  10.    ###> OK
  11.    ###
  12.    ###As far as all queries returned OK, result is YES
  13. Need_cast_for_null=no # Need to cast NULL for arithmetic
  14.    ### Check if numeric_null (NULL) is 'NULL'
  15. alter_add_col=yes # Alter table add column
  16.    ###< alter table crash_q add d integer
  17.    ###> OK
  18.    ###
  19.    ###As far as all queries returned OK, result is YES
  20. alter_add_constraint=yes # Alter table add constraint
  21.    ###< alter table crash_q add constraint c2 check(a > b)
  22.    ###> OK
  23.    ###
  24.    ###As far as all queries returned OK, result is YES
  25. alter_add_foreign_key=no # Alter table add foreign key
  26.    ###< alter table crash_q add constraint f1 foreign key(c1)
  27.    ###> execute error:You 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
  28.    ###<  references crash_q1(c1)
  29.    ###> execute error:You 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
  30.    ###
  31.    ###As far as some queries didnt return OK, result is NO
  32. alter_add_multi_col=yes # Alter table add many columns
  33.    ###< alter table crash_q add (f integer,g integer)
  34.    ###> OK
  35. alter_add_primary_key=with constraint # Alter table add primary key
  36.    ###< alter table crash_q1 add constraint p1 primary key(c1)
  37.    ###> OK
  38. alter_add_unique=yes # Alter table add unique
  39.    ###< alter table crash_q add constraint u1 unique(c1)
  40.    ###> OK
  41.    ###
  42.    ###As far as all queries returned OK, result is YES
  43. alter_alter_col=yes # Alter table alter column default
  44.    ###< alter table crash_q alter b set default 10
  45.    ###> OK
  46.    ###
  47.    ###As far as all queries returned OK, result is YES
  48. alter_change_col=yes # Alter table change column
  49.    ###< alter table crash_q change a e char(50)
  50.    ###> OK
  51.    ###
  52.    ###As far as all queries returned OK, result is YES
  53. alter_drop_col=yes # Alter table drop column
  54.    ###< alter table crash_q drop column b
  55.    ###> OK
  56. alter_drop_constraint=no # Alter table drop constraint
  57.    ###< alter table crash_q drop constraint c2
  58.    ###> execute error:You 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
  59.    ###
  60.    ###< alter table crash_q drop constraint c2 restrict
  61.    ###> execute error:You 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
  62. alter_drop_foreign_key=with drop foreign key # Alter table drop foreign key
  63.    ###< alter table crash_q drop constraint f1
  64.    ###> execute error:You 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
  65.    ###
  66.    ###< alter table crash_q drop constraint f1 restrict
  67.    ###> execute error:You 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
  68.    ###
  69.    ###< alter table crash_q drop foreign key f1
  70.    ###> OK
  71. alter_drop_primary_key=drop primary key # Alter table drop primary key
  72.    ###< alter table crash_q1 drop constraint p1 restrict
  73.    ###> execute error:You 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
  74.    ###
  75.    ###< alter table crash_q1 drop primary key
  76.    ###> OK
  77. alter_drop_unique=with drop key # Alter table drop unique
  78.    ###< alter table crash_q drop constraint u1
  79.    ###> execute error:You 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
  80.    ###
  81.    ###< alter table crash_q drop constraint u1 restrict
  82.    ###> execute error:You 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
  83.    ###
  84.    ###< alter table crash_q drop key u1
  85.    ###> OK
  86. alter_modify_col=yes # Alter table modify column
  87.    ###< alter table crash_q modify c1 CHAR(20)
  88.    ###> OK
  89. alter_rename_table=yes # Alter table rename table
  90.    ###< alter table crash_q rename to crash_q1
  91.    ###> OK
  92.    ###
  93.    ###As far as all queries returned OK, result is YES
  94. atomic_updates=no # atomic updates
  95.    ###< create table crash_q (a integer not null,primary key (a)) 
  96.    ###> OK
  97.    ###< insert into crash_q values (2)
  98.    ###> OK
  99.    ###< insert into crash_q values (3)
  100.    ###> OK
  101.    ###< insert into crash_q values (1)
  102.    ###> OK
  103.    ###< update crash_q set a=a+1
  104.    ###> execute error:Duplicate entry '3' for key 1
  105.    ###< drop table crash_q 
  106.    ###> OK
  107.    ###
  108.    ###As far as some queries didnt return OK, result is NO
  109. automatic_rowid=_rowid # Automatic row id
  110.    ###< create table crash_q (a int not null, primary key(a))
  111.    ###> OK
  112.    ###< insert into crash_q values (1)
  113.    ###> OK
  114.    ###< select _rowid from crash_q
  115.    ###> OK
  116.    ###< drop table crash_q 
  117.    ###> OK
  118. binary_numbers=no # binary numbers (0b1001)
  119.    ###< select 0b1001 
  120.    ###> execute error:Unknown column '0b1001' in 'field list'
  121.    ###
  122.    ###As far as some queries didnt return OK, result is NO
  123. binary_strings=no # binary strings (b'0110')
  124.    ###< select b'0110' 
  125.    ###> execute error:Unknown column 'b' in 'field list'
  126.    ###
  127.    ###As far as some queries didnt return OK, result is NO
  128. case_insensitive_strings=yes # Case insensitive compare
  129.    ###
  130.    ###<select b from crash_me where b = 'A'
  131.    ###>a
  132. char_is_space_filled=no # char are space filled
  133.    ###
  134.    ###<select concat(b,b) from crash_me where b = 'a         '
  135.    ###>aa
  136.    ###We expected 'a         a         ' but got 'aa' 
  137. column_alias=yes # Column alias
  138.    ###< select a as ab from crash_me
  139.    ###> OK
  140.    ###
  141.    ###As far as all queries returned OK, result is YES
  142. columns_in_group_by=+64 # number of columns in group by
  143.    ###We are trying (example with N=5):
  144.    ###create table crash_q (q1 integer,q2 integer,q3 integer,q4 integer,q5 integer)
  145.    ###insert into crash_q values(1,1,1,1,1)
  146.    ###insert into crash_q values(1,1,1,1,1)
  147.    ###select q1,q2,q3,q4,q5 from crash_q group by q1,q2,q3,q4,q5
  148. columns_in_order_by=+64 # number of columns in order by
  149.    ###We are trying (example with N=5):
  150.    ###create table crash_q (q1 integer,q2 integer,q3 integer,q4 integer,q5 integer)
  151.    ###insert into crash_q values(1,1,1,1,1)
  152.    ###insert into crash_q values(1,1,1,1,1)
  153.    ###select * from crash_q order by q1,q2,q3,q4,q5
  154. comment_#=yes # # as comment
  155.    ###< select * from crash_me # Testing of comments
  156.    ###> OK
  157.    ###
  158.    ###As far as all queries returned OK, result is YES
  159. comment_--=yes # -- as comment (ANSI)
  160.    ###< select * from crash_me -- Testing of comments
  161.    ###> OK
  162.    ###
  163.    ###As far as all queries returned OK, result is YES
  164. comment_/**/=yes # /* */ as comment
  165.    ###< select * from crash_me /* Testing of comments */
  166.    ###> OK
  167.    ###
  168.    ###As far as all queries returned OK, result is YES
  169. comment_//=no # // as comment
  170.    ###< select * from crash_me // Testing of comments
  171.    ###> execute error:You 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
  172.    ###
  173.    ###As far as some queries didnt return OK, result is NO
  174. compute=no # Compute
  175.    ###< select a from crash_me order by a compute sum(a) by a
  176.    ###> execute error:You 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
  177.    ###
  178.    ###As far as some queries didnt return OK, result is NO
  179. connections=101 # Simultaneous connections (installation default)
  180. constraint_check=syntax only # Column constraints
  181.    ###< create table crash_q (a int check (a>0))
  182.    ###> OK
  183.    ###
  184.    ###< insert into crash_q values(0)
  185.    ###> OK
  186.    ###
  187.    ###< drop table crash_q 
  188.    ###> OK
  189. constraint_check_named=syntax only # Named constraints
  190.    ###< create table crash_q (a int ,b int, constraint abc check (a>b))
  191.    ###> OK
  192.    ###
  193.    ###< insert into crash_q values(0,0)
  194.    ###> OK
  195.    ###
  196.    ###< drop table crash_q 
  197.    ###> OK
  198. constraint_check_table=syntax only # Table constraints
  199.    ###< create table crash_q (a int ,b int, check (a>b))
  200.    ###> OK
  201.    ###
  202.    ###< insert into crash_q values(0,0)
  203.    ###> OK
  204.    ###
  205.    ###< drop table crash_q 
  206.    ###> OK
  207. constraint_null=yes # NULL constraint (SyBase style)
  208.    ###< create table crash_q (a int null)
  209.    ###> OK
  210.    ###< drop table crash_q 
  211.    ###> OK
  212.    ###
  213.    ###As far as all queries returned OK, result is YES
  214. crash_me_safe=yes # crash me safe
  215. crash_me_version=1.61 # crash me version
  216. create_default=yes # default value for column
  217.    ###< create table crash_q (q integer default 10 not null)
  218.    ###> OK
  219.    ###< drop table crash_q 
  220.    ###> OK
  221.    ###
  222.    ###As far as all queries returned OK, result is YES
  223. create_default_func=no # default value function for column
  224.    ###< create table crash_q (q integer not null,q1 integer default (1+1))
  225.    ###> execute error:You 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
  226.    ###< drop table crash_q 
  227.    ###> execute error:Unknown table 'crash_q'
  228.    ###
  229.    ###As far as some queries didnt return OK, result is NO
  230. create_if_not_exists=yes # create table if not exists
  231.    ###< create table crash_q (q integer)
  232.    ###> OK
  233.    ###< create table if not exists crash_q (q integer)
  234.    ###> OK
  235.    ###
  236.    ###As far as all queries returned OK, result is YES
  237. create_index=yes # create index
  238.    ###< create index crash_q on crash_me (a)
  239.    ###> OK
  240. create_schema=no # Create SCHEMA
  241.    ###< create schema crash_schema create table crash_q (a int) create table crash_q2(b int)
  242.    ###> execute error:You 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
  243.    ###< drop schema crash_schema cascade
  244.    ###> execute error:You 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
  245.    ###
  246.    ###As far as some queries didnt return OK, result is NO
  247. create_table_select=yes # create table from select
  248.    ###< create table crash_q SELECT * from crash_me
  249.    ###> OK
  250. cross_join=yes # cross join (same as from a,b)
  251.    ###< select crash_me.a from crash_me cross join crash_me3
  252.    ###> OK
  253.    ###
  254.    ###As far as all queries returned OK, result is YES
  255. date_as_string=yes # String functions on date columns
  256.    ###< create table crash_me2 (a date not null)
  257.    ###> OK
  258.    ###< insert into crash_me2 values ('1998-03-03')
  259.    ###> OK
  260.    ###
  261.    ###<select left(a,4) from crash_me2
  262.    ###>1998
  263.    ###
  264.    ###< drop table crash_me2 
  265.    ###> OK
  266. date_format_EUR=error # Supports DD.MM.YYYY (EUR) format
  267.    ###< insert into crash_me_d(a) values ('16.08.1963')
  268.    ###> OK
  269.    ###
  270.    ###<select a from crash_me_d
  271.    ###>0000-00-00
  272.    ###We expected '1963-08-16' but got '0000-00-00' 
  273.    ###
  274.    ###< delete from crash_me_d
  275.    ###> OK
  276. date_format_EUR_with_date=error # Supports DATE 'DD.MM.YYYY' (EUR) format
  277.    ###< insert into crash_me_d(a) values (DATE '16.08.1963')
  278.    ###> OK
  279.    ###
  280.    ###<select a from crash_me_d
  281.    ###>0000-00-00
  282.    ###We expected '1963-08-16' but got '0000-00-00' 
  283.    ###
  284.    ###< delete from crash_me_d
  285.    ###> OK
  286. date_format_ISO=yes # Supports YYYY-MM-DD (ISO) format
  287.    ###< insert into crash_me_d(a)  values ('1963-08-16')
  288.    ###> OK
  289.    ###
  290.    ###<select a from crash_me_d
  291.    ###>1963-08-16
  292.    ###
  293.    ###< delete from crash_me_d
  294.    ###> OK
  295. date_format_ISO_with_date=yes # Supports DATE 'YYYY-MM-DD' (ISO) format
  296.    ###< insert into crash_me_d(a) values (DATE '1963-08-16')
  297.    ###> OK
  298.    ###
  299.    ###<select a from crash_me_d
  300.    ###>1963-08-16
  301.    ###
  302.    ###< delete from crash_me_d
  303.    ###> OK
  304. date_format_USA=error # Supports MM/DD/YYYY format
  305.    ###< insert into crash_me_d(a) values ('08/16/1963')
  306.    ###> OK
  307.    ###
  308.    ###<select a from crash_me_d
  309.    ###>0000-00-00
  310.    ###We expected '1963-08-16' but got '0000-00-00' 
  311.    ###
  312.    ###< delete from crash_me_d
  313.    ###> OK
  314. date_format_USA_with_date=error # Supports DATE 'MM/DD/YYYY' format
  315.    ###< insert into crash_me_d(a) values (DATE '08/16/1963')
  316.    ###> OK
  317.    ###
  318.    ###<select a from crash_me_d
  319.    ###>0000-00-00
  320.    ###We expected '1963-08-16' but got '0000-00-00' 
  321.    ###
  322.    ###< delete from crash_me_d
  323.    ###> OK
  324. date_format_YYYYMMDD=yes # Supports YYYYMMDD format
  325.    ###< insert into crash_me_d(a) values ('19630816')
  326.    ###> OK
  327.    ###
  328.    ###<select a from crash_me_d
  329.    ###>1963-08-16
  330.    ###
  331.    ###< delete from crash_me_d
  332.    ###> OK
  333. date_format_YYYYMMDD_with_date=yes # Supports DATE 'YYYYMMDD' format
  334.    ###< insert into crash_me_d(a) values (DATE '19630816')
  335.    ###> OK
  336.    ###
  337.    ###<select a from crash_me_d
  338.    ###>1963-08-16
  339.    ###
  340.    ###< delete from crash_me_d
  341.    ###> OK
  342. date_format_inresult=iso # Date format in result
  343.    ###< insert into crash_me_d values( sysdate() ) 
  344.    ###> OK
  345.    ###
  346.    ###< select a from crash_me_d
  347.    ###> 2004-04-06
  348.    ###< delete from crash_me_d
  349.    ###> OK
  350. date_infinity=error # Supports 'infinity dates
  351.    ###< create table crash_me2 (a date not null)
  352.    ###> OK
  353.    ###< insert into crash_me2 values ('infinity')
  354.    ###> OK
  355.    ###
  356.    ###<select a from crash_me2
  357.    ###>0000-00-00
  358.    ###We expected 'infinity' but got '0000-00-00' 
  359.    ###
  360.    ###< drop table crash_me2 
  361.    ###> OK
  362. date_last=yes # Supports 9999-12-31 dates
  363.    ###< create table crash_me2 (a date not null)
  364.    ###> OK
  365.    ###< insert into crash_me2 values ('9999-12-31')
  366.    ###> OK
  367.    ###
  368.    ###<select a from crash_me2
  369.    ###>9999-12-31
  370.    ###
  371.    ###< drop table crash_me2 
  372.    ###> OK
  373. date_one=yes # Supports 0001-01-01 dates
  374.    ###< create table crash_me2 (a date not null)
  375.    ###> OK
  376.    ###< insert into crash_me2 values ('0001-01-01')
  377.    ###> OK
  378.    ###
  379.    ###<select a from crash_me2
  380.    ###>0001-01-01
  381.    ###
  382.    ###< drop table crash_me2 
  383.    ###> OK
  384. date_with_YY=yes # Supports YY-MM-DD 2000 compilant dates
  385.    ###< create table crash_me2 (a date not null)
  386.    ###> OK
  387.    ###< insert into crash_me2 values ('98-03-03')
  388.    ###> OK
  389.    ###
  390.    ###<select a from crash_me2
  391.    ###>1998-03-03
  392.    ###
  393.    ###< drop table crash_me2 
  394.    ###> OK
  395.    ###
  396.    ###< create table crash_me2 (a date not null)
  397.    ###> OK
  398.    ###< insert into crash_me2 values ('10-03-03')
  399.    ###> OK
  400.    ###
  401.    ###<select a from crash_me2
  402.    ###>2010-03-03
  403.    ###
  404.    ###< drop table crash_me2 
  405.    ###> OK
  406. date_zero=yes # Supports 0000-00-00 dates
  407.    ###< create table crash_me2 (a date not null)
  408.    ###> OK
  409.    ###< insert into crash_me2 values ('0000-00-00')
  410.    ###> OK
  411.    ###
  412.    ###<select a from crash_me2
  413.    ###>0000-00-00
  414.    ###
  415.    ###< drop table crash_me2 
  416.    ###> OK
  417. domains=no # Domains (ANSI SQL)
  418.    ###< create domain crash_d as varchar(10) default 'Empty' check (value <> 'abcd')
  419.    ###> execute error:You 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 <> '
  420.    ###< create table crash_q(a crash_d, b int)
  421.    ###> execute error:You 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
  422.    ###< insert into crash_q(a,b) values('xyz',10)
  423.    ###> execute error:Table 'test.crash_q' doesn't exist
  424.    ###< insert into crash_q(b) values(10)
  425.    ###> execute error:Table 'test.crash_q' doesn't exist
  426.    ###< drop table crash_q 
  427.    ###> execute error:Unknown table 'crash_q'
  428.    ###< drop domain crash_d
  429.    ###> execute error:You 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
  430.    ###
  431.    ###As far as some queries didnt return OK, result is NO
  432. dont_require_cast_to_float=yes # No need to cast from integer to float
  433.    ###< select exp(1) 
  434.    ###> OK
  435.    ###
  436.    ###As far as all queries returned OK, result is YES
  437. double_quotes=yes # Double '' as ' in strings
  438.    ###
  439.    ###<select 'Walker''s' 
  440.    ###>Walker's
  441. drop_if_exists=yes # drop table if exists
  442.    ###< create table crash_q (q integer)
  443.    ###> OK
  444.    ###< drop table if exists crash_q 
  445.    ###> OK
  446.    ###
  447.    ###As far as all queries returned OK, result is YES
  448. drop_index=with 'ON' # drop index
  449.    ###< drop index crash_q
  450.    ###> execute error:You 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
  451.    ###
  452.    ###< drop index crash_q from crash_me
  453.    ###> execute error:You 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
  454.    ###
  455.    ###< drop index crash_q on crash_me
  456.    ###> OK
  457. drop_requires_cascade=no # drop table require cascade/restrict
  458.    ###< create table crash_me (a integer not null)
  459.    ###> OK
  460.    ###< drop table crash_me
  461.    ###> OK
  462. drop_restrict=yes # drop table with cascade/restrict
  463.    ###< create table crash_q (a int)
  464.    ###> OK
  465.    ###< drop table crash_q restrict
  466.    ###> OK
  467.    ###
  468.    ###As far as all queries returned OK, result is YES
  469. end_colon=yes # allows end ';'
  470.    ###< select * from crash_me;
  471.    ###> OK
  472.    ###
  473.    ###As far as all queries returned OK, result is YES
  474. except=no # except
  475.    ###< select * from crash_me except select * from crash_me3
  476.    ###> execute error:You 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
  477.    ###
  478.    ###As far as some queries didnt return OK, result is NO
  479. except_all=no # except all
  480.    ###< select * from crash_me except all select * from crash_me3
  481.    ###> execute error:You 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
  482.    ###
  483.    ###As far as some queries didnt return OK, result is NO
  484. except_all_incompat=no # except all (incompatible lists)
  485.    ###< select * from crash_me except all select * from crash_me2
  486.    ###> execute error:You 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
  487.    ###
  488.    ###As far as some queries didnt return OK, result is NO
  489. except_incompat=no # except (incompatible lists)
  490.    ###< select * from crash_me except select * from crash_me2
  491.    ###> execute error:You 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
  492.    ###
  493.    ###As far as some queries didnt return OK, result is NO
  494. field_name_case=yes # case independent field names
  495.    ###< create table crash_q (q integer)
  496.    ###> OK
  497.    ###< insert into crash_q(Q) values (1)
  498.    ###> OK
  499.    ###< drop table crash_q 
  500.    ###> OK
  501.    ###
  502.    ###As far as all queries returned OK, result is YES
  503. float_int_expr=yes # mixing of integer and float in expression
  504.    ###< select 1+1.0 
  505.    ###> OK
  506.    ###
  507.    ###As far as all queries returned OK, result is YES
  508. foreign_key=syntax only # foreign keys
  509.    ###< create table crash_me_qf (a integer not null,primary key (a)) 
  510.    ###> OK
  511.    ###
  512.    ###< create table crash_me_qf2 (a integer not null,foreign key (a) references crash_me_qf (a)) 
  513.    ###> OK
  514.    ###
  515.    ###< insert into crash_me_qf values (1)
  516.    ###> OK
  517.    ###
  518.    ###< insert into crash_me_qf2 values (2)
  519.    ###> OK
  520.    ###
  521.    ###< drop table crash_me_qf2 
  522.    ###> OK
  523.    ###
  524.    ###< drop table crash_me_qf 
  525.    ###> OK
  526. full_outer_join=no # full outer join
  527.    ###< select crash_me.a from crash_me full join crash_me2 ON 
  528.    ###       crash_me.a=crash_me2.a
  529.    ###> execute error:Unknown table 'crash_me' in field list
  530.    ###
  531.    ###As far as some queries didnt return OK, result is NO
  532. func_extra_!=yes # Function NOT as '!' in SELECT
  533.    ###
  534.    ###<select ! 1 
  535.    ###>0
  536. func_extra_%=yes # Function MOD as %
  537.    ###
  538.    ###<select 10%7 
  539.    ###>3
  540. func_extra_&=yes # Function & (bitwise and)
  541.    ###
  542.    ###<select 5 & 3 
  543.    ###>1
  544. func_extra_&&=yes # Function AND as '&&'
  545.    ###
  546.    ###<select 1=1 && 2=2 
  547.    ###>1
  548. func_extra_<>=yes # Function <> in SELECT
  549.    ###
  550.    ###<select 1<>1 
  551.    ###>0
  552. func_extra_==yes # Function =
  553.    ###
  554.    ###<select (1=1) 
  555.    ###>1
  556. func_extra_add_months=no # Function ADD_MONTHS
  557.    ###
  558.    ###<select add_months('1997-01-01',1) from crash_me_d
  559.    ###> 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
  560. func_extra_adddate=yes # Function ADDDATE
  561.    ###
  562.    ###<select ADDDATE('2002-12-01',3) from crash_me_d
  563.    ###>2002-12-04
  564. func_extra_addtime=yes # Function ADDTIME
  565.    ###
  566.    ###<select ADDTIME('20:02:12','00:00:03') 
  567.    ###>20:02:15
  568. func_extra_alpha=no # Function ALPHA
  569.    ###
  570.    ###<select alpha('A