diff options
author | unknown <mskold@mysql.com> | 2006-01-11 12:41:38 +0100 |
---|---|---|
committer | unknown <mskold@mysql.com> | 2006-01-11 12:41:38 +0100 |
commit | 10f8e8f97c4ed024d562a219fd82fad0aee18a5f (patch) | |
tree | 9f353b344ffb9d83d0d17a699c67f5580ae75248 /sql/ha_ndbcluster.h | |
parent | 8764e3c50d5275f9810aa26bb1a26cd0434f195d (diff) | |
download | mariadb-git-10f8e8f97c4ed024d562a219fd82fad0aee18a5f.tar.gz |
WL#1892 Post-review fix, removed index insertion in list at create
Diffstat (limited to 'sql/ha_ndbcluster.h')
-rw-r--r-- | sql/ha_ndbcluster.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sql/ha_ndbcluster.h b/sql/ha_ndbcluster.h index 3acfa174010..2f802795de5 100644 --- a/sql/ha_ndbcluster.h +++ b/sql/ha_ndbcluster.h @@ -56,9 +56,8 @@ typedef enum ndb_index_type { typedef enum ndb_index_status { UNDEFINED = 0, - CREATED = 1, - ACTIVE = 2, - TO_BE_DROPPED = 3 + ACTIVE = 1, + TO_BE_DROPPED = 2 } NDB_INDEX_STATUS; typedef struct ndb_index_data { |