diff options
author | monty@tik.mysql.fi <> | 2001-08-02 06:29:50 +0300 |
---|---|---|
committer | monty@tik.mysql.fi <> | 2001-08-02 06:29:50 +0300 |
commit | b13d453d50c47b647c868b9dcb425133eb58c776 (patch) | |
tree | fc9655d17169cd0d2593f7a2e888de91cd33dfe8 /include | |
parent | 423f2851c57a253166d4e98cc71dc5177632ca10 (diff) | |
download | mariadb-git-b13d453d50c47b647c868b9dcb425133eb58c776.tar.gz |
Fix UNION
New faster list iterators
Change list code to be simpler and faster
Optimize count(distinct)
New error messages for UNION
Make create_tmp_table more general to be usable by UNION
Diffstat (limited to 'include')
-rw-r--r-- | include/mysqld_error.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/mysqld_error.h b/include/mysqld_error.h index b858ae89ef1..5f05841ae50 100644 --- a/include/mysqld_error.h +++ b/include/mysqld_error.h @@ -213,4 +213,6 @@ #define ER_CONNECT_TO_MASTER 1210 #define ER_QUERY_ON_MASTER 1211 #define ER_ERROR_WHEN_EXECUTING_COMMAND 1212 -#define ER_ERROR_MESSAGES 213 +#define ER_WRONG_USAGE 1213 +#define ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT 1214 +#define ER_ERROR_MESSAGES 215 |