Skip to content
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

Boolean columns #384

Merged
merged 22 commits into from
Apr 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
a2e47f8
feat(boolean columns): add optional_bool
pflanze Mar 19, 2024
5eb3430
feat(boolean columns): add storage/column/bool_column
pflanze Mar 14, 2024
af44f1a
feat(boolean columns): column_group.h: add {ColumnPartitionGroup,Colu…
pflanze Mar 14, 2024
0b47b82
feat(boolean columns): database_config: add BOOL to ValueType
pflanze Mar 14, 2024
d7adecf
feat(boolean columns): column_group: update ColumnPartitionGroup
pflanze Mar 27, 2024
e6d5363
feat(boolean columns): database_config: add "boolean" case to de/seri…
pflanze Mar 15, 2024
12fc7b8
feat(boolean columns): database_config: add "bool" case to DatabaseCo…
pflanze Mar 24, 2024
30febdd
feat(boolean columns): database_config: update DatabaseMetadata::getC…
pflanze Mar 15, 2024
0aef8f0
feat(boolean columns): database_partition
pflanze Mar 18, 2024
c555a68
feat(boolean columns): database
pflanze Mar 24, 2024
b020109
feat(boolean columns): actions/tuple: update assignTupleField()
pflanze Mar 15, 2024
2ad1268
feat(boolean columns): add and use JsonValueType
pflanze Mar 18, 2024
3c990e2
feat(boolean columns): add bool to JsonValueType, update tuple
pflanze Mar 18, 2024
ff2a138
feat(boolean columns): add filter_expressions/bool_equals
pflanze Mar 19, 2024
f0aa3e8
feat(boolean columns): optional_bool: add `==`
pflanze Mar 27, 2024
e52f2dc
feat(boolean columns): selection
pflanze Mar 27, 2024
b82ec69
feat(boolean columns): add expression_type "BooleanEquals"
pflanze Mar 27, 2024
54ea816
feat(boolean columns (tests)): update config, add inputs and update r…
pflanze Apr 9, 2024
44ffd14
feat(boolean columns (tests)): add booleanEquals tests
pflanze Apr 6, 2024
9be9042
refactor: replace exampleDatasetAsNdjson/database_config.yaml with a …
pflanze Apr 9, 2024
03b5912
refactor(boolean columns): extract method to reduce cognitive complexity
fengelniederhammer Apr 10, 2024
685db9f
feat(boolean columns, resolves #384): const declaration
pflanze Apr 10, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions endToEndTests/test/queries/DetailsOrderBy.json

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions endToEndTests/test/queries/DetailsOrderByLimit.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"pango_lineage": "B.1.1.7",
"qc_value": 0.98,
"region": "Europe",
"test_boolean_column": true,
"unsorted_date": null
},
{
Expand All @@ -45,6 +46,7 @@
"pango_lineage": "B.1.1.7",
"qc_value": 0.96,
"region": null,
"test_boolean_column": true,
"unsorted_date": "2021-01-25"
}
]
Expand Down
Loading