diff options
author | bar@mysql.com <> | 2004-10-28 15:21:20 +0500 |
---|---|---|
committer | bar@mysql.com <> | 2004-10-28 15:21:20 +0500 |
commit | 541883f9d89a8d38affba60bf9506289a6232da1 (patch) | |
tree | 89a7308e5767cf2511c3186f862a93842a18065d /sql/sql_string.h | |
parent | c8ba8c13061a49f66d555fd1ef5810f57da34805 (diff) | |
download | mariadb-git-541883f9d89a8d38affba60bf9506289a6232da1.tar.gz |
Produce a "truncated" warning if a value cannot be converted
into the column character set on INSERT/UPDATE.
Diffstat (limited to 'sql/sql_string.h')
-rw-r--r-- | sql/sql_string.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_string.h b/sql/sql_string.h index 2d368991159..de8f4af58d9 100644 --- a/sql/sql_string.h +++ b/sql/sql_string.h @@ -29,7 +29,7 @@ int sortcmp(const String *a,const String *b, CHARSET_INFO *cs); String *copy_if_not_alloced(String *a,String *b,uint32 arg_length); uint32 copy_and_convert(char *to, uint32 to_length, CHARSET_INFO *to_cs, const char *from, uint32 from_length, - CHARSET_INFO *from_cs); + CHARSET_INFO *from_cs, uint *errors= 0); class String { @@ -199,7 +199,7 @@ public: CHARSET_INFO *cs); bool set_or_copy_aligned(const char *s, uint32 arg_length, CHARSET_INFO *cs); bool copy(const char*s,uint32 arg_length, CHARSET_INFO *csfrom, - CHARSET_INFO *csto); + CHARSET_INFO *csto, uint *errors= 0); bool append(const String &s); bool append(const char *s); bool append(const char *s,uint32 arg_length); |