summaryrefslogtreecommitdiff
path: root/sql/sql_select.h
diff options
context:
space:
mode:
authorunknown <sanja@montyprogram.com>2012-05-08 20:58:41 +0300
committerunknown <sanja@montyprogram.com>2012-05-08 20:58:41 +0300
commitfe0a0bdb143696c54206cd5f908dac94996aab42 (patch)
treec5ae94a108a13dc32db8ff6266166cc468f0549b /sql/sql_select.h
parent4e2926d927e51f47f51ccbb0ec77ffd9999f68c2 (diff)
downloadmariadb-git-fe0a0bdb143696c54206cd5f908dac94996aab42.tar.gz
Fix compiler warnings.
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 22bdd93a38c..ab531f66649 100644
--- a/sql/sql_select.h
+++ b/sql/sql_select.h
@@ -1469,7 +1469,7 @@ public:
ptr, null, 1);
}
store_key(store_key &arg)
- :null_key(arg.null_key), to_field(arg.to_field),
+ :Sql_alloc(), null_key(arg.null_key), to_field(arg.to_field),
null_ptr(arg.null_ptr), err(arg.err)
{}