mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
- enable changing the number of table bits for JOINs to be increased
from ulong to ulonglong by defining -DBIG_JOINS sql/mysql_priv.h: - enable changing the number of table bits for JOINs to be increased from ulong to ulonglong by defining BIG_JOINS
This commit is contained in:
@ -29,7 +29,12 @@
|
||||
#undef write /* remove pthread.h macro definition for EMX */
|
||||
#endif
|
||||
|
||||
#ifdef BIG_JOINS
|
||||
typedef ulonglong table_map; /* Used for table bits in join */
|
||||
#else
|
||||
typedef ulong table_map; /* Used for table bits in join */
|
||||
#endif /* BIG_JOINS */
|
||||
|
||||
typedef ulong key_map; /* Used for finding keys */
|
||||
typedef ulong key_part_map; /* Used for finding key parts */
|
||||
|
||||
|
Reference in New Issue
Block a user