We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d23bf5 commit a6aeb7aCopy full SHA for a6aeb7a
clickhouse/columns/date.cpp
@@ -210,6 +210,10 @@ void ColumnDateTime::AppendRaw(uint32_t value) {
210
data_->Append(value);
211
}
212
213
+uint32_t ColumnDateTime::RawAt(size_t n) const {
214
+ return data_->At(n);
215
+}
216
+
217
std::string ColumnDateTime::Timezone() const {
218
return type_->As<DateTimeType>()->Timezone();
219
clickhouse/columns/date.h
@@ -142,6 +142,7 @@ class ColumnDateTime : public Column {
142
143
/// Append raw as UNIX epoch seconds in uint32
144
void AppendRaw(uint32_t value);
145
+ uint32_t RawAt(size_t n) const;
146
147
/// Timezone associated with a data column.
148
std::string Timezone() const;
0 commit comments