summaryrefslogtreecommitdiff
path: root/sql/sql_select.h
diff options
context:
space:
mode:
authormonty@mishka.local <>2004-09-17 03:08:23 +0300
committermonty@mishka.local <>2004-09-17 03:08:23 +0300
commit095f7e874087183fdc2fc914708b579175da95f3 (patch)
treea8b336253346895e427b74008617db6d076f5fa3 /sql/sql_select.h
parent37864e2727718a1e266461a0704104ce1cb6d436 (diff)
downloadmariadb-git-095f7e874087183fdc2fc914708b579175da95f3.tar.gz
Removed wrong warnings in test suite (This was because select_insert / select_create results was not freed.
Added thd to openfrm() for initialization of TABLE->in_use. This fixed a bug in BDB handling where table->in_use was used early
Diffstat (limited to 'sql/sql_select.h')
-rw-r--r--sql/sql_select.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_select.h b/sql/sql_select.h
index a1487693b79..eb80f3ee608 100644
--- a/sql/sql_select.h
+++ b/sql/sql_select.h
@@ -471,7 +471,7 @@ public:
{}
bool copy()
{
- return item->save_in_field(to_field, 1) || err != 0;
+ return item->save_in_field_no_warnings(to_field, 1) || err != 0;
}
const char *name() const { return "func"; }
};