- 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:
parent
e03265d4d5
commit
ad0a7a3034
@ -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 */
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user