Commit f37e45a9 authored by Aleksey Midenkov's avatar Aleksey Midenkov

MDEV-20865 Cleanups: dead code, typo.

parent 906afef9
...@@ -104,9 +104,9 @@ ...@@ -104,9 +104,9 @@
#endif #endif
#ifdef WITH_PARTITION_STORAGE_ENGINE #ifdef WITH_PARTITION_STORAGE_ENGINE
#define IF_PARTITIONING(A,B) A #define IF_PARTITIONING(A,B) (A)
#else #else
#define IF_PARTITIONING(A,B) B #define IF_PARTITIONING(A,B) (B)
#endif #endif
#if defined (_WIN32) #if defined (_WIN32)
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
/* extra 4+4 bytes for slave tmp tables */ /* extra 4+4 bytes for slave tmp tables */
#define MAX_DBKEY_LENGTH (NAME_LEN*2+1+1+4+4) #define MAX_DBKEY_LENGTH (NAME_LEN*2+1+1+4+4)
#define MAX_ALIAS_NAME 256 #define MAX_ALIAS_NAME 256
#define MAX_FIELD_NAME (NAME_LEN+1) /* Max colum name length +1 */ #define MAX_FIELD_NAME (NAME_LEN+2) /* Max colum name length +2 */
#define MAX_SYS_VAR_LENGTH 32 #define MAX_SYS_VAR_LENGTH 32
#define MAX_KEY MAX_INDEXES /* Max used keys */ #define MAX_KEY MAX_INDEXES /* Max used keys */
#define MAX_REF_PARTS 32 /* Max parts used as ref */ #define MAX_REF_PARTS 32 /* Max parts used as ref */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment