diff options
author | bell@sanja.is.com.ua <> | 2004-03-18 15:14:36 +0200 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2004-03-18 15:14:36 +0200 |
commit | 2b45b53066da7181c9cd7551331c2439c03d8793 (patch) | |
tree | cd9a05b7a39b8aa75fa136b3e98ef798762bbcb8 /sql/sql_load.cc | |
parent | 8035ce40eca47844ecda29d48e84639f9c9334d9 (diff) | |
download | mariadb-git-2b45b53066da7181c9cd7551331c2439c03d8793.tar.gz |
DBUG_ASSERT(fixed == 1); added to val*
small optimisation in signed_literal
Diffstat (limited to 'sql/sql_load.cc')
-rw-r--r-- | sql/sql_load.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_load.cc b/sql/sql_load.cc index 58a9b9c588d..1ae93f2b1a0 100644 --- a/sql/sql_load.cc +++ b/sql/sql_load.cc @@ -122,7 +122,7 @@ int mysql_load(THD *thd,sql_exchange *ex,TABLE_LIST *table_list, { Field **field; for (field=table->field; *field ; field++) - fields.push_back(new Item_field(*field)); + fields.push_back(new Item_field(*field, 1)); } else { // Part field list |