You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 4, 2024. It is now read-only.
Add spaces to regex for relational operators. (#612)
* Add spaces to regex for relational operators.
* Add and adjust tests for relational operators.
Since gt is now interpreted as a string, it was removed from the invalid filters test.
* Add spaces to remaining relational operators.
* Add test for symbol-based operators that aren't followed by a space.
* Update src/dash-table/syntax-tree/lexeme/relational.ts
Co-Authored-By: Marc-André Rivet <[email protected]>
* Add space to regex for notEqual.
* Add support for incomplete queries.
* Add CHANGELOG entry.
* Add unit tests.
* Update tests/cypress/tests/unit/query_syntactic_tree_test.ts
Co-Authored-By: Marc-André Rivet <[email protected]>
* Trim filter values.
* Ensure that trailing space does not get captured.
* Revert "Trim filter values."
This reverts commit aae4907.
* Add regexpMatch parameter for relational operators.
* Replace non-capturing group with positive lookahead.
* Update relational.ts
- Fixed a bug where any string beginning with a relational operator was being interpreted as that operator being applied to the rest of the string (e.g., "lens" was interpreted as "<=ns")
0 commit comments