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
commitc13b924dab9403b1161c83372d8ebc130614fd6e (patch)
treecb43fe2faff44cd0b0f5a29ce87fce61522e5294 /ndb/tools
parentc94145ebf0cf7e268cad61ba584ed4f69da14040 (diff)
parent675ceab9dffaca7852a0567e3b8e6a3ea11981cf (diff)
downloadmariadb-git-c13b924dab9403b1161c83372d8ebc130614fd6e.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: