summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorunknown <monty@narttu.mysql.fi>2003-06-05 00:12:45 +0300
committerunknown <monty@narttu.mysql.fi>2003-06-05 00:12:45 +0300
commitad5e39bf12b7aeefbc313e464a1349541a7b15c5 (patch)
tree824e127f68404d3fbe881d6619e34ad389d21202 /include
parent020baadcfebbd0f2248d9a3fa15f29d6e9d954b4 (diff)
parentc6c60f6ee819a238ab62e3f9608502c9a8f25b36 (diff)
downloadmariadb-git-ad5e39bf12b7aeefbc313e464a1349541a7b15c5.tar.gz
merge with public tree
BitKeeper/etc/ignore: auto-union BitKeeper/etc/logging_ok: auto-union client/mysql.cc: Auto merged configure.in: Auto merged include/config-win.h: Auto merged include/mysql.h: Auto merged include/mysql_version.h.in: Auto merged libmysqld/lib_sql.cc: Auto merged mysql-test/r/alter_table.result: Auto merged mysql-test/r/create.result: Auto merged mysql-test/r/ctype_collate.result: Auto merged mysql-test/r/innodb.result: Auto merged mysql-test/r/show_check.result: Auto merged mysql-test/r/subselect.result: Auto merged mysql-test/r/type_blob.result: Auto merged mysql-test/t/subselect.test: Auto merged mysys/default.c: Auto merged sql/Makefile.am: Auto merged sql/field.cc: Auto merged sql/item.cc: Auto merged sql/item.h: Auto merged sql/item_cmpfunc.cc: Auto merged sql/mysql_priv.h: Auto merged sql/mysqld.cc: Auto merged sql/protocol.cc: Auto merged sql/set_var.cc: Auto merged sql/set_var.h: Auto merged sql/slave.cc: Auto merged sql/sql_base.cc: Auto merged sql/sql_insert.cc: Auto merged sql/sql_show.cc: Auto merged sql/sql_string.cc: Auto merged sql/sql_string.h: Auto merged sql/sql_table.cc: Auto merged sql/sql_yacc.yy: Auto merged
Diffstat (limited to 'include')
-rw-r--r--include/config-win.h8
-rw-r--r--include/m_string.h10
-rw-r--r--include/my_global.h14
-rw-r--r--include/mysql.h3
-rw-r--r--include/mysql_com.h1
-rw-r--r--include/mysql_version.h.in1
-rw-r--r--include/sql_state.h164
-rw-r--r--include/thr_alarm.h2
8 files changed, 192 insertions, 11 deletions
diff --git a/include/config-win.h b/include/config-win.h
index d76233c39f2..c4e9588666e 100644
--- a/include/config-win.h
+++ b/include/config-win.h
@@ -138,6 +138,11 @@ typedef uint rf_SetTimer;
#define SIZEOF_LONG 4
#define SIZEOF_LONG_LONG 8
#define SIZEOF_OFF_T 8
+#ifdef _WIN64
+#define SIZEOF_CHARP 8
+#else
+#define SIZEOF_CHARP 4
+#endif
#define HAVE_BROKEN_NETINET_INCLUDES
#ifdef __NT__
#define HAVE_NAMED_PIPE /* We can only create pipes on NT */
@@ -203,6 +208,7 @@ inline double ulonglong2double(ulonglong value)
/* Optimized store functions for Intel x86 */
+#ifndef _WIN64
#define sint2korr(A) (*((int16 *) (A)))
#define sint3korr(A) ((int32) ((((uchar) (A)[2]) & 128) ? \
(((uint32) 255L << 24) | \
@@ -243,7 +249,7 @@ inline double ulonglong2double(ulonglong value)
#define float8get(V,M) doubleget((V),(M))
#define float4store(V,M) memcpy((byte*) V,(byte*) (&M),sizeof(float))
#define float8store(V,M) doublestore((V),(M))
-
+#endif /* _WIN64 */
#define HAVE_PERROR
#define HAVE_VFPRINT
diff --git a/include/m_string.h b/include/m_string.h
index 15a488fe72a..5863bb51b73 100644
--- a/include/m_string.h
+++ b/include/m_string.h
@@ -74,14 +74,14 @@
/* Unixware 7 */
#if !defined(HAVE_BFILL)
# define bfill(A,B,C) memset((A),(C),(B))
-# define bmove_allign(A,B,C) memcpy((A),(B),(C))
+# define bmove_align(A,B,C) memcpy((A),(B),(C))
#endif
#if !defined(HAVE_BCMP)
# define bcopy(s, d, n) memcpy((d), (s), (n))
# define bcmp(A,B,C) memcmp((A),(B),(C))
# define bzero(A,B) memset((A),0,(B))
-# define bmove_allign(A,B,C) memcpy((A),(B),(C))
+# define bmove_align(A,B,C) memcpy((A),(B),(C))
#endif
#if defined(__cplusplus) && !defined(OS2)
@@ -111,11 +111,11 @@ extern char NEAR _dig_vec[]; /* Declared in int2str() */
#endif
#ifdef MSDOS
-#undef bmove_allign
-#define bmove512(A,B,C) bmove_allign(A,B,C)
+#undef bmove_align
+#define bmove512(A,B,C) bmove_align(A,B,C)
#define my_itoa(A,B,C) itoa(A,B,C)
#define my_ltoa(A,B,C) ltoa(A,B,C)
-extern void bmove_allign(gptr dst,const gptr src,uint len);
+extern void bmove_align(gptr dst,const gptr src,uint len);
#endif
#if (!defined(USE_BMOVE512) || defined(HAVE_purify)) && !defined(bmove512)
diff --git a/include/my_global.h b/include/my_global.h
index 86fb2a5ee4d..6d6f24c2438 100644
--- a/include/my_global.h
+++ b/include/my_global.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000 MySQL AB
+/* Copyright (C) 2000-2003 MySQL AB
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -266,7 +266,7 @@ C_MODE_END
# endif
#endif /* TIME_WITH_SYS_TIME */
#ifdef HAVE_UNISTD_H
-#if defined(HAVE_OPENSSL) && !defined(__FreeBSD__) && !defined(NeXT)
+#if defined(HAVE_OPENSSL) && !defined(__FreeBSD__) && !defined(NeXT) && !defined(__OpenBSD__)
#define crypt unistd_crypt
#endif
#include <unistd.h>
@@ -654,7 +654,15 @@ extern double my_atof(const char*);
Max size that must be added to a so that we know Size to make
adressable obj.
*/
+#if SIZEOF_CHARP == 4
typedef long my_ptrdiff_t;
+#else
+typedef long long my_ptrdiff_t;
+#endif
+
+/* typedef used for length of string; Should be unsigned! */
+typedef ulong size_str;
+
#define MY_ALIGN(A,L) (((A) + (L) - 1) & ~((L) - 1))
#define ALIGN_SIZE(A) MY_ALIGN((A),sizeof(double))
/* Size to make adressable obj. */
@@ -869,7 +877,7 @@ typedef char bool; /* Ordinary boolean values 0 1 */
*/
/* Optimized store functions for Intel x86 */
-#ifdef __i386__
+#if defined(__i386__) && !defined(_WIN64)
#define sint2korr(A) (*((int16 *) (A)))
#define sint3korr(A) ((int32) ((((uchar) (A)[2]) & 128) ? \
(((uint32) 255L << 24) | \
diff --git a/include/mysql.h b/include/mysql.h
index f57382cb6a1..374ac9b8959 100644
--- a/include/mysql.h
+++ b/include/mysql.h
@@ -268,7 +268,8 @@ typedef struct st_mysql
my_bool free_me; /* If free in mysql_close */
my_ulonglong insert_id; /* id if insert on table with NEXTNR */
unsigned int last_errno;
- char *last_error;
+ char *last_error; /* Used by embedded server */
+ char sqlstate[SQLSTATE_LENGTH+1]; /* Used by embedded server */
} MYSQL;
#endif
diff --git a/include/mysql_com.h b/include/mysql_com.h
index e2fa30e3a18..2ed5038b275 100644
--- a/include/mysql_com.h
+++ b/include/mysql_com.h
@@ -324,6 +324,7 @@ my_bool check_scramble(const char *, const char *message,
unsigned long *salt,my_bool old_ver);
char *get_tty_password(char *opt_message);
void hash_password(unsigned long *result, const char *password);
+const char *mysql_errno_to_sqlstate(uint mysql_errno);
/* Some other useful functions */
diff --git a/include/mysql_version.h.in b/include/mysql_version.h.in
index 91cf3ecc074..31bf2bdd00d 100644
--- a/include/mysql_version.h.in
+++ b/include/mysql_version.h.in
@@ -10,6 +10,7 @@
#else
#define PROTOCOL_VERSION @PROTOCOL_VERSION@
#define MYSQL_SERVER_VERSION "@VERSION@"
+#define MYSQL_BASE_VERSION "mysqld-@MYSQL_BASE_VERSION@"
#ifndef MYSQL_SERVER_SUFFIX
#define MYSQL_SERVER_SUFFIX "@MYSQL_SERVER_SUFFIX@"
#endif
diff --git a/include/sql_state.h b/include/sql_state.h
new file mode 100644
index 00000000000..cc0fab7bfce
--- /dev/null
+++ b/include/sql_state.h
@@ -0,0 +1,164 @@
+/* Copyright (C) 2000-2003 MySQL AB
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+
+/*
+ This file includes a mapping from mysql_errno.h to sql_state (as used by
+ MyODBC) and jdbc_state.
+ It's suitable to include into a C struct for further processing
+
+ The first column is the mysqld server error (declared in mysqld_error.h),
+ the second column is the ODBC state (which the 4.1 server sends out by
+ default) and the last is the state used by the JDBC driver.
+ If the last column is "" then it means that the JDBC driver is using the
+ ODBC state
+
+ The errors in this file is sorted in the same order as in mysqld_error.h
+ to allow on to do binary searches for the sqlstate.
+*/
+
+ER_DUP_KEY, "23000", "",
+ER_OUTOFMEMORY, "HY001", "S1001",
+ER_OUT_OF_SORTMEMORY, "HY001", "S1001",
+ER_CON_COUNT_ERROR, "08004", "",
+ER_BAD_HOST_ERROR, "08S01", "",
+ER_HANDSHAKE_ERROR, "08S01", "",
+ER_DBACCESS_DENIED_ERROR, "42000", "",
+ER_ACCESS_DENIED_ERROR, "42000", "28000",
+ER_NO_DB_ERROR, "42000", "",
+ER_UNKNOWN_COM_ERROR, "08S01", "",
+ER_BAD_NULL_ERROR, "23000", "",
+ER_BAD_DB_ERROR, "42000", "",
+ER_TABLE_EXISTS_ERROR, "42S01", "",
+ER_BAD_TABLE_ERROR, "42S02", "",
+ER_NON_UNIQ_ERROR, "23000", "",
+ER_SERVER_SHUTDOWN, "08S01", "",
+ER_BAD_FIELD_ERROR, "42S22", "S0022",
+ER_WRONG_FIELD_WITH_GROUP, "42000", "S1009",
+ER_WRONG_GROUP_FIELD, "42000", "S1009",
+ER_WRONG_SUM_SELECT, "42000", "S1009",
+ER_WRONG_VALUE_COUNT, "21S01", "",
+ER_TOO_LONG_IDENT, "42000", "S1009",
+ER_DUP_FIELDNAME, "42S21", "S1009",
+ER_DUP_KEYNAME, "42000", "S1009",
+ER_DUP_ENTRY, "23000", "S1009",
+ER_WRONG_FIELD_SPEC, "42000", "S1009",
+ER_PARSE_ERROR, "42000", "",
+ER_EMPTY_QUERY, "42000" , "",
+ER_NONUNIQ_TABLE, "42000", "S1009",
+ER_INVALID_DEFAULT, "42000", "S1009",
+ER_MULTIPLE_PRI_KEY, "42000", "S1009",
+ER_TOO_MANY_KEYS, "42000", "S1009",
+ER_TOO_MANY_KEY_PARTS, "42000", "S1009",
+ER_TOO_LONG_KEY, "42000", "S1009",
+ER_KEY_COLUMN_DOES_NOT_EXITS, "42000", "S1009",
+ER_BLOB_USED_AS_KEY, "42000", "S1009",
+ER_TOO_BIG_FIELDLENGTH, "42000", "S1009",
+ER_WRONG_AUTO_KEY, "42000", "S1009",
+ER_FORCING_CLOSE, "08S01", "",
+ER_IPSOCK_ERROR, "088S01", "",
+ER_NO_SUCH_INDEX, "42S12", "S1009",
+ER_WRONG_FIELD_TERMINATORS, "42000", "S1009",
+ER_BLOBS_AND_NO_TERMINATED, "42000", "S1009",
+ER_CANT_REMOVE_ALL_FIELDS, "42000", "",
+ER_CANT_DROP_FIELD_OR_KEY, "42000", "",
+ER_BLOB_CANT_HAVE_DEFAULT, "42000", "",
+ER_WRONG_DB_NAME, "42000", "",
+ER_WRONG_TABLE_NAME, "42000", "",
+ER_TOO_BIG_SELECT, "42000", "",
+ER_UNKNOWN_PROCEDURE, "42000", "",
+ER_WRONG_PARAMCOUNT_TO_PROCEDURE, "42000", "",
+ER_UNKNOWN_TABLE, "42S02", "",
+ER_FIELD_SPECIFIED_TWICE, "42000", "",
+ER_UNSUPPORTED_EXTENSION, "42000", "",
+ER_TABLE_MUST_HAVE_COLUMNS, "42000", "",
+ER_UNKNOWN_CHARACTER_SET, "42000", "",
+ER_TOO_BIG_ROWSIZE, "42000", "",
+ER_STACK_OVERRUN, "HY000", "",
+ER_WRONG_OUTER_JOIN, "42000", "",
+ER_NULL_COLUMN_IN_INDEX, "42000", "",
+ER_PASSWORD_ANONYMOUS_USER, "42000", "",
+ER_PASSWORD_NOT_ALLOWED, "42000", "",
+ER_PASSWORD_NO_MATCH, "42000", "",
+ER_WRONG_VALUE_COUNT_ON_ROW, "21S01", "",
+ER_INVALID_USE_OF_NULL, "42000", "",
+ER_REGEXP_ERROR, "42000", "",
+ER_MIX_OF_GROUP_FUNC_AND_FIELDS,"42000", "",
+ER_NONEXISTING_GRANT, "42000", "",
+ER_TABLEACCESS_DENIED_ERROR, "42000", "",
+ER_COLUMNACCESS_DENIED_ERROR, "42000", "",
+ER_ILLEGAL_GRANT_FOR_TABLE, "42000", "",
+ER_GRANT_WRONG_HOST_OR_USER, "42000", "",
+ER_NO_SUCH_TABLE, "42S02", "",
+ER_NONEXISTING_TABLE_GRANT, "42000", "",
+ER_NOT_ALLOWED_COMMAND, "42000", "",
+ER_SYNTAX_ERROR, "42000", "",
+ER_ABORTING_CONNECTION, "08S01", "",
+ER_NET_PACKET_TOO_LARGE, "08S01", "",
+ER_NET_READ_ERROR_FROM_PIPE, "08S01", "",
+ER_NET_FCNTL_ERROR, "08S01", "",
+ER_NET_PACKETS_OUT_OF_ORDER, "08S01", "",
+ER_NET_UNCOMPRESS_ERROR, "08S01", "",
+ER_NET_READ_ERROR, "08S01", "",
+ER_NET_READ_INTERRUPTED, "08S01", "",
+ER_NET_ERROR_ON_WRITE, "08S01", "",
+ER_NET_WRITE_INTERRUPTED, "08S01", "",
+ER_TOO_LONG_STRING, "42000", "",
+ER_TABLE_CANT_HANDLE_BLOB, "42000", "",
+ER_TABLE_CANT_HANDLE_AUTO_INCREMENT, "42000", "",
+ER_WRONG_COLUMN_NAME, "42000", "",
+ER_WRONG_KEY_COLUMN, "42000", "",
+ER_DUP_UNIQUE, "23000", "",
+ER_BLOB_KEY_WITHOUT_LENGTH, "42000", "",
+ER_PRIMARY_CANT_HAVE_NULL, "42000", "",
+ER_TOO_MANY_ROWS, "42000", "",
+ER_REQUIRES_PRIMARY_KEY, "42000", "",
+ER_CHECK_NO_SUCH_TABLE, "42000", "",
+ER_CHECK_NOT_IMPLEMENTED, "42000", "",
+ER_CANT_DO_THIS_DURING_AN_TRANSACTION, "25000", "",
+ER_ERROR_DURING_COMMIT, "HY000", "",
+ER_ERROR_DURING_ROLLBACK, "HY000", "",
+ER_NEW_ABORTING_CONNECTION, "08S01", "",
+ER_MASTER_NET_READ, "08S01", "",
+ER_MASTER_NET_WRITE, "08S01", "",
+ER_TOO_MANY_USER_CONNECTIONS, "42000", "",
+ER_READ_ONLY_TRANSACTION, "25000", "",
+ER_NO_PERMISSION_TO_CREATE_USER,"42000", "",
+ER_LOCK_DEADLOCK, "40001", "",
+ER_NO_REFERENCED_ROW, "23000", "",
+ER_ROW_IS_REFERENCED, "23000", "",
+ER_CONNECT_TO_MASTER, "08S01", "",
+ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT,"21000", "",
+ER_USER_LIMIT_REACHED, "42000", "",
+ER_NO_DEFAULT, "42000", "",
+ER_WRONG_VALUE_FOR_VAR, "42000", "",
+ER_WRONG_TYPE_FOR_VAR, "42000", "",
+ER_CANT_USE_OPTION_HERE, "42000", "",
+ER_NOT_SUPPORTED_YET, "42000", "",
+ER_WRONG_FK_DEF, "42000", "",
+ER_CARDINALITY_COL, "21000", "",
+ER_SUBSELECT_NO_1_ROW, "21000", "",
+ER_ILLEGAL_REFERENCE, "42S22", "",
+ER_DERIVED_MUST_HAVE_ALIAS, "42000", "",
+ER_SELECT_REDUCED, "01000", "",
+ER_TABLENAME_NOT_ALLOWED_HERE, "42000", "",
+ER_NOT_SUPPORTED_AUTH_MODE, "08004", "",
+ER_SPATIAL_CANT_HAVE_NULL, "42000", "",
+ER_COLLATION_CHARSET_MISMATCH, "42000", "",
+ER_WARN_TOO_FEW_RECORDS, "01000", "",
+ER_WARN_TOO_MANY_RECORDS, "01000", "",
+ER_WARN_NULL_TO_NOTNULL, "01000", "",
+ER_WARN_DATA_OUT_OF_RANGE, "01000", "",
+ER_WARN_DATA_TRUNCATED, "01000", "",
diff --git a/include/thr_alarm.h b/include/thr_alarm.h
index 30825d49158..439f046252f 100644
--- a/include/thr_alarm.h
+++ b/include/thr_alarm.h
@@ -103,7 +103,7 @@ void init_thr_alarm(uint max_alarm);
bool thr_alarm(thr_alarm_t *alarmed, uint sec, ALARM *buff);
void thr_alarm_kill(pthread_t thread_id);
void thr_end_alarm(thr_alarm_t *alarmed);
-void end_thr_alarm(void);
+void end_thr_alarm(my_bool free_structures);
sig_handler process_alarm(int);
#ifndef thr_got_alarm
bool thr_got_alarm(thr_alarm_t *alrm);