Skip to content

Commit 0222713

Browse files
committed
Support get value at.
1 parent 4774da1 commit 0222713

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)