mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-21 09:00:35 +00:00
schema: specify the kind of join we want
If we end up including more than one boost::<>::join, like boost::range::join and boost::string::join, that will create an ambiguity. The compiler doesn't like it very much. Signed-off-by: Glauber Costa <glommer@cloudius-systems.com>
This commit is contained in:
@@ -202,9 +202,9 @@ public:
|
||||
}
|
||||
// Returns a range of column definitions
|
||||
auto all_columns_in_select_order() const {
|
||||
return boost::join(partition_key_columns(),
|
||||
boost::join(clustering_key_columns(),
|
||||
boost::join(static_columns(), regular_columns())));
|
||||
return boost::range::join(partition_key_columns(),
|
||||
boost::range::join(clustering_key_columns(),
|
||||
boost::range::join(static_columns(), regular_columns())));
|
||||
}
|
||||
uint32_t position(const column_definition& column) const {
|
||||
if (column.is_primary_key()) {
|
||||
|
||||
Reference in New Issue
Block a user