diff options
Diffstat (limited to 'storage/example')
-rw-r--r-- | storage/example/ha_example.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/storage/example/ha_example.h b/storage/example/ha_example.h index 69b7cf4d336..25a22cc94c5 100644 --- a/storage/example/ha_example.h +++ b/storage/example/ha_example.h @@ -82,7 +82,12 @@ public: */ ulonglong table_flags() const { - return 0; + /* + We are saying that this engine is just row capable to have an + engine that can only handle row-based logging. This is used in + testing. + */ + return HA_BINLOG_ROW_CAPABLE; } /** @brief |