diff options
author | tomas@whalegate.ndb.mysql.com <> | 2007-06-18 15:41:02 +0200 |
---|---|---|
committer | tomas@whalegate.ndb.mysql.com <> | 2007-06-18 15:41:02 +0200 |
commit | 7d4467766f67c5b68ebcf2d4bd71b4930e211cdf (patch) | |
tree | da06f645264e06582ee9a5e1cabee4b9bf3ea85d /sql/ha_ndbcluster_binlog.cc | |
parent | e5565db7c6d306cd7c1a30a92b3f41e022d095e2 (diff) | |
download | mariadb-git-7d4467766f67c5b68ebcf2d4bd71b4930e211cdf.tar.gz |
correction
Diffstat (limited to 'sql/ha_ndbcluster_binlog.cc')
-rw-r--r-- | sql/ha_ndbcluster_binlog.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/ha_ndbcluster_binlog.cc b/sql/ha_ndbcluster_binlog.cc index b9a5e87eaa4..987d217873b 100644 --- a/sql/ha_ndbcluster_binlog.cc +++ b/sql/ha_ndbcluster_binlog.cc @@ -776,7 +776,7 @@ static int ndbcluster_create_ndb_apply_status_table(THD *thd) " end_pos BIGINT UNSIGNED NOT NULL, " " PRIMARY KEY USING HASH (server_id) ) ENGINE=NDB"); - const int no_print_error[2]= {701, 4009, 0}; // do not print error 701 etc + const int no_print_error[3]= {701, 4009, 0}; // do not print error 701 etc run_query(thd, buf, end, no_print_error, TRUE); DBUG_RETURN(0); @@ -833,7 +833,7 @@ static int ndbcluster_create_schema_table(THD *thd) " type INT UNSIGNED NOT NULL," " PRIMARY KEY USING HASH (db,name) ) ENGINE=NDB"); - const int no_print_error[2]= {701, 4009, 0}; // do not print error 701 etc + const int no_print_error[3]= {701, 4009, 0}; // do not print error 701 etc run_query(thd, buf, end, no_print_error, TRUE); DBUG_RETURN(0); |