Commit 2300e8b2 authored by unknown's avatar unknown

removed warnings on Tru64

parent 43551bd0
...@@ -150,7 +150,6 @@ NdbSqlUtil::cmp(Uint32 typeId, const Uint32* p1, const Uint32* p2, Uint32 full, ...@@ -150,7 +150,6 @@ NdbSqlUtil::cmp(Uint32 typeId, const Uint32* p1, const Uint32* p2, Uint32 full,
} }
return CmpUnknown; return CmpUnknown;
} }
break;
case Type::Tinyunsigned: case Type::Tinyunsigned:
{ {
if (size >= 1) { if (size >= 1) {
...@@ -165,7 +164,6 @@ NdbSqlUtil::cmp(Uint32 typeId, const Uint32* p1, const Uint32* p2, Uint32 full, ...@@ -165,7 +164,6 @@ NdbSqlUtil::cmp(Uint32 typeId, const Uint32* p1, const Uint32* p2, Uint32 full,
} }
return CmpUnknown; return CmpUnknown;
} }
break;
case Type::Smallint: case Type::Smallint:
{ {
if (size >= 1) { if (size >= 1) {
...@@ -180,7 +178,6 @@ NdbSqlUtil::cmp(Uint32 typeId, const Uint32* p1, const Uint32* p2, Uint32 full, ...@@ -180,7 +178,6 @@ NdbSqlUtil::cmp(Uint32 typeId, const Uint32* p1, const Uint32* p2, Uint32 full,
} }
return CmpUnknown; return CmpUnknown;
} }
break;
case Type::Smallunsigned: case Type::Smallunsigned:
{ {
if (size >= 1) { if (size >= 1) {
...@@ -195,7 +192,6 @@ NdbSqlUtil::cmp(Uint32 typeId, const Uint32* p1, const Uint32* p2, Uint32 full, ...@@ -195,7 +192,6 @@ NdbSqlUtil::cmp(Uint32 typeId, const Uint32* p1, const Uint32* p2, Uint32 full,
} }
return CmpUnknown; return CmpUnknown;
} }
break;
case Type::Mediumint: // XXX fix these case Type::Mediumint: // XXX fix these
break; break;
case Type::Mediumunsigned: case Type::Mediumunsigned:
...@@ -214,7 +210,6 @@ NdbSqlUtil::cmp(Uint32 typeId, const Uint32* p1, const Uint32* p2, Uint32 full, ...@@ -214,7 +210,6 @@ NdbSqlUtil::cmp(Uint32 typeId, const Uint32* p1, const Uint32* p2, Uint32 full,
} }
return CmpUnknown; return CmpUnknown;
} }
break;
case Type::Unsigned: case Type::Unsigned:
{ {
if (size >= 1) { if (size >= 1) {
...@@ -229,7 +224,6 @@ NdbSqlUtil::cmp(Uint32 typeId, const Uint32* p1, const Uint32* p2, Uint32 full, ...@@ -229,7 +224,6 @@ NdbSqlUtil::cmp(Uint32 typeId, const Uint32* p1, const Uint32* p2, Uint32 full,
} }
return CmpUnknown; return CmpUnknown;
} }
break;
case Type::Bigint: case Type::Bigint:
{ {
if (size >= 2) { if (size >= 2) {
...@@ -246,7 +240,6 @@ NdbSqlUtil::cmp(Uint32 typeId, const Uint32* p1, const Uint32* p2, Uint32 full, ...@@ -246,7 +240,6 @@ NdbSqlUtil::cmp(Uint32 typeId, const Uint32* p1, const Uint32* p2, Uint32 full,
} }
return CmpUnknown; return CmpUnknown;
} }
break;
case Type::Bigunsigned: case Type::Bigunsigned:
{ {
if (size >= 2) { if (size >= 2) {
...@@ -263,7 +256,6 @@ NdbSqlUtil::cmp(Uint32 typeId, const Uint32* p1, const Uint32* p2, Uint32 full, ...@@ -263,7 +256,6 @@ NdbSqlUtil::cmp(Uint32 typeId, const Uint32* p1, const Uint32* p2, Uint32 full,
} }
return CmpUnknown; return CmpUnknown;
} }
break;
case Type::Float: case Type::Float:
{ {
if (size >= 1) { if (size >= 1) {
...@@ -278,7 +270,6 @@ NdbSqlUtil::cmp(Uint32 typeId, const Uint32* p1, const Uint32* p2, Uint32 full, ...@@ -278,7 +270,6 @@ NdbSqlUtil::cmp(Uint32 typeId, const Uint32* p1, const Uint32* p2, Uint32 full,
} }
return CmpUnknown; return CmpUnknown;
} }
break;
case Type::Double: case Type::Double:
{ {
if (size >= 2) { if (size >= 2) {
...@@ -295,7 +286,6 @@ NdbSqlUtil::cmp(Uint32 typeId, const Uint32* p1, const Uint32* p2, Uint32 full, ...@@ -295,7 +286,6 @@ NdbSqlUtil::cmp(Uint32 typeId, const Uint32* p1, const Uint32* p2, Uint32 full,
} }
return CmpUnknown; return CmpUnknown;
} }
break;
case Type::Decimal: case Type::Decimal:
break; break;
case Type::Char: case Type::Char:
...@@ -310,7 +300,6 @@ NdbSqlUtil::cmp(Uint32 typeId, const Uint32* p1, const Uint32* p2, Uint32 full, ...@@ -310,7 +300,6 @@ NdbSqlUtil::cmp(Uint32 typeId, const Uint32* p1, const Uint32* p2, Uint32 full,
int k = memcmp(u1.v, u2.v, size << 2); int k = memcmp(u1.v, u2.v, size << 2);
return k < 0 ? -1 : k > 0 ? +1 : full == size ? 0 : CmpUnknown; return k < 0 ? -1 : k > 0 ? +1 : full == size ? 0 : CmpUnknown;
} }
break;
case Type::Varchar: case Type::Varchar:
{ {
/* /*
...@@ -328,7 +317,6 @@ NdbSqlUtil::cmp(Uint32 typeId, const Uint32* p1, const Uint32* p2, Uint32 full, ...@@ -328,7 +317,6 @@ NdbSqlUtil::cmp(Uint32 typeId, const Uint32* p1, const Uint32* p2, Uint32 full,
} }
return CmpUnknown; return CmpUnknown;
} }
break;
case Type::Binary: // XXX fix these case Type::Binary: // XXX fix these
break; break;
case Type::Varbinary: case Type::Varbinary:
...@@ -352,7 +340,6 @@ NdbSqlUtil::cmp(Uint32 typeId, const Uint32* p1, const Uint32* p2, Uint32 full, ...@@ -352,7 +340,6 @@ NdbSqlUtil::cmp(Uint32 typeId, const Uint32* p1, const Uint32* p2, Uint32 full,
} }
return CmpUnknown; return CmpUnknown;
} }
break;
case Type::Timespec: // XXX fix this case Type::Timespec: // XXX fix this
break; break;
case Type::Blob: // XXX fix case Type::Blob: // XXX fix
...@@ -371,7 +358,6 @@ NdbSqlUtil::cmp(Uint32 typeId, const Uint32* p1, const Uint32* p2, Uint32 full, ...@@ -371,7 +358,6 @@ NdbSqlUtil::cmp(Uint32 typeId, const Uint32* p1, const Uint32* p2, Uint32 full,
} }
return CmpUnknown; return CmpUnknown;
} }
break;
} }
return CmpError; return CmpError;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment