summaryrefslogtreecommitdiff
path: root/storage/oqgraph
diff options
context:
space:
mode:
authorunknown <knielsen@knielsen-hq.org>2010-04-12 16:23:51 -0700
committerunknown <knielsen@knielsen-hq.org>2010-04-12 16:23:51 -0700
commit88b3697d1bf2fcdd93c42a8673b4113daf1f1af4 (patch)
treed21b90a24b5d55fa2d9f22f22d122a271e734f24 /storage/oqgraph
parent4621d15e0ef8972aa54f87540d0da0de4efe058f (diff)
downloadmariadb-git-88b3697d1bf2fcdd93c42a8673b4113daf1f1af4.tar.gz
MBug#524625: OQGraph error with binary logging enabled
Set the correct engine flags for OQGraph to get binlogging working.
Diffstat (limited to 'storage/oqgraph')
-rw-r--r--storage/oqgraph/ha_oqgraph.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/storage/oqgraph/ha_oqgraph.cc b/storage/oqgraph/ha_oqgraph.cc
index 0b7fe293e84..e0c66134858 100644
--- a/storage/oqgraph/ha_oqgraph.cc
+++ b/storage/oqgraph/ha_oqgraph.cc
@@ -357,7 +357,8 @@ ulong ha_oqgraph::table_flags() const
#endif
{
return (HA_NO_BLOBS | HA_NULL_IN_KEY |
- HA_REC_NOT_IN_SEQ | HA_CAN_INSERT_DELAYED);
+ HA_REC_NOT_IN_SEQ | HA_CAN_INSERT_DELAYED |
+ HA_BINLOG_STMT_CAPABLE | HA_BINLOG_ROW_CAPABLE);
}
ulong ha_oqgraph::index_flags(uint inx, uint part, bool all_parts) const