summaryrefslogtreecommitdiff
path: root/sql/field.h
diff options
context:
space:
mode:
authormonty@mashka.mysql.fi <>2003-03-12 14:34:54 +0200
committermonty@mashka.mysql.fi <>2003-03-12 14:34:54 +0200
commitfef194fcb8859d2f5523eaf8e70eb949357ecbea (patch)
treefa15763d811c418cefae92a3f790e6e785618918 /sql/field.h
parentd57c2019d1501c7bd7d4b4cf4211c8cedc56e706 (diff)
downloadmariadb-git-fef194fcb8859d2f5523eaf8e70eb949357ecbea.tar.gz
Fix for --new option (Timestamp in YYYY-MM-DD HH:MM:SS format)
Diffstat (limited to 'sql/field.h')
-rw-r--r--sql/field.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/field.h b/sql/field.h
index 29c185505c7..842bbb89988 100644
--- a/sql/field.h
+++ b/sql/field.h
@@ -541,7 +541,7 @@ public:
Field_timestamp(char *ptr_arg, uint32 len_arg,
enum utype unireg_check_arg, const char *field_name_arg,
struct st_table *table_arg);
- enum Item_result result_type () const { return field_length == 8 || field_length == 14 ? INT_RESULT : STRING_RESULT; }
+ enum Item_result result_type () const;
enum_field_types type() const { return FIELD_TYPE_TIMESTAMP;}
enum ha_base_keytype key_type() const { return HA_KEYTYPE_ULONG_INT; }
void store(const char *to,uint length);
@@ -575,6 +575,7 @@ public:
void fill_and_store(char *from,uint len);
bool get_date(TIME *ltime,bool fuzzydate);
bool get_time(TIME *ltime);
+ void make_field(Send_field *field);
};