diff options
author | brian@zim.(none) <> | 2005-08-29 15:05:16 -0700 |
---|---|---|
committer | brian@zim.(none) <> | 2005-08-29 15:05:16 -0700 |
commit | 4e9931752ee7c571afbf33420350fa56990c9c2a (patch) | |
tree | 6d5f2b5cf63fd7450ba88df0e2dc861f748bdef3 /sql/handler.h | |
parent | 5b35789d12b89cdc5f3811eea19fc7f642bfcabb (diff) | |
download | mariadb-git-4e9931752ee7c571afbf33420350fa56990c9c2a.tar.gz |
Added support for delete_all_rows() for archive. This fixes bug #12836.
Diffstat (limited to 'sql/handler.h')
-rw-r--r-- | sql/handler.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/handler.h b/sql/handler.h index efcdee8f56c..b69eec3edd5 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -531,6 +531,8 @@ extern TYPELIB tx_isolation_typelib; #define ha_supports_generate(T) (T != DB_TYPE_INNODB && \ T != DB_TYPE_BERKELEY_DB && \ + T != DB_TYPE_ARCHIVE_DB && \ + T != DB_TYPE_FEDERATED_DB && \ T != DB_TYPE_NDBCLUSTER) bool ha_caching_allowed(THD* thd, char* table_key, |