Skip to content

Commit 2d64512

Browse files
authored
Update README (#4918)
1 parent c0b3448 commit 2d64512

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

README.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ It is a very comprehensive generic SQL parser with a robust [test suite](https:/
66

77
You can easily [customize](#custom-dialects) the parser, [analyze](#metadata) queries, traverse expression trees, and programmatically [build](#build-and-modify-sql) SQL.
88

9-
Syntax [errors](#parser-errors) are highlighted and dialect incompatibilities can warn or raise depending on configurations. However, SQLGlot does not aim to be a SQL validator, so it may fail to detect certain syntax errors.
9+
SQLGlot can detect a variety of [syntax errors](#parser-errors), such as unbalanced parentheses, incorrect usage of reserved keywords, and so on. These errors are highlighted and dialect incompatibilities can warn or raise depending on configurations.
1010

1111
Learn more about SQLGlot in the API [documentation](https://sqlglot.com/) and the expression tree [primer](https://github.com/tobymao/sqlglot/blob/main/posts/ast_primer.md).
1212

@@ -80,10 +80,6 @@ I tried to output SQL but it's not in the correct dialect!
8080

8181
* Like parsing, generating SQL also requires the target dialect to be specified, otherwise the SQLGlot dialect will be used by default. For example, to transpile a query from Spark SQL to DuckDB, do `parse_one(sql, dialect="spark").sql(dialect="duckdb")` (alternatively: `transpile(sql, read="spark", write="duckdb")`).
8282

83-
I tried to parse invalid SQL and it worked, even though it should raise an error! Why didn't it validate my SQL?
84-
85-
* SQLGlot does not aim to be a SQL validator - it is designed to be very forgiving. This makes the codebase more comprehensive and also gives more flexibility to its users, e.g. by allowing them to include trailing commas in their projection lists.
86-
8783
What happened to sqlglot.dataframe?
8884

8985
* The PySpark dataframe api was moved to a standalone library called [SQLFrame](https://github.com/eakmanrq/sqlframe) in v24. It now allows you to run queries as opposed to just generate SQL.

posts/onboarding.md

-3
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,6 @@ This allows SQLGlot to return the code unmodified even though it cannot parse it
164164
### Dialect-specific parsing
165165
The base parser’s goal is to represent as many common constructs from different SQL dialects as possible. This makes the parser more lenient and less-repetitive/concise.
166166

167-
> [!WARNING]
168-
> SQLGlot does not aim to be a SQL validator, so it may not detect certain syntax errors.
169-
170167
Dialect-specific parser behavior is implemented in two ways: feature flags and parser overrides.
171168

172169
If two different parsing behaviors are common across dialects, the base parser may implement both and use feature flags to determine which should be used for a specific dialect. In contrast, parser overrides directly replace specific base parser methods.

0 commit comments

Comments
 (0)