diff options
author | lenz@mysql.com <> | 2002-10-30 21:55:56 +0100 |
---|---|---|
committer | lenz@mysql.com <> | 2002-10-30 21:55:56 +0100 |
commit | be932e7345571f4fc92dd236c1b4ca36520986f4 (patch) | |
tree | 5d2c778bb6794c73a8a8774a9ae2bb36443cb523 /sql/field.h | |
parent | 3d33dd1e6853ee88b0619af14d744fad98788dda (diff) | |
download | mariadb-git-be932e7345571f4fc92dd236c1b4ca36520986f4.tar.gz |
- Applied fix made in 4.0 tree to fix a bug when comparing a datetime
column with timestamp values with BETWEEN clause
Diffstat (limited to 'sql/field.h')
-rw-r--r-- | sql/field.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/field.h b/sql/field.h index e822f6a71d6..92e098c75c4 100644 --- a/sql/field.h +++ b/sql/field.h @@ -533,6 +533,7 @@ public: enum Item_result result_type () const { return field_length == 8 || field_length == 14 ? INT_RESULT : STRING_RESULT; } enum_field_types type() const { return FIELD_TYPE_TIMESTAMP;} enum ha_base_keytype key_type() const { return HA_KEYTYPE_ULONG_INT; } + enum Item_result cmp_type () const { return INT_RESULT; } void store(const char *to,uint length); void store(double nr); void store(longlong nr); |