From f45b6605a26782fb949981e2a70373a2bd80cc40 Mon Sep 17 00:00:00 2001 From: Bjorn Munch Date: Fri, 19 Nov 2010 12:35:53 +0100 Subject: avoid compilation warning about incomplete switch --- client/mysqltest.cc | 2 ++ 1 file changed, 2 insertions(+) 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; -- cgit v1.2.1