diff options
author | unknown <brian@zim.(none)> | 2005-08-29 15:26:05 -0700 |
---|---|---|
committer | unknown <brian@zim.(none)> | 2005-08-29 15:26:05 -0700 |
commit | 31203972909a4219b32416da86343f9ef27a5ab8 (patch) | |
tree | ff03703449d0a68dde293806d582c80e959bea0f /sql/handler.h | |
parent | 11d32b4af305ba98f19d24adc65a04816bfb2861 (diff) | |
parent | 341a08edd34dd4b8bb975af21d6531c1ef62f92d (diff) | |
download | mariadb-git-31203972909a4219b32416da86343f9ef27a5ab8.tar.gz |
Update for delete_all_rows() which will be used for TRUNCATE and DELETE support.
mysql-test/t/archive.test:
Auto merged
sql/handler.h:
Auto merged
mysql-test/r/archive.result:
Result sets
sql/examples/ha_archive.cc:
Update for tests
sql/examples/ha_archive.h:
Updated from merge, added new method for solving truncate problems.
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 ef45676207b..47d35582189 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -824,6 +824,8 @@ extern ulong total_ha, total_ha_2pc; #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) /* lookups */ |