summaryrefslogtreecommitdiff
path: root/ndb/tools
diff options
context:
space:
mode:
authorunknown <pekka@mysql.com>2005-01-08 22:34:16 +0100
committerunknown <pekka@mysql.com>2005-01-08 22:34:16 +0100
commit2c12921a64910aca3f0c3b2c8b4d166781721b8f (patch)
treecb43fe2faff44cd0b0f5a29ce87fce61522e5294 /ndb/tools
parent5802259dc5ca818c53332b360dba09570f4f6e81 (diff)
parent94504d529be8e3bcb562fd5ccbbb2fa916204d4c (diff)
downloadmariadb-git-2c12921a64910aca3f0c3b2c8b4d166781721b8f.tar.gz
Merge
client/mysql.cc: Auto merged mysql-test/r/ndb_index_ordered.result: Auto merged mysql-test/t/ndb_index_ordered.test: Auto merged ndb/src/ndbapi/NdbDictionary.cpp: Auto merged ndb/include/kernel/signaldata/DictTabInfo.hpp: merge ndb/include/ndbapi/NdbDictionary.hpp: merge ndb/include/util/NdbSqlUtil.hpp: merge ndb/src/common/util/NdbSqlUtil.cpp: merge ndb/src/ndbapi/NdbDictionaryImpl.cpp: merge sql/ha_ndbcluster.cc: merge
Diffstat (limited to 'ndb/tools')
-rw-r--r--ndb/tools/restore/consumer.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/ndb/tools/restore/consumer.cpp b/ndb/tools/restore/consumer.cpp
index e94c31b2666..4d228230423 100644
--- a/ndb/tools/restore/consumer.cpp
+++ b/ndb/tools/restore/consumer.cpp
@@ -71,7 +71,10 @@ BackupConsumer::create_table_string(const TableS & table,
case NdbDictionary::Column::Datetime:
pos += sprintf(buf+pos, "%s", "datetime");
break;
- case NdbDictionary::Column::Timespec:
+ case NdbDictionary::Column::Date:
+ pos += sprintf(buf+pos, "%s", "date");
+ break;
+ case NdbDictionary::Column::Time:
pos += sprintf(buf+pos, "%s", "time");
break;
case NdbDictionary::Column::Undefined: