diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-07-06 07:28:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-07-06 07:28:09 +0000 |
commit | 52f4a5e2260f3e5b919b4e270339afd670bf0b8a (patch) | |
tree | 5ca419af0e2e409018492b82f5b9847f0112b5fb /README.md | |
parent | Adding upstream version 16.7.7. (diff) | |
download | sqlglot-52f4a5e2260f3e5b919b4e270339afd670bf0b8a.tar.xz sqlglot-52f4a5e2260f3e5b919b4e270339afd670bf0b8a.zip |
Adding upstream version 17.2.0.upstream/17.2.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | README.md | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -205,10 +205,11 @@ except sqlglot.errors.ParseError as e: [{ 'description': 'Expecting )', 'line': 1, - 'col': 13, + 'col': 16, 'start_context': 'SELECT foo( ', 'highlight': 'FROM', - 'end_context': ' bar' + 'end_context': ' bar', + 'into_expression': None, }] ``` @@ -470,7 +471,9 @@ make docs-serve ## Run Tests and Lint ``` -make check # Set SKIP_INTEGRATION=1 to skip integration tests +make style # Only linter checks +make unit # Only unit tests +make check # Full test suite & linter checks ``` ## Benchmarks |