diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-02-04 20:20:34 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-02-04 20:20:34 +0000 |
commit | b8a3e51079203d6d9f46d5faf9e624d53b62a0ad (patch) | |
tree | 6941cea3601920c97bfcdf5d628da77a9b16d229 /libdbpp/selectcommand.h | |
parent | Deriving comparator (diff) | |
download | libdbpp-b8a3e51079203d6d9f46d5faf9e624d53b62a0ad.tar.bz2 libdbpp-b8a3e51079203d6d9f46d5faf9e624d53b62a0ad.tar.xz libdbpp-b8a3e51079203d6d9f46d5faf9e624d53b62a0ad.zip |
Columns are unique, not shared
Diffstat (limited to 'libdbpp/selectcommand.h')
-rw-r--r-- | libdbpp/selectcommand.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdbpp/selectcommand.h b/libdbpp/selectcommand.h index 05ec2ce..2fb9253 100644 --- a/libdbpp/selectcommand.h +++ b/libdbpp/selectcommand.h @@ -128,7 +128,7 @@ namespace DB { protected: /// Helper function so clients need not know about boost::multi_index_container. - ColumnPtr insertColumn(ColumnPtr); + const ColumnPtr & insertColumn(ColumnPtr); class Columns; |