summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-07-06 07:28:12 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-07-06 07:28:12 +0000
commit374a0f6318bcf423b1b784d30b25a8327c65cb24 (patch)
tree9303a1cbdba85b5d9781ebef32eb1902d3790c99 /README.md
parentReleasing debian version 16.7.7-1. (diff)
downloadsqlglot-374a0f6318bcf423b1b784d30b25a8327c65cb24.tar.xz
sqlglot-374a0f6318bcf423b1b784d30b25a8327c65cb24.zip
Merging upstream version 17.2.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'README.md')
-rw-r--r--README.md9
1 files changed, 6 insertions, 3 deletions
diff --git a/README.md b/README.md
index 0db8feb..0c4252f 100644
--- a/README.md
+++ b/README.md
@@ -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