diff options
author | unknown <mskold@mysql.com> | 2005-06-02 14:46:58 +0200 |
---|---|---|
committer | unknown <mskold@mysql.com> | 2005-06-02 14:46:58 +0200 |
commit | b8c37b95025acf0d028dff6a1d22dc9b2d7530cc (patch) | |
tree | 05def638cc2d9eae61ebf4c05f42d15b2afd2f74 /sql/ha_ndbcluster.cc | |
parent | 9f50c2ffacfdeba18bfc85c8c2410d59c8528c39 (diff) | |
download | mariadb-git-b8c37b95025acf0d028dff6a1d22dc9b2d7530cc.tar.gz |
Removed bug introduced when implementing support for IN and BETWEEN
Diffstat (limited to 'sql/ha_ndbcluster.cc')
-rw-r--r-- | sql/ha_ndbcluster.cc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/sql/ha_ndbcluster.cc b/sql/ha_ndbcluster.cc index 0b6a8e34e93..65e16dcb539 100644 --- a/sql/ha_ndbcluster.cc +++ b/sql/ha_ndbcluster.cc @@ -6476,7 +6476,6 @@ void ndb_serialize_cond(const Item *item, void *arg) context->expect_field_result(REAL_RESULT); context->expect_field_result(INT_RESULT); context->expect_field_result(DECIMAL_RESULT); - context->expect(Item::FUNC_ITEM); break; } case(Item_func::NE_FUNC): { @@ -6493,7 +6492,6 @@ void ndb_serialize_cond(const Item *item, void *arg) context->expect_field_result(REAL_RESULT); context->expect_field_result(INT_RESULT); context->expect_field_result(DECIMAL_RESULT); - context->expect(Item::FUNC_ITEM); break; } case(Item_func::LT_FUNC): { @@ -6510,7 +6508,6 @@ void ndb_serialize_cond(const Item *item, void *arg) context->expect_field_result(REAL_RESULT); context->expect_field_result(INT_RESULT); context->expect_field_result(DECIMAL_RESULT); - context->expect(Item::FUNC_ITEM); break; } case(Item_func::LE_FUNC): { @@ -6527,7 +6524,6 @@ void ndb_serialize_cond(const Item *item, void *arg) context->expect_field_result(REAL_RESULT); context->expect_field_result(INT_RESULT); context->expect_field_result(DECIMAL_RESULT); - context->expect(Item::FUNC_ITEM); break; } case(Item_func::GE_FUNC): { @@ -6544,7 +6540,6 @@ void ndb_serialize_cond(const Item *item, void *arg) context->expect_field_result(REAL_RESULT); context->expect_field_result(INT_RESULT); context->expect_field_result(DECIMAL_RESULT); - context->expect(Item::FUNC_ITEM); break; } case(Item_func::GT_FUNC): { @@ -6561,7 +6556,6 @@ void ndb_serialize_cond(const Item *item, void *arg) context->expect_field_result(REAL_RESULT); context->expect_field_result(INT_RESULT); context->expect_field_result(DECIMAL_RESULT); - context->expect(Item::FUNC_ITEM); break; } case(Item_func::LIKE_FUNC): { |