-
Notifications
You must be signed in to change notification settings - Fork 0
feat(schema): ClickHouse index algorithms and engine SETTINGS #6
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
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
18a77b0
feat(schema): ClickHouse data-skipping indexes and engine SETTINGS
lohanidamodar 1f811df
fix(schema): address review feedback on ClickHouse skip indexes
lohanidamodar f03abae
refactor(schema): collapse skip-index API into Table::index()
lohanidamodar fb4f783
refactor(schema): rename SkipIndexAlgorithm to IndexAlgorithm
lohanidamodar f3e411d
fix(schema): scope index-name regex to CH; format settings floats
lohanidamodar 34b2353
Merge branch 'main' into feat-clickhouse-skip-index-and-settings
Copilot a3fcc2b
fix(schema): restore static return type on Table::index() for fluent …
Copilot b1df44e
fix(schema): guard ClickHouse index loops against non-skip index types
Copilot 1cdeee3
Update src/Query/Schema/Table.php
abnegate f045969
Update src/Query/Schema/Table.php
abnegate df22caf
Update src/Query/Schema/ClickHouse.php
abnegate d60af4c
docs(readme): use builder style for skip index and SETTINGS examples
Copilot 16ddd87
fix(tests): rewrite skip-index and SETTINGS tests to use builder style
Copilot a548ffe
fix(schema): expose Column forwarders for skip-index and SETTINGS
abnegate 852542f
Update src/Query/Schema/Table.php
abnegate bb529d8
fix(schema): make index granularity nullable to preserve user intent
abnegate bf3a8f9
fix(schema): restore missing brace in settings() string validation
abnegate File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| <?php | ||
|
|
||
| namespace Utopia\Query\Schema\ClickHouse; | ||
|
|
||
| enum IndexAlgorithm: string | ||
| { | ||
| case MinMax = 'minmax'; | ||
| case Set = 'set'; | ||
| case BloomFilter = 'bloom_filter'; | ||
| case NgramBloomFilter = 'ngrambf_v1'; | ||
| case TokenBloomFilter = 'tokenbf_v1'; | ||
| case Inverted = 'inverted'; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.