diff options
author | monty@mysql.com <> | 2004-05-28 10:41:38 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2004-05-28 10:41:38 +0300 |
commit | aabbacba8f8ad276a039c830bfbb4dfe8a923503 (patch) | |
tree | 2f1a08d2ab876547b0a367b5b7a03c657486388b /sql/handler.h | |
parent | ccc4171276b3712a82fd387adf3803010216bd4f (diff) | |
download | mariadb-git-aabbacba8f8ad276a039c830bfbb4dfe8a923503.tar.gz |
New patch to ensure that InnoDB gets values for CFLAGS and CXXFLAGS
Diffstat (limited to 'sql/handler.h')
-rw-r--r-- | sql/handler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/handler.h b/sql/handler.h index 0f8edc2cf12..04a437725ab 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -403,12 +403,12 @@ public: { return (HA_DDL_SUPPORT); } - virtual int add_index(TABLE *table, KEY *key_info, uint num_of_keys) + virtual int add_index(TABLE *table_arg, KEY *key_info, uint num_of_keys) { my_error(ER_NOT_SUPPORTED_YET, MYF(0), "online add index"); return (HA_DDL_NOT_IMPLEMENTED); } - virtual int drop_index(TABLE *table, uint *key_num, uint num_of_keys) + virtual int drop_index(TABLE *table_arg, uint *key_num, uint num_of_keys) { my_error(ER_NOT_SUPPORTED_YET, MYF(0), "online drop index"); return (HA_DDL_NOT_IMPLEMENTED); |