diff options
author | unknown <mskold@mysql.com> | 2005-01-04 20:56:04 +0100 |
---|---|---|
committer | unknown <mskold@mysql.com> | 2005-01-04 20:56:04 +0100 |
commit | a4dfa930d70b7cc3e9a3c1df92b9f2129981850c (patch) | |
tree | 55615aef1901193cb7512f06b1b0fee40de18292 /sql/ha_ndbcluster.h | |
parent | e9171b2cb3138e000cfd6c075751e99236053bcd (diff) | |
download | mariadb-git-a4dfa930d70b7cc3e9a3c1df92b9f2129981850c.tar.gz |
Added support for different int sizes in condition pushdown
Diffstat (limited to 'sql/ha_ndbcluster.h')
-rw-r--r-- | sql/ha_ndbcluster.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/sql/ha_ndbcluster.h b/sql/ha_ndbcluster.h index 9e53c5bc2cc..411d7e9b941 100644 --- a/sql/ha_ndbcluster.h +++ b/sql/ha_ndbcluster.h @@ -103,11 +103,6 @@ class Ndb_item { Ndb_item(Item_func::Functype func_type); ~Ndb_item(); void print(String *str); - bool is_big() - { - enum_field_types type= value.field_value->field->type(); - return (type == MYSQL_TYPE_LONGLONG || type == MYSQL_TYPE_INT24); - }; uint32 pack_length() { return value.field_value->field->pack_length(); }; // Getters and Setters longlong get_int_value() { return value.int_value; }; |