diff options
author | unknown <venu@myvenu.com> | 2003-01-30 00:38:11 -0800 |
---|---|---|
committer | unknown <venu@myvenu.com> | 2003-01-30 00:38:11 -0800 |
commit | 7d0d2d4f85f921f567ebf46d75b9aab32b5f486e (patch) | |
tree | b44894af687099c5f4b6788966f6f5eab2fafbd3 /libmysql/errmsg.c | |
parent | a8abb0471ea4792fc002b817f130501e63e9507b (diff) | |
download | mariadb-git-7d0d2d4f85f921f567ebf46d75b9aab32b5f486e.tar.gz |
Fix 'n' concurrent prepared executions
sql/sql_prepare.cc:
Fix 'n' concurrent executions
libmysql/errmsg.c:
Fix the missing semicolon for errors
libmysql/libmysql.c:
Fix the result meta info for non-SELECT statements
Diffstat (limited to 'libmysql/errmsg.c')
-rw-r--r-- | libmysql/errmsg.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libmysql/errmsg.c b/libmysql/errmsg.c index 2eecb5c2afd..ea11a7b6120 100644 --- a/libmysql/errmsg.c +++ b/libmysql/errmsg.c @@ -59,7 +59,7 @@ const char *client_errors[]= "No parameters exists in the statement", "Invalid parameter number", "Can't send long data for non string or binary data types (parameter: %d)", - "Using un supported parameter type: %d (parameter: %d)" + "Using un supported buffer type: %d (parameter: %d)", "Shared memory (%lu)", "Can't open shared memory. Request event don't create (%lu)", "Can't open shared memory. Answer event don't create (%lu)", @@ -114,7 +114,7 @@ const char *client_errors[]= "No parameters exists in the statement", "Invalid parameter number", "Can't send long data for non string or binary data types (parameter: %d)", - "Using un supported parameter type: %d (parameter: %d)" + "Using un supported buffer type: %d (parameter: %d)", "Shared memory (%lu)", "Can't open shared memory. Request event don't create (%lu)", "Can't open shared memory. Answer event don't create (%lu)", @@ -167,7 +167,7 @@ const char *client_errors[]= "No parameters exists in the statement", "Invalid parameter number", "Can't send long data for non string or binary data types (parameter: %d)", - "Using un supported parameter type: %d (parameter: %d)" + "Using un supported buffer type: %d (parameter: %d)", "Shared memory (%lu)", "Can't open shared memory. Request event don't create (%lu)", "Can't open shared memory. Answer event don't create (%lu)", |