summaryrefslogtreecommitdiff
path: root/sql/field_conv.cc
diff options
context:
space:
mode:
authorunknown <bar@mysql.com>2005-07-12 13:18:25 +0500
committerunknown <bar@mysql.com>2005-07-12 13:18:25 +0500
commit4c99c0e7db4ef394b9033eda45efc88e988bff10 (patch)
tree7a45f0f80e08cef0c3110a5b3632e87d0e58b309 /sql/field_conv.cc
parent2508b29e7c0833316934ed3bbecd74c5983bf388 (diff)
parentb18b97aace1ad49ce4fcb2ad634bc171ce289869 (diff)
downloadmariadb-git-4c99c0e7db4ef394b9033eda45efc88e988bff10.tar.gz
Merge mysql.com:/usr/home/bar/mysql-4.1
into mysql.com:/usr/home/bar/mysql-5.0 BitKeeper/etc/config: Auto merged mysql-test/r/ctype_utf8.result: Auto merged mysql-test/t/ctype_utf8.test: Auto merged vio/viossl.c: Auto merged VC++Files/tests/mysql_client_test.dsp: after merge change sql/field_conv.cc: after merge fix.
Diffstat (limited to 'sql/field_conv.cc')
-rw-r--r--sql/field_conv.cc33
1 files changed, 20 insertions, 13 deletions
diff --git a/sql/field_conv.cc b/sql/field_conv.cc
index 15598e59bb9..0dc82666f52 100644
--- a/sql/field_conv.cc
+++ b/sql/field_conv.cc
@@ -324,21 +324,28 @@ static void do_field_real(Copy_field *copy)
static void do_cut_string(Copy_field *copy)
{ // Shorter string field
- memcpy(copy->to_ptr,copy->from_ptr,copy->to_length);
-
- /* Check if we loosed any important characters */
- char *ptr,*end;
- for (ptr=copy->from_ptr+copy->to_length,end=copy->from_ptr+copy->from_length ;
- ptr != end ;
- ptr++)
+ int well_formed_error;
+ CHARSET_INFO *cs= copy->from_field->charset();
+ const char *from_end= copy->from_ptr + copy->from_length;
+ uint copy_length= cs->cset->well_formed_len(cs, copy->from_ptr, from_end,
+ copy->to_length / cs->mbmaxlen,
+ &well_formed_error);
+ if (copy->to_length < copy_length)
+ copy_length= copy->to_length;
+ memcpy(copy->to_ptr, copy->from_ptr, copy_length);
+
+ /* Check if we lost any important characters */
+ if (well_formed_error ||
+ cs->cset->scan(cs, copy->from_ptr + copy_length, from_end,
+ MY_SEQ_SPACES) < (copy->from_length - copy_length))
{
- if (!my_isspace(system_charset_info, *ptr)) // QQ: ucs incompatible
- {
- copy->to_field->set_warning(MYSQL_ERROR::WARN_LEVEL_WARN,
- WARN_DATA_TRUNCATED, 1);
- break;
- }
+ copy->to_field->set_warning(MYSQL_ERROR::WARN_LEVEL_WARN,
+ WARN_DATA_TRUNCATED, 1);
}
+
+ if (copy_length < copy->to_length)
+ cs->cset->fill(cs, copy->to_ptr + copy_length,
+ copy->to_length - copy_length, ' ');
}