diff options
author | Bjorn Munch <bjorn.munch@oracle.com> | 2010-11-19 12:35:53 +0100 |
---|---|---|
committer | Bjorn Munch <bjorn.munch@oracle.com> | 2010-11-19 12:35:53 +0100 |
commit | f45b6605a26782fb949981e2a70373a2bd80cc40 (patch) | |
tree | 43a692c443f6daf8bef2608aac0fdc5013217596 | |
parent | 533e1731e915da867d919061ecf0f496c7fe3dd5 (diff) | |
download | mariadb-git-f45b6605a26782fb949981e2a70373a2bd80cc40.tar.gz |
avoid compilation warning about incomplete switch
-rw-r--r-- | client/mysqltest.cc | 2 |
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; |