summaryrefslogtreecommitdiff
path: root/ndb/tools/restore
diff options
context:
space:
mode:
authorunknown <pekka@mysql.com>2005-01-08 19:28:44 +0100
committerunknown <pekka@mysql.com>2005-01-08 19:28:44 +0100
commit3186b340da79252758a4b1c47ea0a3b8b1b0d2a8 (patch)
tree030db052318f34f218ff376df78db882c005d42c /ndb/tools/restore
parent633ee9b09994333dd4ccdd85daa6aec4594d9346 (diff)
downloadmariadb-git-3186b340da79252758a4b1c47ea0a3b8b1b0d2a8.tar.gz
ndb - wl-1442 fix Time ordering
mysql-test/r/ndb_index_ordered.result: wl-1442 fix Time. adds new type id 25 mysql-test/t/ndb_index_ordered.test: wl-1442 fix Time. adds new type id 25 ndb/include/kernel/signaldata/DictTabInfo.hpp: wl-1442 fix Time. adds new type id 25 ndb/include/ndbapi/NdbDictionary.hpp: wl-1442 fix Time. adds new type id 25 ndb/include/util/NdbSqlUtil.hpp: wl-1442 fix Time. adds new type id 25 ndb/src/common/util/NdbSqlUtil.cpp: wl-1442 fix Time. adds new type id 25 ndb/src/ndbapi/NdbDictionary.cpp: wl-1442 fix Time. adds new type id 25 ndb/src/ndbapi/NdbDictionaryImpl.cpp: wl-1442 fix Time. adds new type id 25 ndb/test/include/NdbSchemaOp.hpp: wl-1442 fix Time. adds new type id 25 ndb/tools/restore/consumer.cpp: wl-1442 fix Time. adds new type id 25 sql/ha_ndbcluster.cc: wl-1442 fix Time. adds new type id 25
Diffstat (limited to 'ndb/tools/restore')
-rw-r--r--ndb/tools/restore/consumer.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/ndb/tools/restore/consumer.cpp b/ndb/tools/restore/consumer.cpp
index dc0567803dd..4d228230423 100644
--- a/ndb/tools/restore/consumer.cpp
+++ b/ndb/tools/restore/consumer.cpp
@@ -74,6 +74,9 @@ BackupConsumer::create_table_string(const TableS & table,
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:
// pos += sprintf(buf+pos, "%s", "varchar binary");
return -1;