- Support
"{schema}"."{table}"
notation.- Tokenize as a single name token. This affects formatter output:
echo 'select a from b.c, "d"."e"' | bin/anbt-sql-formatter
(before)
SELECT
a
FROM
b.c
,"d" . "e"
(after)
SELECT
a
FROM
b.c
,"d"."e"
No breaking changes.
- New configuration parameter
Rule#in_values_num
for controlling number of values in IN clause per line.
No breaking changes.
No breaking changes.
- Wrong matching when a string literal or a comment includes a multiwords keyword.
- Use
/usr/bin/env
for shebang.