Skip to content

Commit

Permalink
cql3: fix column_condition::collection_in_condition() naming
Browse files Browse the repository at this point in the history
  • Loading branch information
avikivity committed Apr 28, 2015
1 parent 1f5321d commit 993db76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cql3/column_condition.hh
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,7 @@ public:
}

/** An IN condition on a collection element with a single marker. For example: "IF col['key'] IN ?" */
static ::shared_ptr<raw> collectionInCondition(::shared_ptr<term::raw> collection_element,
static ::shared_ptr<raw> collection_in_condition(::shared_ptr<term::raw> collection_element,
::shared_ptr<abstract_marker::in_raw> in_marker) {
return ::make_shared<raw>(::shared_ptr<term::raw>{}, std::vector<::shared_ptr<term::raw>>{}, std::move(in_marker),
std::move(collection_element), operator_type::IN);
Expand Down

0 comments on commit 993db76

Please sign in to comment.