summaryrefslogtreecommitdiff
path: root/sql/ha_ndbcluster.h
diff options
context:
space:
mode:
authorunknown <mskold@mysql.com>2005-01-04 20:56:04 +0100
committerunknown <mskold@mysql.com>2005-01-04 20:56:04 +0100
commita4dfa930d70b7cc3e9a3c1df92b9f2129981850c (patch)
tree55615aef1901193cb7512f06b1b0fee40de18292 /sql/ha_ndbcluster.h
parente9171b2cb3138e000cfd6c075751e99236053bcd (diff)
downloadmariadb-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.h5
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; };