Skip to content

Commit 4ad66a7

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

3 files changed

Lines changed: 3 additions & 1 deletion

File tree

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ Alphabetical list of contributors:
3232
* Fredy Wijaya <fredy.wijaya@gmail.com>
3333
* Gavin Wahl <gwahl@fusionbox.com>
3434
* Georg Traar <georg@crate.io>
35+
* griff <70294474+griffatrasgo@users.noreply.github.com>
3536
* Hugo van Kemenade <hugovk@users.noreply.github.com>
3637
* hurcy <cinyoung.hur@gmail.com>
3738
* Ian Robertson <ian.robertson@capitalone.com>

CHANGELOG

Lines changed: 1 addition & 0 deletions
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

Lines changed: 1 addition & 1 deletion
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)