1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Merge rburnett@bk-internal.mysql.com:/home/bk/mysql-5.1-new

into  linux.site:/home/reggie/work/mysql-5.1-rbr_cleanups
This commit is contained in:
reggie@linux.site
2006-01-09 17:35:25 -06:00
134 changed files with 3040 additions and 3705 deletions

View File

@ -1673,8 +1673,11 @@ public:
{
/*
Nothing here right now, but the flags support is there in
preparation for changes that are coming.
preparation for changes that are coming. Need to add a
constant to make it compile under HP-UX: aCC does not like
empty enumerations.
*/
ENUM_FLAG_COUNT
};
typedef uint16 flag_set;
@ -1682,7 +1685,7 @@ public:
/* Special constants representing sets of flags */
enum
{
NO_FLAGS = 0U
TM_NO_FLAGS = 0U
};
void set_flags(flag_set flag) { m_flags |= flag; }