diff options
author | mats@kindahl-laptop.dnsalias.net <> | 2007-06-12 22:02:46 +0200 |
---|---|---|
committer | mats@kindahl-laptop.dnsalias.net <> | 2007-06-12 22:02:46 +0200 |
commit | ec58bfb28a1f6bf817554722c5f98bab290bfa66 (patch) | |
tree | e252590c0287c7b25e8b7d291290be7d7a77d932 /storage/example | |
parent | 964369b58cbfb1267056f12933b580373005d143 (diff) | |
parent | 526a0cecda05e4028a9197239b39df01d03a45ee (diff) | |
download | mariadb-git-ec58bfb28a1f6bf817554722c5f98bab290bfa66.tar.gz |
Merge kindahl-laptop.dnsalias.net:/home/bkroot/mysql-5.1-rpl
into kindahl-laptop.dnsalias.net:/home/bk/b23051-mysql-5.1-rpl
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 9777a478209..97ecfb97536 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 |