1
0
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:
unknown
2003-09-29 12:01:10 +02:00
parent e03265d4d5
commit ad0a7a3034

View File

@ -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 */