diff options
author | unknown <pekka@mysql.com> | 2005-01-08 16:57:51 +0100 |
---|---|---|
committer | unknown <pekka@mysql.com> | 2005-01-08 16:57:51 +0100 |
commit | 633ee9b09994333dd4ccdd85daa6aec4594d9346 (patch) | |
tree | 41aa39e8d7580bed090c3711554e52d6f92c9110 /ndb/tools/restore | |
parent | 2a3f285eb5a0c3156fc768f886e17d9cc7f1d195 (diff) | |
download | mariadb-git-633ee9b09994333dd4ccdd85daa6aec4594d9346.tar.gz |
ndb - wl-1442 fix Date ordering
mysql-test/r/ndb_index_ordered.result:
wl-1442 fix Date. reuses old unused Timespec type id
mysql-test/t/ndb_index_ordered.test:
wl-1442 fix Date. reuses old unused Timespec type id
ndb/include/kernel/signaldata/DictTabInfo.hpp:
wl-1442 fix Date. reuses old unused Timespec type id
ndb/include/ndbapi/NdbDictionary.hpp:
wl-1442 fix Date. reuses old unused Timespec type id
ndb/include/util/NdbSqlUtil.hpp:
wl-1442 fix Date. reuses old unused Timespec type id
ndb/src/common/util/NdbSqlUtil.cpp:
wl-1442 fix Date. reuses old unused Timespec type id
ndb/src/ndbapi/NdbDictionary.cpp:
wl-1442 fix Date. reuses old unused Timespec type id
ndb/src/ndbapi/NdbDictionaryImpl.cpp:
wl-1442 fix Date. reuses old unused Timespec type id
ndb/test/include/NdbSchemaOp.hpp:
wl-1442 fix Date. reuses old unused Timespec type id
ndb/tools/restore/consumer.cpp:
wl-1442 fix Date. reuses old unused Timespec type id
sql/ha_ndbcluster.cc:
wl-1442 fix Date. reuses old unused Timespec type id
Diffstat (limited to 'ndb/tools/restore')
-rw-r--r-- | ndb/tools/restore/consumer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ndb/tools/restore/consumer.cpp b/ndb/tools/restore/consumer.cpp index e94c31b2666..dc0567803dd 100644 --- a/ndb/tools/restore/consumer.cpp +++ b/ndb/tools/restore/consumer.cpp @@ -71,8 +71,8 @@ BackupConsumer::create_table_string(const TableS & table, case NdbDictionary::Column::Datetime: pos += sprintf(buf+pos, "%s", "datetime"); break; - case NdbDictionary::Column::Timespec: - pos += sprintf(buf+pos, "%s", "time"); + case NdbDictionary::Column::Date: + pos += sprintf(buf+pos, "%s", "date"); break; case NdbDictionary::Column::Undefined: // pos += sprintf(buf+pos, "%s", "varchar binary"); |