diff options
author | unknown <monty@mysql.com> | 2005-07-28 21:25:05 +0300 |
---|---|---|
committer | unknown <monty@mysql.com> | 2005-07-28 21:25:05 +0300 |
commit | 9036db200157a41b13697d46164f55c4a2fd06d4 (patch) | |
tree | b252523c60a966126c131c027e46d75b320daaba /sql/ha_ndbcluster.cc | |
parent | 0062e6439eba5bdde783a002d818842072019d26 (diff) | |
download | mariadb-git-9036db200157a41b13697d46164f55c4a2fd06d4.tar.gz |
Fixed compiler warnings
client/mysqldump.c:
Fixed wrong argument to printf()
client/mysqltest.c:
Fixed compiler warning
myisam/ft_boolean_search.c:
Fixed compiler warning
myisammrg/myrg_static.c:
Fixed compiler warning
mysql-test/r/rpl_drop_temp.result:
Drop used database
mysql-test/t/rpl_drop_temp.test:
Drop used database
ndb/src/common/logger/LogHandler.cpp:
Fixed compiler warning
sql/field.cc:
Fixed compiler warning
sql/ha_ndbcluster.cc:
Fixed compiler warning
sql/sql_base.cc:
Fixed compiler warning
tests/mysql_client_test.c:
Fixed compiler warning
Diffstat (limited to 'sql/ha_ndbcluster.cc')
-rw-r--r-- | sql/ha_ndbcluster.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/ha_ndbcluster.cc b/sql/ha_ndbcluster.cc index e14d4b13311..6a8fde36e30 100644 --- a/sql/ha_ndbcluster.cc +++ b/sql/ha_ndbcluster.cc @@ -2413,6 +2413,7 @@ void ha_ndbcluster::print_results() break; } case NdbDictionary::Column::Undefined: + default: fprintf(DBUG_FILE, "Unknown type: %d", col->getType()); break; } |