summaryrefslogtreecommitdiff
path: root/sql/log_event.h
diff options
context:
space:
mode:
authorreggie@linux.site <>2006-01-09 17:35:25 -0600
committerreggie@linux.site <>2006-01-09 17:35:25 -0600
commit74e8c453b64a1e7a9dbe8318c11b94e80aacd8d3 (patch)
tree77669ee957886b04807e5b1fce40faee32cf6bab /sql/log_event.h
parentffd8a0e5f9c480bd96e6c66e281d0a59ac6c643e (diff)
parente72e0fdd5f17a0bcb6c2128da45c7bbe9f747350 (diff)
downloadmariadb-git-74e8c453b64a1e7a9dbe8318c11b94e80aacd8d3.tar.gz
Merge rburnett@bk-internal.mysql.com:/home/bk/mysql-5.1-new
into linux.site:/home/reggie/work/mysql-5.1-rbr_cleanups
Diffstat (limited to 'sql/log_event.h')
-rw-r--r--sql/log_event.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/sql/log_event.h b/sql/log_event.h
index f4c3867910a..8b665755aab 100644
--- a/sql/log_event.h
+++ b/sql/log_event.h
@@ -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; }