-
Notifications
You must be signed in to change notification settings - Fork 91
feat(clp-s)!: Add Timestamp column type to replaceDateString column type; Bump the archive version to 0.5.0.
#1788
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 53 commits
879e8b9
a0bffeb
28f7261
7a04767
16512a2
7435780
0888f4b
8ce2373
f08307f
7f03234
847c6e1
d8089e8
b4a1e5b
8327233
6049808
c8505e4
084a8c2
6130b00
24240f4
d2fb8e2
18c1751
8a4d93d
9c2c3ac
6ae885c
0a3e1bb
6671150
aa2766d
aaf738f
858f1c6
558ed39
8023508
190e843
9be9f90
987c994
8e7b403
a24d9d8
d42ceac
dd58b56
b86a3e0
1681a6a
a29d01a
2fd0349
b2fd04f
5e5a4c8
3bc858d
816010d
aea7667
8fc35ae
d7cbeea
e3d8868
25a1703
65cbef2
cdec0d2
52779b5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -333,12 +333,13 @@ void ArchiveWriter::initialize_schema_writer(SchemaWriter* writer, Schema const& | |
| std::make_unique<ClpStringColumnWriter>(id, m_var_dict, m_array_dict) | ||
| ); | ||
| break; | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Drop this line?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sure, I was trying to be defensive of some future situation where we let users access ArchiveWriter programmatically, but not really needed for now + probably not the best way to prevent users from trying to create deprecated column types. |
||
| case NodeType::DateString: | ||
| writer->append_column(std::make_unique<DateStringColumnWriter>(id)); | ||
| break; | ||
| case NodeType::DeltaInteger: | ||
| writer->append_column(std::make_unique<DeltaEncodedInt64ColumnWriter>(id)); | ||
| break; | ||
| case NodeType::Timestamp: | ||
| writer->append_column(std::make_unique<TimestampColumnWriter>(id)); | ||
| break; | ||
| case NodeType::DeprecatedDateString: | ||
| case NodeType::Metadata: | ||
| case NodeType::NullValue: | ||
| case NodeType::Object: | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.