mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
9655f5fb03
According to some internal communication, these two functions are place holders for future enhancements. Because they use a variable number of parameters, the implementation defined a reserved keyword for them in the parser grammar. Unfortunately, doing so creates a bug similar to Bug 21114 reported for the function FORMAT. In the 5.1 code base, due to improvements in the code implemented with bug 21114, having a reserved keyword for functions with a variable number of arguments is not needed any more by the implementation. As a result, this fix removes the place-holder implementation, and removes the unnecessary reserved keywords. Should the functions UNIQUE_USERS and GROUP_UNIQUE_USERS be finally implemented in a later release, the implementation should sub class Create_native_func in sql/item_create.cc. For example, see the class Create_func_concat.
476 lines
29 KiB
Text
476 lines
29 KiB
Text
SET @save_sql_mode=@@sql_mode;
|
|
set SQL_MODE='';
|
|
create table ADDDATE(a int);
|
|
drop table ADDDATE;
|
|
create table ADDDATE (a int);
|
|
drop table ADDDATE;
|
|
create table BIT_AND(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'BIT_AND(a int)' at line 1
|
|
create table BIT_AND (a int);
|
|
drop table BIT_AND;
|
|
create table BIT_OR(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'BIT_OR(a int)' at line 1
|
|
create table BIT_OR (a int);
|
|
drop table BIT_OR;
|
|
create table BIT_XOR(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'BIT_XOR(a int)' at line 1
|
|
create table BIT_XOR (a int);
|
|
drop table BIT_XOR;
|
|
create table CAST(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'CAST(a int)' at line 1
|
|
create table CAST (a int);
|
|
drop table CAST;
|
|
create table COUNT(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'COUNT(a int)' at line 1
|
|
create table COUNT (a int);
|
|
drop table COUNT;
|
|
create table CURDATE(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'CURDATE(a int)' at line 1
|
|
create table CURDATE (a int);
|
|
drop table CURDATE;
|
|
create table CURTIME(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'CURTIME(a int)' at line 1
|
|
create table CURTIME (a int);
|
|
drop table CURTIME;
|
|
create table DATE_ADD(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DATE_ADD(a int)' at line 1
|
|
create table DATE_ADD (a int);
|
|
drop table DATE_ADD;
|
|
create table DATE_SUB(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DATE_SUB(a int)' at line 1
|
|
create table DATE_SUB (a int);
|
|
drop table DATE_SUB;
|
|
create table EXTRACT(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'EXTRACT(a int)' at line 1
|
|
create table EXTRACT (a int);
|
|
drop table EXTRACT;
|
|
create table GROUP_CONCAT(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'GROUP_CONCAT(a int)' at line 1
|
|
create table GROUP_CONCAT (a int);
|
|
drop table GROUP_CONCAT;
|
|
create table GROUP_UNIQUE_USERS(a int);
|
|
drop table GROUP_UNIQUE_USERS;
|
|
create table GROUP_UNIQUE_USERS (a int);
|
|
drop table GROUP_UNIQUE_USERS;
|
|
create table MAX(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'MAX(a int)' at line 1
|
|
create table MAX (a int);
|
|
drop table MAX;
|
|
create table MID(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'MID(a int)' at line 1
|
|
create table MID (a int);
|
|
drop table MID;
|
|
create table MIN(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'MIN(a int)' at line 1
|
|
create table MIN (a int);
|
|
drop table MIN;
|
|
create table NOW(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NOW(a int)' at line 1
|
|
create table NOW (a int);
|
|
drop table NOW;
|
|
create table POSITION(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'POSITION(a int)' at line 1
|
|
create table POSITION (a int);
|
|
drop table POSITION;
|
|
create table SESSION_USER(a int);
|
|
drop table SESSION_USER;
|
|
create table SESSION_USER (a int);
|
|
drop table SESSION_USER;
|
|
create table STD(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'STD(a int)' at line 1
|
|
create table STD (a int);
|
|
drop table STD;
|
|
create table STDDEV(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'STDDEV(a int)' at line 1
|
|
create table STDDEV (a int);
|
|
drop table STDDEV;
|
|
create table STDDEV_POP(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'STDDEV_POP(a int)' at line 1
|
|
create table STDDEV_POP (a int);
|
|
drop table STDDEV_POP;
|
|
create table STDDEV_SAMP(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'STDDEV_SAMP(a int)' at line 1
|
|
create table STDDEV_SAMP (a int);
|
|
drop table STDDEV_SAMP;
|
|
create table SUBDATE(a int);
|
|
drop table SUBDATE;
|
|
create table SUBDATE (a int);
|
|
drop table SUBDATE;
|
|
create table SUBSTR(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SUBSTR(a int)' at line 1
|
|
create table SUBSTR (a int);
|
|
drop table SUBSTR;
|
|
create table SUBSTRING(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SUBSTRING(a int)' at line 1
|
|
create table SUBSTRING (a int);
|
|
drop table SUBSTRING;
|
|
create table SUM(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SUM(a int)' at line 1
|
|
create table SUM (a int);
|
|
drop table SUM;
|
|
create table SYSDATE(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SYSDATE(a int)' at line 1
|
|
create table SYSDATE (a int);
|
|
drop table SYSDATE;
|
|
create table SYSTEM_USER(a int);
|
|
drop table SYSTEM_USER;
|
|
create table SYSTEM_USER (a int);
|
|
drop table SYSTEM_USER;
|
|
create table TRIM(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TRIM(a int)' at line 1
|
|
create table TRIM (a int);
|
|
drop table TRIM;
|
|
create table UNIQUE_USERS(a int);
|
|
drop table UNIQUE_USERS;
|
|
create table UNIQUE_USERS (a int);
|
|
drop table UNIQUE_USERS;
|
|
create table VARIANCE(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'VARIANCE(a int)' at line 1
|
|
create table VARIANCE (a int);
|
|
drop table VARIANCE;
|
|
create table VAR_POP(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'VAR_POP(a int)' at line 1
|
|
create table VAR_POP (a int);
|
|
drop table VAR_POP;
|
|
create table VAR_SAMP(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'VAR_SAMP(a int)' at line 1
|
|
create table VAR_SAMP (a int);
|
|
drop table VAR_SAMP;
|
|
set SQL_MODE='IGNORE_SPACE';
|
|
create table ADDDATE(a int);
|
|
drop table ADDDATE;
|
|
create table ADDDATE (a int);
|
|
drop table ADDDATE;
|
|
create table BIT_AND(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'BIT_AND(a int)' at line 1
|
|
create table BIT_AND (a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'BIT_AND (a int)' at line 1
|
|
create table BIT_OR(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'BIT_OR(a int)' at line 1
|
|
create table BIT_OR (a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'BIT_OR (a int)' at line 1
|
|
create table BIT_XOR(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'BIT_XOR(a int)' at line 1
|
|
create table BIT_XOR (a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'BIT_XOR (a int)' at line 1
|
|
create table CAST(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'CAST(a int)' at line 1
|
|
create table CAST (a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'CAST (a int)' at line 1
|
|
create table COUNT(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'COUNT(a int)' at line 1
|
|
create table COUNT (a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'COUNT (a int)' at line 1
|
|
create table CURDATE(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'CURDATE(a int)' at line 1
|
|
create table CURDATE (a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'CURDATE (a int)' at line 1
|
|
create table CURTIME(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'CURTIME(a int)' at line 1
|
|
create table CURTIME (a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'CURTIME (a int)' at line 1
|
|
create table DATE_ADD(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DATE_ADD(a int)' at line 1
|
|
create table DATE_ADD (a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DATE_ADD (a int)' at line 1
|
|
create table DATE_SUB(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DATE_SUB(a int)' at line 1
|
|
create table DATE_SUB (a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DATE_SUB (a int)' at line 1
|
|
create table EXTRACT(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'EXTRACT(a int)' at line 1
|
|
create table EXTRACT (a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'EXTRACT (a int)' at line 1
|
|
create table GROUP_CONCAT(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'GROUP_CONCAT(a int)' at line 1
|
|
create table GROUP_CONCAT (a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'GROUP_CONCAT (a int)' at line 1
|
|
create table GROUP_UNIQUE_USERS(a int);
|
|
drop table GROUP_UNIQUE_USERS;
|
|
create table GROUP_UNIQUE_USERS (a int);
|
|
drop table GROUP_UNIQUE_USERS;
|
|
create table MAX(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'MAX(a int)' at line 1
|
|
create table MAX (a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'MAX (a int)' at line 1
|
|
create table MID(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'MID(a int)' at line 1
|
|
create table MID (a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'MID (a int)' at line 1
|
|
create table MIN(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'MIN(a int)' at line 1
|
|
create table MIN (a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'MIN (a int)' at line 1
|
|
create table NOW(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NOW(a int)' at line 1
|
|
create table NOW (a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NOW (a int)' at line 1
|
|
create table POSITION(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'POSITION(a int)' at line 1
|
|
create table POSITION (a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'POSITION (a int)' at line 1
|
|
create table SESSION_USER(a int);
|
|
drop table SESSION_USER;
|
|
create table SESSION_USER (a int);
|
|
drop table SESSION_USER;
|
|
create table STD(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'STD(a int)' at line 1
|
|
create table STD (a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'STD (a int)' at line 1
|
|
create table STDDEV(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'STDDEV(a int)' at line 1
|
|
create table STDDEV (a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'STDDEV (a int)' at line 1
|
|
create table STDDEV_POP(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'STDDEV_POP(a int)' at line 1
|
|
create table STDDEV_POP (a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'STDDEV_POP (a int)' at line 1
|
|
create table STDDEV_SAMP(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'STDDEV_SAMP(a int)' at line 1
|
|
create table STDDEV_SAMP (a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'STDDEV_SAMP (a int)' at line 1
|
|
create table SUBDATE(a int);
|
|
drop table SUBDATE;
|
|
create table SUBDATE (a int);
|
|
drop table SUBDATE;
|
|
create table SUBSTR(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SUBSTR(a int)' at line 1
|
|
create table SUBSTR (a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SUBSTR (a int)' at line 1
|
|
create table SUBSTRING(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SUBSTRING(a int)' at line 1
|
|
create table SUBSTRING (a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SUBSTRING (a int)' at line 1
|
|
create table SUM(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SUM(a int)' at line 1
|
|
create table SUM (a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SUM (a int)' at line 1
|
|
create table SYSDATE(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SYSDATE(a int)' at line 1
|
|
create table SYSDATE (a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SYSDATE (a int)' at line 1
|
|
create table SYSTEM_USER(a int);
|
|
drop table SYSTEM_USER;
|
|
create table SYSTEM_USER (a int);
|
|
drop table SYSTEM_USER;
|
|
create table TRIM(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TRIM(a int)' at line 1
|
|
create table TRIM (a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TRIM (a int)' at line 1
|
|
create table UNIQUE_USERS(a int);
|
|
drop table UNIQUE_USERS;
|
|
create table UNIQUE_USERS (a int);
|
|
drop table UNIQUE_USERS;
|
|
create table VARIANCE(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'VARIANCE(a int)' at line 1
|
|
create table VARIANCE (a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'VARIANCE (a int)' at line 1
|
|
create table VAR_POP(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'VAR_POP(a int)' at line 1
|
|
create table VAR_POP (a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'VAR_POP (a int)' at line 1
|
|
create table VAR_SAMP(a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'VAR_SAMP(a int)' at line 1
|
|
create table VAR_SAMP (a int);
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'VAR_SAMP (a int)' at line 1
|
|
SET @@sql_mode=@save_sql_mode;
|
|
select pi(3.14);
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'pi'
|
|
select tan();
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'tan'
|
|
select tan(1, 2);
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'tan'
|
|
select makedate(1);
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'makedate'
|
|
select makedate(1, 2, 3);
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'makedate'
|
|
select maketime();
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'maketime'
|
|
select maketime(1);
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'maketime'
|
|
select maketime(1, 2);
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'maketime'
|
|
select maketime(1, 2, 3, 4);
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'maketime'
|
|
select atan();
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'atan'
|
|
select atan2(1, 2, 3);
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'atan2'
|
|
select concat();
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'concat'
|
|
select concat("foo");
|
|
concat("foo")
|
|
foo
|
|
select concat_ws();
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'concat_ws'
|
|
select concat_ws("foo");
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'concat_ws'
|
|
select encrypt();
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'encrypt'
|
|
select encrypt(1, 2, 3);
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'encrypt'
|
|
select des_encrypt("p1", "p2", "not expected");
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'des_encrypt'
|
|
select des_decrypt("p1", "p2", "not expected");
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'des_decrypt'
|
|
select elt();
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'elt'
|
|
select elt(1);
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'elt'
|
|
select export_set();
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'export_set'
|
|
select export_set("p1");
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'export_set'
|
|
select export_set("p1", "p2");
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'export_set'
|
|
select export_set("p1", "p2", "p3", "p4", "p5", "p6");
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'export_set'
|
|
select field();
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'field'
|
|
select field("p1");
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'field'
|
|
select from_unixtime();
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'from_unixtime'
|
|
select from_unixtime(1, 2, 3);
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'from_unixtime'
|
|
select unix_timestamp(1, 2);
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'unix_timestamp'
|
|
select greatest();
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'greatest'
|
|
select greatest(12);
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'greatest'
|
|
select last_insert_id(1, 2);
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'last_insert_id'
|
|
select least();
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'least'
|
|
select least(12);
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'least'
|
|
select locate();
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'locate'
|
|
select locate(1);
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'locate'
|
|
select locate(1, 2, 3, 4);
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'locate'
|
|
select log();
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'log'
|
|
select log(1, 2, 3);
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'log'
|
|
select make_set();
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'make_set'
|
|
select make_set(1);
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'make_set'
|
|
select master_pos_wait();
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'master_pos_wait'
|
|
select master_pos_wait(1);
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'master_pos_wait'
|
|
select master_pos_wait(1, 2, 3, 4);
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'master_pos_wait'
|
|
select rand(1, 2, 3);
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'rand'
|
|
select round(1, 2, 3);
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'round'
|
|
select yearweek();
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'yearweek'
|
|
select yearweek(1, 2, 3);
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'yearweek'
|
|
select abs(3);
|
|
abs(3)
|
|
3
|
|
select abs(3 AS three);
|
|
ERROR 42000: Incorrect parameters in the call to native function 'abs'
|
|
select abs(3 three);
|
|
ERROR 42000: Incorrect parameters in the call to native function 'abs'
|
|
select abs(3 AS "three");
|
|
ERROR 42000: Incorrect parameters in the call to native function 'abs'
|
|
select abs(3 "three");
|
|
ERROR 42000: Incorrect parameters in the call to native function 'abs'
|
|
set @bar="bar";
|
|
set @foobar="foobar";
|
|
select instr("foobar", "bar");
|
|
instr("foobar", "bar")
|
|
4
|
|
select instr("foobar" AS p1, "bar");
|
|
ERROR 42000: Incorrect parameters in the call to native function 'instr'
|
|
select instr("foobar" p1, "bar");
|
|
ERROR 42000: Incorrect parameters in the call to native function 'instr'
|
|
select instr("foobar" AS "p1", "bar");
|
|
ERROR 42000: Incorrect parameters in the call to native function 'instr'
|
|
select instr("foobar" "p1", "bar");
|
|
instr("foobar" "p1", "bar")
|
|
4
|
|
select instr(@foobar "p1", "bar");
|
|
ERROR 42000: Incorrect parameters in the call to native function 'instr'
|
|
select instr("foobar", "bar" AS p2);
|
|
ERROR 42000: Incorrect parameters in the call to native function 'instr'
|
|
select instr("foobar", "bar" p2);
|
|
ERROR 42000: Incorrect parameters in the call to native function 'instr'
|
|
select instr("foobar", "bar" AS "p2");
|
|
ERROR 42000: Incorrect parameters in the call to native function 'instr'
|
|
select instr("foobar", "bar" "p2");
|
|
instr("foobar", "bar" "p2")
|
|
0
|
|
select instr("foobar", @bar "p2");
|
|
ERROR 42000: Incorrect parameters in the call to native function 'instr'
|
|
select instr("foobar" AS p1, "bar" AS p2);
|
|
ERROR 42000: Incorrect parameters in the call to native function 'instr'
|
|
select conv(255, 10, 16);
|
|
conv(255, 10, 16)
|
|
FF
|
|
select conv(255 AS p1, 10, 16);
|
|
ERROR 42000: Incorrect parameters in the call to native function 'conv'
|
|
select conv(255 p1, 10, 16);
|
|
ERROR 42000: Incorrect parameters in the call to native function 'conv'
|
|
select conv(255 AS "p1", 10, 16);
|
|
ERROR 42000: Incorrect parameters in the call to native function 'conv'
|
|
select conv(255 "p1", 10, 16);
|
|
ERROR 42000: Incorrect parameters in the call to native function 'conv'
|
|
select conv(255, 10 AS p2, 16);
|
|
ERROR 42000: Incorrect parameters in the call to native function 'conv'
|
|
select conv(255, 10 p2, 16);
|
|
ERROR 42000: Incorrect parameters in the call to native function 'conv'
|
|
select conv(255, 10 AS "p2", 16);
|
|
ERROR 42000: Incorrect parameters in the call to native function 'conv'
|
|
select conv(255, 10 "p2", 16);
|
|
ERROR 42000: Incorrect parameters in the call to native function 'conv'
|
|
select conv(255, 10, 16 AS p3);
|
|
ERROR 42000: Incorrect parameters in the call to native function 'conv'
|
|
select conv(255, 10, 16 p3);
|
|
ERROR 42000: Incorrect parameters in the call to native function 'conv'
|
|
select conv(255, 10, 16 AS "p3");
|
|
ERROR 42000: Incorrect parameters in the call to native function 'conv'
|
|
select conv(255, 10, 16 "p3");
|
|
ERROR 42000: Incorrect parameters in the call to native function 'conv'
|
|
select conv(255 AS p1, 10 AS p2, 16 AS p3);
|
|
ERROR 42000: Incorrect parameters in the call to native function 'conv'
|
|
select atan(10);
|
|
atan(10)
|
|
1.4711276743037
|
|
select atan(10 AS p1);
|
|
ERROR 42000: Incorrect parameters in the call to native function 'atan'
|
|
select atan(10 p1);
|
|
ERROR 42000: Incorrect parameters in the call to native function 'atan'
|
|
select atan(10 AS "p1");
|
|
ERROR 42000: Incorrect parameters in the call to native function 'atan'
|
|
select atan(10 "p1");
|
|
ERROR 42000: Incorrect parameters in the call to native function 'atan'
|
|
select atan(10, 20);
|
|
atan(10, 20)
|
|
0.46364760900081
|
|
select atan(10 AS p1, 20);
|
|
ERROR 42000: Incorrect parameters in the call to native function 'atan'
|
|
select atan(10 p1, 20);
|
|
ERROR 42000: Incorrect parameters in the call to native function 'atan'
|
|
select atan(10 AS "p1", 20);
|
|
ERROR 42000: Incorrect parameters in the call to native function 'atan'
|
|
select atan(10 "p1", 20);
|
|
ERROR 42000: Incorrect parameters in the call to native function 'atan'
|
|
select atan(10, 20 AS p2);
|
|
ERROR 42000: Incorrect parameters in the call to native function 'atan'
|
|
select atan(10, 20 p2);
|
|
ERROR 42000: Incorrect parameters in the call to native function 'atan'
|
|
select atan(10, 20 AS "p2");
|
|
ERROR 42000: Incorrect parameters in the call to native function 'atan'
|
|
select atan(10, 20 "p2");
|
|
ERROR 42000: Incorrect parameters in the call to native function 'atan'
|
|
select atan(10 AS p1, 20 AS p2);
|
|
ERROR 42000: Incorrect parameters in the call to native function 'atan'
|