diff options
author | Mikael Ronstrom <mikael@dator8> | 2011-01-17 13:25:31 +0100 |
---|---|---|
committer | Mikael Ronstrom <mikael@dator8> | 2011-01-17 13:25:31 +0100 |
commit | 14a46479b64e1c0ee0ced10905c65e8c7e276d8b (patch) | |
tree | 2d741fe2d988e58b6542526642c5acab8e47c987 /sql/log.h | |
parent | 1ce30b7356086349b59d4a301888d1769567bf82 (diff) | |
download | mariadb-git-14a46479b64e1c0ee0ced10905c65e8c7e276d8b.tar.gz |
BUG#59549, fix compiler error on Windows
Diffstat (limited to 'sql/log.h')
-rw-r--r-- | sql/log.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/log.h b/sql/log.h index 05f8a4ce286..d287da0dcd1 100644 --- a/sql/log.h +++ b/sql/log.h @@ -63,9 +63,9 @@ class TC_LOG_MMAP: public TC_LOG { public: // only to keep Sun Forte on sol9x86 happy typedef enum { - POOL, // page is in pool - ERROR, // last sync failed - DIRTY // new xids added since last sync + PS_POOL, // page is in pool + PS_ERROR, // last sync failed + PS_DIRTY // new xids added since last sync } PAGE_STATE; private: |