summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjorn Munch <bjorn.munch@oracle.com>2010-11-19 12:35:53 +0100
committerBjorn Munch <bjorn.munch@oracle.com>2010-11-19 12:35:53 +0100
commitf45b6605a26782fb949981e2a70373a2bd80cc40 (patch)
tree43a692c443f6daf8bef2608aac0fdc5013217596
parent533e1731e915da867d919061ecf0f496c7fe3dd5 (diff)
downloadmariadb-git-f45b6605a26782fb949981e2a70373a2bd80cc40.tar.gz
avoid compilation warning about incomplete switch
-rw-r--r--client/mysqltest.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/client/mysqltest.cc b/client/mysqltest.cc
index f413931c5a2..e0fed9704a5 100644
--- a/client/mysqltest.cc
+++ b/client/mysqltest.cc
@@ -5721,6 +5721,8 @@ void do_block(enum block_cmd cmd, struct st_command* command)
case GE_OP:
v.int_val= (v.int_val >= v2.int_val);
break;
+ case ILLEG_OP:
+ die("Impossible operator, this cannot happen");
}
v.is_int= TRUE;