File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,9 +2,10 @@ Development
22-----------
33
44Bug Fixes
5- * Avoid "stair case" effects when identifiers, functions or keywords
6- are mixed in identifier lists (issue45, issue49) and when asterisks
7- are used as operators (issue58).
5+ * Avoid "stair case" effects when identifiers, functions,
6+ placeholders or keywords are mixed in identifier lists (issue45,
7+ issue49, issue52) and when asterisks are used as operators
8+ (issue58).
89 * Make keyword detection more restrict (issue47).
910 * Improve handling of CASE statements (issue46).
1011 * Fix statement splitting when parsing recursive statements (issue57,
Original file line number Diff line number Diff line change @@ -197,6 +197,7 @@ def group_identifier_list(tlist):
197197 lambda t : t .match (T .Keyword , 'role' ),
198198 lambda t : t .ttype == T .Number .Integer ,
199199 lambda t : t .ttype == T .String .Single ,
200+ lambda t : t .ttype == T .Name .Placeholder ,
200201 lambda t : isinstance (t , sql .Comparison ),
201202 lambda t : isinstance (t , sql .Comment ),
202203 ]
You can’t perform that action at this time.
0 commit comments