Bug#21114 (Foreign key creation fails to table with name format)

Fixed the tests for case insensitive platforms
parent 18fb4abf
drop table if exists ABS; drop table if exists abs;
drop table if exists bug21114_child; drop table if exists bug21114_child;
SHOW CREATE TABLE ABS; SHOW CREATE TABLE abs;
Table Create Table Table Create Table
ABS CREATE TABLE `ABS` ( abs CREATE TABLE `abs` (
`col1` int(11) NOT NULL, `col1` int(11) NOT NULL,
`col2` int(11) NOT NULL, `col2` int(11) NOT NULL,
`col3` varchar(10) DEFAULT NULL, `col3` varchar(10) DEFAULT NULL,
...@@ -18,16 +18,16 @@ bug21114_child CREATE TABLE `bug21114_child` ( ...@@ -18,16 +18,16 @@ bug21114_child CREATE TABLE `bug21114_child` (
`fk_col4` int(11) NOT NULL, `fk_col4` int(11) NOT NULL,
KEY `fk_fct` (`fk_col1`,`fk_col2`), KEY `fk_fct` (`fk_col1`,`fk_col2`),
KEY `fk_fct_space` (`fk_col3`,`fk_col4`), KEY `fk_fct_space` (`fk_col3`,`fk_col4`),
CONSTRAINT `fk_fct` FOREIGN KEY (`fk_col1`, `fk_col2`) REFERENCES `ABS` (`col1`, `col2`), CONSTRAINT `fk_fct` FOREIGN KEY (`fk_col1`, `fk_col2`) REFERENCES `abs` (`col1`, `col2`),
CONSTRAINT `fk_fct_space` FOREIGN KEY (`fk_col3`, `fk_col4`) REFERENCES `ABS` (`col1`, `col2`) CONSTRAINT `fk_fct_space` FOREIGN KEY (`fk_col3`, `fk_col4`) REFERENCES `abs` (`col1`, `col2`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 ) ENGINE=InnoDB DEFAULT CHARSET=latin1
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE ABS; DROP TABLE abs;
drop table if exists FIELD; drop table if exists field;
drop table if exists bug21114_child; drop table if exists bug21114_child;
SHOW CREATE TABLE FIELD; SHOW CREATE TABLE field;
Table Create Table Table Create Table
FIELD CREATE TABLE `FIELD` ( field CREATE TABLE `field` (
`col1` int(11) NOT NULL, `col1` int(11) NOT NULL,
`col2` int(11) NOT NULL, `col2` int(11) NOT NULL,
`col3` varchar(10) DEFAULT NULL, `col3` varchar(10) DEFAULT NULL,
...@@ -43,16 +43,16 @@ bug21114_child CREATE TABLE `bug21114_child` ( ...@@ -43,16 +43,16 @@ bug21114_child CREATE TABLE `bug21114_child` (
`fk_col4` int(11) NOT NULL, `fk_col4` int(11) NOT NULL,
KEY `fk_fct` (`fk_col1`,`fk_col2`), KEY `fk_fct` (`fk_col1`,`fk_col2`),
KEY `fk_fct_space` (`fk_col3`,`fk_col4`), KEY `fk_fct_space` (`fk_col3`,`fk_col4`),
CONSTRAINT `fk_fct` FOREIGN KEY (`fk_col1`, `fk_col2`) REFERENCES `FIELD` (`col1`, `col2`), CONSTRAINT `fk_fct` FOREIGN KEY (`fk_col1`, `fk_col2`) REFERENCES `field` (`col1`, `col2`),
CONSTRAINT `fk_fct_space` FOREIGN KEY (`fk_col3`, `fk_col4`) REFERENCES `FIELD` (`col1`, `col2`) CONSTRAINT `fk_fct_space` FOREIGN KEY (`fk_col3`, `fk_col4`) REFERENCES `field` (`col1`, `col2`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 ) ENGINE=InnoDB DEFAULT CHARSET=latin1
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE FIELD; DROP TABLE field;
drop table if exists FORMAT; drop table if exists format;
drop table if exists bug21114_child; drop table if exists bug21114_child;
SHOW CREATE TABLE FORMAT; SHOW CREATE TABLE format;
Table Create Table Table Create Table
FORMAT CREATE TABLE `FORMAT` ( format CREATE TABLE `format` (
`col1` int(11) NOT NULL, `col1` int(11) NOT NULL,
`col2` int(11) NOT NULL, `col2` int(11) NOT NULL,
`col3` varchar(10) DEFAULT NULL, `col3` varchar(10) DEFAULT NULL,
...@@ -68,800 +68,800 @@ bug21114_child CREATE TABLE `bug21114_child` ( ...@@ -68,800 +68,800 @@ bug21114_child CREATE TABLE `bug21114_child` (
`fk_col4` int(11) NOT NULL, `fk_col4` int(11) NOT NULL,
KEY `fk_fct` (`fk_col1`,`fk_col2`), KEY `fk_fct` (`fk_col1`,`fk_col2`),
KEY `fk_fct_space` (`fk_col3`,`fk_col4`), KEY `fk_fct_space` (`fk_col3`,`fk_col4`),
CONSTRAINT `fk_fct` FOREIGN KEY (`fk_col1`, `fk_col2`) REFERENCES `FORMAT` (`col1`, `col2`), CONSTRAINT `fk_fct` FOREIGN KEY (`fk_col1`, `fk_col2`) REFERENCES `format` (`col1`, `col2`),
CONSTRAINT `fk_fct_space` FOREIGN KEY (`fk_col3`, `fk_col4`) REFERENCES `FORMAT` (`col1`, `col2`) CONSTRAINT `fk_fct_space` FOREIGN KEY (`fk_col3`, `fk_col4`) REFERENCES `format` (`col1`, `col2`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 ) ENGINE=InnoDB DEFAULT CHARSET=latin1
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE FORMAT; DROP TABLE format;
drop table if exists ACOS; drop table if exists acos;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE ACOS; DROP TABLE acos;
drop table if exists ADDDATE; drop table if exists adddate;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE ADDDATE; DROP TABLE adddate;
drop table if exists ADDTIME; drop table if exists addtime;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE ADDTIME; DROP TABLE addtime;
drop table if exists AES_DECRYPT; drop table if exists aes_decrypt;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE AES_DECRYPT; DROP TABLE aes_decrypt;
drop table if exists AES_ENCRYPT; drop table if exists aes_encrypt;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE AES_ENCRYPT; DROP TABLE aes_encrypt;
drop table if exists AREA; drop table if exists area;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE AREA; DROP TABLE area;
drop table if exists ASBINARY; drop table if exists asbinary;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE ASBINARY; DROP TABLE asbinary;
drop table if exists ASIN; drop table if exists asin;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE ASIN; DROP TABLE asin;
drop table if exists ASTEXT; drop table if exists astext;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE ASTEXT; DROP TABLE astext;
drop table if exists ASWKB; drop table if exists aswkb;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE ASWKB; DROP TABLE aswkb;
drop table if exists ASWKT; drop table if exists aswkt;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE ASWKT; DROP TABLE aswkt;
drop table if exists ATAN; drop table if exists atan;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE ATAN; DROP TABLE atan;
drop table if exists ATAN2; drop table if exists atan2;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE ATAN2; DROP TABLE atan2;
drop table if exists BENCHMARK; drop table if exists benchmark;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE BENCHMARK; DROP TABLE benchmark;
drop table if exists BIN; drop table if exists bin;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE BIN; DROP TABLE bin;
drop table if exists BIT_COUNT; drop table if exists bit_count;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE BIT_COUNT; DROP TABLE bit_count;
drop table if exists BIT_LENGTH; drop table if exists bit_length;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE BIT_LENGTH; DROP TABLE bit_length;
drop table if exists CEIL; drop table if exists ceil;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE CEIL; DROP TABLE ceil;
drop table if exists CEILING; drop table if exists ceiling;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE CEILING; DROP TABLE ceiling;
drop table if exists CENTROID; drop table if exists centroid;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE CENTROID; DROP TABLE centroid;
drop table if exists CHARACTER_LENGTH; drop table if exists character_length;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE CHARACTER_LENGTH; DROP TABLE character_length;
drop table if exists CHAR_LENGTH; drop table if exists char_length;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE CHAR_LENGTH; DROP TABLE char_length;
drop table if exists COERCIBILITY; drop table if exists coercibility;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE COERCIBILITY; DROP TABLE coercibility;
drop table if exists COMPRESS; drop table if exists compress;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE COMPRESS; DROP TABLE compress;
drop table if exists CONCAT; drop table if exists concat;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE CONCAT; DROP TABLE concat;
drop table if exists CONCAT_WS; drop table if exists concat_ws;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE CONCAT_WS; DROP TABLE concat_ws;
drop table if exists CONNECTION_ID; drop table if exists connection_id;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE CONNECTION_ID; DROP TABLE connection_id;
drop table if exists CONV; drop table if exists conv;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE CONV; DROP TABLE conv;
drop table if exists CONVERT_TZ; drop table if exists convert_tz;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE CONVERT_TZ; DROP TABLE convert_tz;
drop table if exists COS; drop table if exists cos;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE COS; DROP TABLE cos;
drop table if exists COT; drop table if exists cot;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE COT; DROP TABLE cot;
drop table if exists CRC32; drop table if exists crc32;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE CRC32; DROP TABLE crc32;
drop table if exists CROSSES; drop table if exists crosses;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE CROSSES; DROP TABLE crosses;
drop table if exists DATEDIFF; drop table if exists datediff;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE DATEDIFF; DROP TABLE datediff;
drop table if exists DATE_FORMAT; drop table if exists date_format;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE DATE_FORMAT; DROP TABLE date_format;
drop table if exists DAYNAME; drop table if exists dayname;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE DAYNAME; DROP TABLE dayname;
drop table if exists DAYOFMONTH; drop table if exists dayofmonth;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE DAYOFMONTH; DROP TABLE dayofmonth;
drop table if exists DAYOFWEEK; drop table if exists dayofweek;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE DAYOFWEEK; DROP TABLE dayofweek;
drop table if exists DAYOFYEAR; drop table if exists dayofyear;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE DAYOFYEAR; DROP TABLE dayofyear;
drop table if exists DECODE; drop table if exists decode;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE DECODE; DROP TABLE decode;
drop table if exists DEGREES; drop table if exists degrees;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE DEGREES; DROP TABLE degrees;
drop table if exists DES_DECRYPT; drop table if exists des_decrypt;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE DES_DECRYPT; DROP TABLE des_decrypt;
drop table if exists DES_ENCRYPT; drop table if exists des_encrypt;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE DES_ENCRYPT; DROP TABLE des_encrypt;
drop table if exists DIMENSION; drop table if exists dimension;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE DIMENSION; DROP TABLE dimension;
drop table if exists DISJOINT; drop table if exists disjoint;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE DISJOINT; DROP TABLE disjoint;
drop table if exists ELT; drop table if exists elt;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE ELT; DROP TABLE elt;
drop table if exists ENCODE; drop table if exists encode;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE ENCODE; DROP TABLE encode;
drop table if exists ENCRYPT; drop table if exists encrypt;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE ENCRYPT; DROP TABLE encrypt;
drop table if exists ENDPOINT; drop table if exists endpoint;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE ENDPOINT; DROP TABLE endpoint;
drop table if exists ENVELOPE; drop table if exists envelope;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE ENVELOPE; DROP TABLE envelope;
drop table if exists EQUALS; drop table if exists equals;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE EQUALS; DROP TABLE equals;
drop table if exists EXP; drop table if exists exp;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE EXP; DROP TABLE exp;
drop table if exists EXPORT_SET; drop table if exists export_set;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE EXPORT_SET; DROP TABLE export_set;
drop table if exists EXTERIORRING; drop table if exists exteriorring;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE EXTERIORRING; DROP TABLE exteriorring;
drop table if exists EXTRACTVALUE; drop table if exists extractvalue;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE EXTRACTVALUE; DROP TABLE extractvalue;
drop table if exists FIND_IN_SET; drop table if exists find_in_set;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE FIND_IN_SET; DROP TABLE find_in_set;
drop table if exists FLOOR; drop table if exists floor;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE FLOOR; DROP TABLE floor;
drop table if exists FOUND_ROWS; drop table if exists found_rows;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE FOUND_ROWS; DROP TABLE found_rows;
drop table if exists FROM_DAYS; drop table if exists from_days;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE FROM_DAYS; DROP TABLE from_days;
drop table if exists FROM_UNIXTIME; drop table if exists from_unixtime;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE FROM_UNIXTIME; DROP TABLE from_unixtime;
drop table if exists GEOMCOLLFROMTEXT; drop table if exists geomcollfromtext;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE GEOMCOLLFROMTEXT; DROP TABLE geomcollfromtext;
drop table if exists GEOMCOLLFROMWKB; drop table if exists geomcollfromwkb;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE GEOMCOLLFROMWKB; DROP TABLE geomcollfromwkb;
drop table if exists GEOMETRYCOLLECTIONFROMTEXT; drop table if exists geometrycollectionfromtext;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE GEOMETRYCOLLECTIONFROMTEXT; DROP TABLE geometrycollectionfromtext;
drop table if exists GEOMETRYCOLLECTIONFROMWKB; drop table if exists geometrycollectionfromwkb;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE GEOMETRYCOLLECTIONFROMWKB; DROP TABLE geometrycollectionfromwkb;
drop table if exists GEOMETRYFROMTEXT; drop table if exists geometryfromtext;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE GEOMETRYFROMTEXT; DROP TABLE geometryfromtext;
drop table if exists GEOMETRYFROMWKB; drop table if exists geometryfromwkb;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE GEOMETRYFROMWKB; DROP TABLE geometryfromwkb;
drop table if exists GEOMETRYN; drop table if exists geometryn;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE GEOMETRYN; DROP TABLE geometryn;
drop table if exists GEOMETRYTYPE; drop table if exists geometrytype;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE GEOMETRYTYPE; DROP TABLE geometrytype;
drop table if exists GEOMFROMTEXT; drop table if exists geomfromtext;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE GEOMFROMTEXT; DROP TABLE geomfromtext;
drop table if exists GEOMFROMWKB; drop table if exists geomfromwkb;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE GEOMFROMWKB; DROP TABLE geomfromwkb;
drop table if exists GET_LOCK; drop table if exists get_lock;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE GET_LOCK; DROP TABLE get_lock;
drop table if exists GLENGTH; drop table if exists glength;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE GLENGTH; DROP TABLE glength;
drop table if exists GREATEST; drop table if exists greatest;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE GREATEST; DROP TABLE greatest;
drop table if exists HEX; drop table if exists hex;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE HEX; DROP TABLE hex;
drop table if exists IFNULL; drop table if exists ifnull;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE IFNULL; DROP TABLE ifnull;
drop table if exists INET_ATON; drop table if exists inet_aton;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE INET_ATON; DROP TABLE inet_aton;
drop table if exists INET_NTOA; drop table if exists inet_ntoa;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE INET_NTOA; DROP TABLE inet_ntoa;
drop table if exists INSTR; drop table if exists instr;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE INSTR; DROP TABLE instr;
drop table if exists INTERIORRINGN; drop table if exists interiorringn;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE INTERIORRINGN; DROP TABLE interiorringn;
drop table if exists INTERSECTS; drop table if exists intersects;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE INTERSECTS; DROP TABLE intersects;
drop table if exists ISCLOSED; drop table if exists isclosed;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE ISCLOSED; DROP TABLE isclosed;
drop table if exists ISEMPTY; drop table if exists isempty;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE ISEMPTY; DROP TABLE isempty;
drop table if exists ISNULL; drop table if exists isnull;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE ISNULL; DROP TABLE isnull;
drop table if exists ISSIMPLE; drop table if exists issimple;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE ISSIMPLE; DROP TABLE issimple;
drop table if exists IS_FREE_LOCK; drop table if exists is_free_lock;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE IS_FREE_LOCK; DROP TABLE is_free_lock;
drop table if exists IS_USED_LOCK; drop table if exists is_used_lock;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE IS_USED_LOCK; DROP TABLE is_used_lock;
drop table if exists LAST_DAY; drop table if exists last_day;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE LAST_DAY; DROP TABLE last_day;
drop table if exists LAST_INSERT_ID; drop table if exists last_insert_id;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE LAST_INSERT_ID; DROP TABLE last_insert_id;
drop table if exists LCASE; drop table if exists lcase;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE LCASE; DROP TABLE lcase;
drop table if exists LEAST; drop table if exists least;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE LEAST; DROP TABLE least;
drop table if exists LENGTH; drop table if exists length;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE LENGTH; DROP TABLE length;
drop table if exists LINEFROMTEXT; drop table if exists linefromtext;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE LINEFROMTEXT; DROP TABLE linefromtext;
drop table if exists LINEFROMWKB; drop table if exists linefromwkb;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE LINEFROMWKB; DROP TABLE linefromwkb;
drop table if exists LINESTRINGFROMTEXT; drop table if exists linestringfromtext;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE LINESTRINGFROMTEXT; DROP TABLE linestringfromtext;
drop table if exists LINESTRINGFROMWKB; drop table if exists linestringfromwkb;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE LINESTRINGFROMWKB; DROP TABLE linestringfromwkb;
drop table if exists LN; drop table if exists ln;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE LN; DROP TABLE ln;
drop table if exists LOAD_FILE; drop table if exists load_file;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE LOAD_FILE; DROP TABLE load_file;
drop table if exists LOCATE; drop table if exists locate;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE LOCATE; DROP TABLE locate;
drop table if exists LOG; drop table if exists log;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE LOG; DROP TABLE log;
drop table if exists LOG10; drop table if exists log10;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE LOG10; DROP TABLE log10;
drop table if exists LOG2; drop table if exists log2;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE LOG2; DROP TABLE log2;
drop table if exists LOWER; drop table if exists lower;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE LOWER; DROP TABLE lower;
drop table if exists LPAD; drop table if exists lpad;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE LPAD; DROP TABLE lpad;
drop table if exists LTRIM; drop table if exists ltrim;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE LTRIM; DROP TABLE ltrim;
drop table if exists MAKEDATE; drop table if exists makedate;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE MAKEDATE; DROP TABLE makedate;
drop table if exists MAKETIME; drop table if exists maketime;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE MAKETIME; DROP TABLE maketime;
drop table if exists MAKE_SET; drop table if exists make_set;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE MAKE_SET; DROP TABLE make_set;
drop table if exists MASTER_POS_WAIT; drop table if exists master_pos_wait;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE MASTER_POS_WAIT; DROP TABLE master_pos_wait;
drop table if exists MBRCONTAINS; drop table if exists mbrcontains;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE MBRCONTAINS; DROP TABLE mbrcontains;
drop table if exists MBRDISJOINT; drop table if exists mbrdisjoint;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE MBRDISJOINT; DROP TABLE mbrdisjoint;
drop table if exists MBREQUAL; drop table if exists mbrequal;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE MBREQUAL; DROP TABLE mbrequal;
drop table if exists MBRINTERSECTS; drop table if exists mbrintersects;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE MBRINTERSECTS; DROP TABLE mbrintersects;
drop table if exists MBROVERLAPS; drop table if exists mbroverlaps;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE MBROVERLAPS; DROP TABLE mbroverlaps;
drop table if exists MBRTOUCHES; drop table if exists mbrtouches;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE MBRTOUCHES; DROP TABLE mbrtouches;
drop table if exists MBRWITHIN; drop table if exists mbrwithin;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE MBRWITHIN; DROP TABLE mbrwithin;
drop table if exists MD5; drop table if exists md5;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE MD5; DROP TABLE md5;
drop table if exists MLINEFROMTEXT; drop table if exists mlinefromtext;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE MLINEFROMTEXT; DROP TABLE mlinefromtext;
drop table if exists MLINEFROMWKB; drop table if exists mlinefromwkb;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE MLINEFROMWKB; DROP TABLE mlinefromwkb;
drop table if exists MONTHNAME; drop table if exists monthname;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE MONTHNAME; DROP TABLE monthname;
drop table if exists MPOINTFROMTEXT; drop table if exists mpointfromtext;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE MPOINTFROMTEXT; DROP TABLE mpointfromtext;
drop table if exists MPOINTFROMWKB; drop table if exists mpointfromwkb;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE MPOINTFROMWKB; DROP TABLE mpointfromwkb;
drop table if exists MPOLYFROMTEXT; drop table if exists mpolyfromtext;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE MPOLYFROMTEXT; DROP TABLE mpolyfromtext;
drop table if exists MPOLYFROMWKB; drop table if exists mpolyfromwkb;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE MPOLYFROMWKB; DROP TABLE mpolyfromwkb;
drop table if exists MULTILINESTRINGFROMTEXT; drop table if exists multilinestringfromtext;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE MULTILINESTRINGFROMTEXT; DROP TABLE multilinestringfromtext;
drop table if exists MULTILINESTRINGFROMWKB; drop table if exists multilinestringfromwkb;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE MULTILINESTRINGFROMWKB; DROP TABLE multilinestringfromwkb;
drop table if exists MULTIPOINTFROMTEXT; drop table if exists multipointfromtext;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE MULTIPOINTFROMTEXT; DROP TABLE multipointfromtext;
drop table if exists MULTIPOINTFROMWKB; drop table if exists multipointfromwkb;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE MULTIPOINTFROMWKB; DROP TABLE multipointfromwkb;
drop table if exists MULTIPOLYGONFROMTEXT; drop table if exists multipolygonfromtext;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE MULTIPOLYGONFROMTEXT; DROP TABLE multipolygonfromtext;
drop table if exists MULTIPOLYGONFROMWKB; drop table if exists multipolygonfromwkb;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE MULTIPOLYGONFROMWKB; DROP TABLE multipolygonfromwkb;
drop table if exists NAME_CONST; drop table if exists name_const;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE NAME_CONST; DROP TABLE name_const;
drop table if exists NULLIF; drop table if exists nullif;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE NULLIF; DROP TABLE nullif;
drop table if exists NUMGEOMETRIES; drop table if exists numgeometries;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE NUMGEOMETRIES; DROP TABLE numgeometries;
drop table if exists NUMINTERIORRINGS; drop table if exists numinteriorrings;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE NUMINTERIORRINGS; DROP TABLE numinteriorrings;
drop table if exists NUMPOINTS; drop table if exists numpoints;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE NUMPOINTS; DROP TABLE numpoints;
drop table if exists OCT; drop table if exists oct;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE OCT; DROP TABLE oct;
drop table if exists OCTET_LENGTH; drop table if exists octet_length;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE OCTET_LENGTH; DROP TABLE octet_length;
drop table if exists ORD; drop table if exists ord;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE ORD; DROP TABLE ord;
drop table if exists OVERLAPS; drop table if exists overlaps;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE OVERLAPS; DROP TABLE overlaps;
drop table if exists PERIOD_ADD; drop table if exists period_add;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE PERIOD_ADD; DROP TABLE period_add;
drop table if exists PERIOD_DIFF; drop table if exists period_diff;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE PERIOD_DIFF; DROP TABLE period_diff;
drop table if exists PI; drop table if exists pi;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE PI; DROP TABLE pi;
drop table if exists POINTFROMTEXT; drop table if exists pointfromtext;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE POINTFROMTEXT; DROP TABLE pointfromtext;
drop table if exists POINTFROMWKB; drop table if exists pointfromwkb;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE POINTFROMWKB; DROP TABLE pointfromwkb;
drop table if exists POINTN; drop table if exists pointn;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE POINTN; DROP TABLE pointn;
drop table if exists POLYFROMTEXT; drop table if exists polyfromtext;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE POLYFROMTEXT; DROP TABLE polyfromtext;
drop table if exists POLYFROMWKB; drop table if exists polyfromwkb;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE POLYFROMWKB; DROP TABLE polyfromwkb;
drop table if exists POLYGONFROMTEXT; drop table if exists polygonfromtext;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE POLYGONFROMTEXT; DROP TABLE polygonfromtext;
drop table if exists POLYGONFROMWKB; drop table if exists polygonfromwkb;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE POLYGONFROMWKB; DROP TABLE polygonfromwkb;
drop table if exists POW; drop table if exists pow;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE POW; DROP TABLE pow;
drop table if exists POWER; drop table if exists power;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE POWER; DROP TABLE power;
drop table if exists QUOTE; drop table if exists quote;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE QUOTE; DROP TABLE quote;
drop table if exists RADIANS; drop table if exists radians;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE RADIANS; DROP TABLE radians;
drop table if exists RAND; drop table if exists rand;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE RAND; DROP TABLE rand;
drop table if exists RELEASE_LOCK; drop table if exists release_lock;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE RELEASE_LOCK; DROP TABLE release_lock;
drop table if exists REVERSE; drop table if exists reverse;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE REVERSE; DROP TABLE reverse;
drop table if exists ROUND; drop table if exists round;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE ROUND; DROP TABLE round;
drop table if exists ROW_COUNT; drop table if exists row_count;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE ROW_COUNT; DROP TABLE row_count;
drop table if exists RPAD; drop table if exists rpad;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE RPAD; DROP TABLE rpad;
drop table if exists RTRIM; drop table if exists rtrim;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE RTRIM; DROP TABLE rtrim;
drop table if exists SEC_TO_TIME; drop table if exists sec_to_time;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE SEC_TO_TIME; DROP TABLE sec_to_time;
drop table if exists SESSION_USER; drop table if exists session_user;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE SESSION_USER; DROP TABLE session_user;
drop table if exists SHA; drop table if exists sha;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE SHA; DROP TABLE sha;
drop table if exists SHA1; drop table if exists sha1;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE SHA1; DROP TABLE sha1;
drop table if exists SIGN; drop table if exists sign;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE SIGN; DROP TABLE sign;
drop table if exists SIN; drop table if exists sin;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE SIN; DROP TABLE sin;
drop table if exists SLEEP; drop table if exists sleep;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE SLEEP; DROP TABLE sleep;
drop table if exists SOUNDEX; drop table if exists soundex;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE SOUNDEX; DROP TABLE soundex;
drop table if exists SPACE; drop table if exists space;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE SPACE; DROP TABLE space;
drop table if exists SQRT; drop table if exists sqrt;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE SQRT; DROP TABLE sqrt;
drop table if exists SRID; drop table if exists srid;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE SRID; DROP TABLE srid;
drop table if exists STARTPOINT; drop table if exists startpoint;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE STARTPOINT; DROP TABLE startpoint;
drop table if exists STRCMP; drop table if exists strcmp;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE STRCMP; DROP TABLE strcmp;
drop table if exists STR_TO_DATE; drop table if exists str_to_date;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE STR_TO_DATE; DROP TABLE str_to_date;
drop table if exists SUBDATE; drop table if exists subdate;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE SUBDATE; DROP TABLE subdate;
drop table if exists SUBSTRING_INDEX; drop table if exists substring_index;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE SUBSTRING_INDEX; DROP TABLE substring_index;
drop table if exists SUBTIME; drop table if exists subtime;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE SUBTIME; DROP TABLE subtime;
drop table if exists SYSTEM_USER; drop table if exists system_user;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE SYSTEM_USER; DROP TABLE system_user;
drop table if exists TAN; drop table if exists tan;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE TAN; DROP TABLE tan;
drop table if exists TIMEDIFF; drop table if exists timediff;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE TIMEDIFF; DROP TABLE timediff;
drop table if exists TIME_FORMAT; drop table if exists time_format;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE TIME_FORMAT; DROP TABLE time_format;
drop table if exists TIME_TO_SEC; drop table if exists time_to_sec;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE TIME_TO_SEC; DROP TABLE time_to_sec;
drop table if exists TOUCHES; drop table if exists touches;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE TOUCHES; DROP TABLE touches;
drop table if exists TO_DAYS; drop table if exists to_days;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE TO_DAYS; DROP TABLE to_days;
drop table if exists UCASE; drop table if exists ucase;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE UCASE; DROP TABLE ucase;
drop table if exists UNCOMPRESS; drop table if exists uncompress;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE UNCOMPRESS; DROP TABLE uncompress;
drop table if exists UNCOMPRESSED_LENGTH; drop table if exists uncompressed_length;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE UNCOMPRESSED_LENGTH; DROP TABLE uncompressed_length;
drop table if exists UNHEX; drop table if exists unhex;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE UNHEX; DROP TABLE unhex;
drop table if exists UNIX_TIMESTAMP; drop table if exists unix_timestamp;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE UNIX_TIMESTAMP; DROP TABLE unix_timestamp;
drop table if exists UPDATEXML; drop table if exists updatexml;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE UPDATEXML; DROP TABLE updatexml;
drop table if exists UPPER; drop table if exists upper;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE UPPER; DROP TABLE upper;
drop table if exists UUID; drop table if exists uuid;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE UUID; DROP TABLE uuid;
drop table if exists VERSION; drop table if exists version;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE VERSION; DROP TABLE version;
drop table if exists WEEKDAY; drop table if exists weekday;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE WEEKDAY; DROP TABLE weekday;
drop table if exists WEEKOFYEAR; drop table if exists weekofyear;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE WEEKOFYEAR; DROP TABLE weekofyear;
drop table if exists WITHIN; drop table if exists within;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE WITHIN; DROP TABLE within;
drop table if exists X; drop table if exists x;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE X; DROP TABLE x;
drop table if exists Y; drop table if exists y;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE Y; DROP TABLE y;
drop table if exists YEARWEEK; drop table if exists yearweek;
drop table if exists bug21114_child; drop table if exists bug21114_child;
DROP TABLE bug21114_child; DROP TABLE bug21114_child;
DROP TABLE YEARWEEK; DROP TABLE yearweek;
...@@ -11,11 +11,11 @@ let $engine_type=InnoDb; ...@@ -11,11 +11,11 @@ let $engine_type=InnoDb;
let $verbose=1; let $verbose=1;
let $FCT=ABS; let $FCT=abs;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=FIELD; let $FCT=field;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=FORMAT; let $FCT=format;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
# Ignoring the result of SHOW CREATE (this generates too much noise) # Ignoring the result of SHOW CREATE (this generates too much noise)
...@@ -23,400 +23,400 @@ let $FCT=FORMAT; ...@@ -23,400 +23,400 @@ let $FCT=FORMAT;
let verbose=0; let verbose=0;
let $FCT=ACOS; let $FCT=acos;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=ADDDATE; let $FCT=adddate;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=ADDTIME; let $FCT=addtime;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=AES_DECRYPT; let $FCT=aes_decrypt;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=AES_ENCRYPT; let $FCT=aes_encrypt;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=AREA; let $FCT=area;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=ASBINARY; let $FCT=asbinary;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=ASIN; let $FCT=asin;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=ASTEXT; let $FCT=astext;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=ASWKB; let $FCT=aswkb;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=ASWKT; let $FCT=aswkt;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=ATAN; let $FCT=atan;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=ATAN2; let $FCT=atan2;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=BENCHMARK; let $FCT=benchmark;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=BIN; let $FCT=bin;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=BIT_COUNT; let $FCT=bit_count;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=BIT_LENGTH; let $FCT=bit_length;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=CEIL; let $FCT=ceil;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=CEILING; let $FCT=ceiling;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=CENTROID; let $FCT=centroid;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=CHARACTER_LENGTH; let $FCT=character_length;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=CHAR_LENGTH; let $FCT=char_length;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=COERCIBILITY; let $FCT=coercibility;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=COMPRESS; let $FCT=compress;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=CONCAT; let $FCT=concat;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=CONCAT_WS; let $FCT=concat_ws;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=CONNECTION_ID; let $FCT=connection_id;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=CONV; let $FCT=conv;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=CONVERT_TZ; let $FCT=convert_tz;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=COS; let $FCT=cos;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=COT; let $FCT=cot;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=CRC32; let $FCT=crc32;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=CROSSES; let $FCT=crosses;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=DATEDIFF; let $FCT=datediff;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=DATE_FORMAT; let $FCT=date_format;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=DAYNAME; let $FCT=dayname;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=DAYOFMONTH; let $FCT=dayofmonth;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=DAYOFWEEK; let $FCT=dayofweek;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=DAYOFYEAR; let $FCT=dayofyear;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=DECODE; let $FCT=decode;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=DEGREES; let $FCT=degrees;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=DES_DECRYPT; let $FCT=des_decrypt;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=DES_ENCRYPT; let $FCT=des_encrypt;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=DIMENSION; let $FCT=dimension;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=DISJOINT; let $FCT=disjoint;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=ELT; let $FCT=elt;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=ENCODE; let $FCT=encode;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=ENCRYPT; let $FCT=encrypt;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=ENDPOINT; let $FCT=endpoint;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=ENVELOPE; let $FCT=envelope;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=EQUALS; let $FCT=equals;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=EXP; let $FCT=exp;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=EXPORT_SET; let $FCT=export_set;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=EXTERIORRING; let $FCT=exteriorring;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=EXTRACTVALUE; let $FCT=extractvalue;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=FIND_IN_SET; let $FCT=find_in_set;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=FLOOR; let $FCT=floor;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=FOUND_ROWS; let $FCT=found_rows;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=FROM_DAYS; let $FCT=from_days;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=FROM_UNIXTIME; let $FCT=from_unixtime;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=GEOMCOLLFROMTEXT; let $FCT=geomcollfromtext;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=GEOMCOLLFROMWKB; let $FCT=geomcollfromwkb;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=GEOMETRYCOLLECTIONFROMTEXT; let $FCT=geometrycollectionfromtext;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=GEOMETRYCOLLECTIONFROMWKB; let $FCT=geometrycollectionfromwkb;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=GEOMETRYFROMTEXT; let $FCT=geometryfromtext;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=GEOMETRYFROMWKB; let $FCT=geometryfromwkb;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=GEOMETRYN; let $FCT=geometryn;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=GEOMETRYTYPE; let $FCT=geometrytype;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=GEOMFROMTEXT; let $FCT=geomfromtext;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=GEOMFROMWKB; let $FCT=geomfromwkb;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=GET_LOCK; let $FCT=get_lock;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=GLENGTH; let $FCT=glength;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=GREATEST; let $FCT=greatest;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=HEX; let $FCT=hex;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=IFNULL; let $FCT=ifnull;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=INET_ATON; let $FCT=inet_aton;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=INET_NTOA; let $FCT=inet_ntoa;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=INSTR; let $FCT=instr;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=INTERIORRINGN; let $FCT=interiorringn;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=INTERSECTS; let $FCT=intersects;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=ISCLOSED; let $FCT=isclosed;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=ISEMPTY; let $FCT=isempty;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=ISNULL; let $FCT=isnull;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=ISSIMPLE; let $FCT=issimple;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=IS_FREE_LOCK; let $FCT=is_free_lock;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=IS_USED_LOCK; let $FCT=is_used_lock;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=LAST_DAY; let $FCT=last_day;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=LAST_INSERT_ID; let $FCT=last_insert_id;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=LCASE; let $FCT=lcase;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=LEAST; let $FCT=least;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=LENGTH; let $FCT=length;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=LINEFROMTEXT; let $FCT=linefromtext;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=LINEFROMWKB; let $FCT=linefromwkb;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=LINESTRINGFROMTEXT; let $FCT=linestringfromtext;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=LINESTRINGFROMWKB; let $FCT=linestringfromwkb;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=LN; let $FCT=ln;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=LOAD_FILE; let $FCT=load_file;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=LOCATE; let $FCT=locate;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=LOG; let $FCT=log;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=LOG10; let $FCT=log10;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=LOG2; let $FCT=log2;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=LOWER; let $FCT=lower;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=LPAD; let $FCT=lpad;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=LTRIM; let $FCT=ltrim;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=MAKEDATE; let $FCT=makedate;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=MAKETIME; let $FCT=maketime;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=MAKE_SET; let $FCT=make_set;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=MASTER_POS_WAIT; let $FCT=master_pos_wait;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=MBRCONTAINS; let $FCT=mbrcontains;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=MBRDISJOINT; let $FCT=mbrdisjoint;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=MBREQUAL; let $FCT=mbrequal;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=MBRINTERSECTS; let $FCT=mbrintersects;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=MBROVERLAPS; let $FCT=mbroverlaps;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=MBRTOUCHES; let $FCT=mbrtouches;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=MBRWITHIN; let $FCT=mbrwithin;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=MD5; let $FCT=md5;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=MLINEFROMTEXT; let $FCT=mlinefromtext;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=MLINEFROMWKB; let $FCT=mlinefromwkb;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=MONTHNAME; let $FCT=monthname;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=MPOINTFROMTEXT; let $FCT=mpointfromtext;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=MPOINTFROMWKB; let $FCT=mpointfromwkb;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=MPOLYFROMTEXT; let $FCT=mpolyfromtext;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=MPOLYFROMWKB; let $FCT=mpolyfromwkb;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=MULTILINESTRINGFROMTEXT; let $FCT=multilinestringfromtext;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=MULTILINESTRINGFROMWKB; let $FCT=multilinestringfromwkb;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=MULTIPOINTFROMTEXT; let $FCT=multipointfromtext;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=MULTIPOINTFROMWKB; let $FCT=multipointfromwkb;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=MULTIPOLYGONFROMTEXT; let $FCT=multipolygonfromtext;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=MULTIPOLYGONFROMWKB; let $FCT=multipolygonfromwkb;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=NAME_CONST; let $FCT=name_const;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=NULLIF; let $FCT=nullif;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=NUMGEOMETRIES; let $FCT=numgeometries;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=NUMINTERIORRINGS; let $FCT=numinteriorrings;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=NUMPOINTS; let $FCT=numpoints;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=OCT; let $FCT=oct;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=OCTET_LENGTH; let $FCT=octet_length;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=ORD; let $FCT=ord;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=OVERLAPS; let $FCT=overlaps;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=PERIOD_ADD; let $FCT=period_add;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=PERIOD_DIFF; let $FCT=period_diff;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=PI; let $FCT=pi;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=POINTFROMTEXT; let $FCT=pointfromtext;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=POINTFROMWKB; let $FCT=pointfromwkb;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=POINTN; let $FCT=pointn;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=POLYFROMTEXT; let $FCT=polyfromtext;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=POLYFROMWKB; let $FCT=polyfromwkb;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=POLYGONFROMTEXT; let $FCT=polygonfromtext;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=POLYGONFROMWKB; let $FCT=polygonfromwkb;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=POW; let $FCT=pow;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=POWER; let $FCT=power;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=QUOTE; let $FCT=quote;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=RADIANS; let $FCT=radians;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=RAND; let $FCT=rand;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=RELEASE_LOCK; let $FCT=release_lock;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=REVERSE; let $FCT=reverse;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=ROUND; let $FCT=round;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=ROW_COUNT; let $FCT=row_count;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=RPAD; let $FCT=rpad;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=RTRIM; let $FCT=rtrim;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=SEC_TO_TIME; let $FCT=sec_to_time;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=SESSION_USER; let $FCT=session_user;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=SHA; let $FCT=sha;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=SHA1; let $FCT=sha1;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=SIGN; let $FCT=sign;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=SIN; let $FCT=sin;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=SLEEP; let $FCT=sleep;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=SOUNDEX; let $FCT=soundex;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=SPACE; let $FCT=space;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=SQRT; let $FCT=sqrt;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=SRID; let $FCT=srid;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=STARTPOINT; let $FCT=startpoint;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=STRCMP; let $FCT=strcmp;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=STR_TO_DATE; let $FCT=str_to_date;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=SUBDATE; let $FCT=subdate;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=SUBSTRING_INDEX; let $FCT=substring_index;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=SUBTIME; let $FCT=subtime;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=SYSTEM_USER; let $FCT=system_user;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=TAN; let $FCT=tan;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=TIMEDIFF; let $FCT=timediff;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=TIME_FORMAT; let $FCT=time_format;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=TIME_TO_SEC; let $FCT=time_to_sec;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=TOUCHES; let $FCT=touches;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=TO_DAYS; let $FCT=to_days;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=UCASE; let $FCT=ucase;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=UNCOMPRESS; let $FCT=uncompress;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=UNCOMPRESSED_LENGTH; let $FCT=uncompressed_length;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=UNHEX; let $FCT=unhex;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=UNIX_TIMESTAMP; let $FCT=unix_timestamp;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=UPDATEXML; let $FCT=updatexml;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=UPPER; let $FCT=upper;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=UUID; let $FCT=uuid;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=VERSION; let $FCT=version;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=WEEKDAY; let $FCT=weekday;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=WEEKOFYEAR; let $FCT=weekofyear;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=WITHIN; let $FCT=within;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=X; let $FCT=x;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=Y; let $FCT=y;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
let $FCT=YEARWEEK; let $FCT=yearweek;
-- source include/parser_bug21114.inc -- source include/parser_bug21114.inc
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment