Skip to content

Commit d2e56ae

Browse files
authored
Merge pull request #268 from huyphams/master
Added ColumnTuple::At()
2 parents 4774da1 + 0222713 commit d2e56ae

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

clickhouse/columns/tuple.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ class ColumnTuple : public Column {
2121
return columns_[n];
2222
}
2323

24+
ColumnRef At(size_t n) const {
25+
return columns_[n];
26+
}
27+
2428
public:
2529
/// Appends content of given column to the end of current one.
2630
void Append(ColumnRef column) override;

0 commit comments

Comments
 (0)