Greater flexibility in custom filter functions#1881
Merged
Conversation
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## master #1881 +/- ##
=======================================
Coverage 92.21% 92.21%
=======================================
Files 437 437
Lines 14866 14880 +14
Branches 2451 2454 +3
=======================================
+ Hits 13708 13722 +14
Misses 713 713
Partials 445 445 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
…artsWith/endsWith built-in query string functions; add example to expose function defined in SQL
697028c to
22488f8
Compare
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR enables using a (built-in or custom) function as the first parameter of the
any/contains/startsWith/endsWithquery string functions. For example, the following filters are now allowed (wheretoUpperCaseis a custom function):Additionally, this PR adds an example that defines a custom filter function, backed by a user-defined SQL function.
For example, in a query string such as:
The
decryptcustom filter function is substituted by thedecrypt_column_value()user-defined SQL function in the generated WHERE clause.QUALITY CHECKLIST