diff options
author | monty@mysql.com <> | 2004-06-23 16:44:34 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2004-06-23 16:44:34 +0300 |
commit | ad86016e2ff3af18892d24577e956b886bd150fd (patch) | |
tree | 65585d3f7c22945c51267af54fd8d0cafddb46e8 /include | |
parent | f56df164f0603b268806108526d59e5d02fef82b (diff) | |
download | mariadb-git-ad86016e2ff3af18892d24577e956b886bd150fd.tar.gz |
lower_case_table_names=2 (Keep case for table names) was not honored
with ALTER TABLE and CREATE/DROP INDEX. (Bug #3109)
Make net_buffer_length visible for mysql clients (Bug #4206)
Diffstat (limited to 'include')
-rw-r--r-- | include/mysql.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mysql.h b/include/mysql.h index 7db6b36e667..8abeb86e32a 100644 --- a/include/mysql.h +++ b/include/mysql.h @@ -250,7 +250,7 @@ typedef struct st_mysql_parameters unsigned long *p_net_buffer_length; } MYSQL_PARAMETERS; -#if !defined(MYSQL_CLIENT) && !defined(MYSQL_SERVER) && !defined(EMBEDDED_LIBRARY) +#if !defined(MYSQL_SERVER) && !defined(EMBEDDED_LIBRARY) #define max_allowed_packet (*mysql_get_parameters()->p_max_allowed_packet) #define net_buffer_length (*mysql_get_parameters()->p_net_buffer_length) #endif |