summaryrefslogtreecommitdiff
path: root/sql/sql_load.cc
diff options
context:
space:
mode:
authorunknown <holyfoot/hf@mysql.com/deer.(none)>2006-12-07 09:11:56 +0400
committerunknown <holyfoot/hf@mysql.com/deer.(none)>2006-12-07 09:11:56 +0400
commite5168acb98b9fd4d9582ea7a5022d4da72a346d6 (patch)
tree04b6463e3f9a0e6021b4db1fce2eb3c1b9f9e8ec /sql/sql_load.cc
parente370ad30ba6743962d33084316cc9ce3edc13688 (diff)
downloadmariadb-git-e5168acb98b9fd4d9582ea7a5022d4da72a346d6.tar.gz
merging
mysql-test/r/gis.result: result fixed sql/field.cc: Field_*::reset() now returns int sql/sql_load.cc: merging fix
Diffstat (limited to 'sql/sql_load.cc')
-rw-r--r--sql/sql_load.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_load.cc b/sql/sql_load.cc
index 093e88bf82f..018db006276 100644
--- a/sql/sql_load.cc
+++ b/sql/sql_load.cc
@@ -753,7 +753,7 @@ read_sep_field(THD *thd, COPY_INFO &info, TABLE_LIST *table_list,
Field *field= ((Item_field *)item)->field;
if (field->reset())
{
- my_error(ER_WARN_NULL_TO_NOTNULL, MYF(0),sql_field->field->field_name,
+ my_error(ER_WARN_NULL_TO_NOTNULL, MYF(0),field->field_name,
thd->row_count);
DBUG_RETURN(1);
}