diff options
author | guilhem@mysql.com <> | 2004-06-10 16:41:24 +0200 |
---|---|---|
committer | guilhem@mysql.com <> | 2004-06-10 16:41:24 +0200 |
commit | e816a757db9181f171303abdb205e8626402b190 (patch) | |
tree | d6be22cfef257179e9dd0d0a40fc3ee77622003e /sql/handler.h | |
parent | 10429acb8e6b95c7fc31078fe4d2b22b1402e400 (diff) | |
download | mariadb-git-e816a757db9181f171303abdb205e8626402b190.tar.gz |
WL#1689 "Map OPTIMIZE TABLE to ALTER TABLE for InnoDB"
exactly it's mapped to "ALTER TABLE t; ANALYZE TABLE t;"
Diffstat (limited to 'sql/handler.h')
-rw-r--r-- | sql/handler.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/handler.h b/sql/handler.h index e7dcb97f0e8..c8d3d30aa23 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -43,6 +43,7 @@ #define HA_ADMIN_INTERNAL_ERROR -4 #define HA_ADMIN_INVALID -5 #define HA_ADMIN_REJECT -6 +#define HA_ADMIN_TRY_ALTER -7 /* Bits in table_flags() to show what database can do */ #define HA_READ_RND_SAME 1 /* Read RND-record to KEY-record |