Skip to content

Commit 4ad66a7

Browse files
committed
Update Changelog and authors.
1 parent db1ebe2 commit 4ad66a7

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ Alphabetical list of contributors:
3232
* Fredy Wijaya <[email protected]>
3333
* Gavin Wahl <[email protected]>
3434
* Georg Traar <[email protected]>
35+
3536
* Hugo van Kemenade <[email protected]>
3637
3738
* Ian Robertson <[email protected]>

CHANGELOG

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Enhancements:
1414
* Improve splitting of Transact SQL when using GO keyword (issue762).
1515
* Support for some JSON operators (issue682).
1616
* Improve formatting of statements containing JSON operators (issue542).
17+
* Support for BigQuery and Snowflake keywords (pr699, by griffatrasgo).
1718

1819
Bug Fixes
1920

sqlparse/lexer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ def default_initialization(self):
6666
self.add_keywords(keywords.KEYWORDS_PLPGSQL)
6767
self.add_keywords(keywords.KEYWORDS_HQL)
6868
self.add_keywords(keywords.KEYWORDS_MSACCESS)
69-
self.add_keywords(keywords.KEYWORDS)
7069
self.add_keywords(keywords.KEYWORDS_SNOWFLAKE)
7170
self.add_keywords(keywords.KEYWORDS_BIGQUERY)
71+
self.add_keywords(keywords.KEYWORDS)
7272

7373
def clear(self):
7474
"""Clear all syntax configurations.

0 commit comments

Comments
 (0)