Added
- Respect XDG base dirs on Mac OS ([889](https://github.com/sqlfluff/sqlfluff/issues/889)).
- Added support for additional delimiters by creating a new DelimiterSegment in the
ANSI dialect which defaults to the semicolon, but allows it to be more intuitive
when overridden in a specific child dialect (mysql) [901](https://github.com/sqlfluff/sqlfluff/issues/901))
- Added support for the DELIMITER statement in the mysql dialect [901](https://github.com/sqlfluff/sqlfluff/issues/901))
- Added support for additional delimiters by creating a new DelimiterSegment in the
ANSI dialect which defaults to the semicolon, but allows it to be more intuitive
when overridden in a specific child dialect (mysql) [901](https://github.com/sqlfluff/sqlfluff/issues/901))
- Added support for function as a default column value [849](https://github.com/sqlfluff/sqlfluff/issues/849).
- Add an `--include-metas` option for parse output to show the meta
segments in the parse tree.
- Allow CREATE FUNCTION syntax without arguments [bolajiwahab](https://github.com/bolajiwahab) [#1063](https://github.com/sqlfluff/sqlfluff/pull/1063).
- Added support for the CREATE/DROP PROCEDURE statement for the mysql dialect [901](https://github.com/sqlfluff/sqlfluff/issues/901))
- Added specific allowed/required syntaxes for CREATE/DROP FUNCTION within the mysql dialect [901](https://github.com/sqlfluff/sqlfluff/issues/901))
- Now possible to run sqlfluff commands outside the project root when using the dbt templater.
Changed
- Renamed --parallel CLI argument to --processes to be more accurate.
- L034 now ignores select statements which contain macros.
- L034 now ignores select statements part of a set expression, most commonly a union.
- Fix bug [1082](https://github.com/sqlfluff/sqlfluff/issues/1082), adding
support for BigQuery `select as struct '1' as bb, 2 as aa` syntax.
- Rationalisation of the placement of meta segments within templated
queries to support more reliable indentation. This includes prioritising
_longer_ invariant sections first and then dropping any shorter ones
which then are relatively out of place.
- Additional logging within the lexer and templater engines.
- Allow meta segments to parse within `Delimited` grammars which otherwise
don't allow gaps. This is facilitated through an optional argument to
`trim_non_code_segments`.
- Fix bug [1079](https://github.com/sqlfluff/sqlfluff/issues/1079), addressing
issues with L025 and L026 with BigQuery column references involving `STRUCT`.
- [1080](https://github.com/sqlfluff/sqlfluff/issues/1080) Add
SET SCHEMA and DROP SCHEMA support to ANSI dialect.
Contributors
- [bolajiwahab](https://github.com/bolajiwahab) ([#1063](https://github.com/sqlfluff/sqlfluff/pull/1063))
- [silverbullettruck2001](https://github.com/silverbullettruck2001) ([#1126](https://github.com/sqlfluff/sqlfluff/pull/1126), [#1099](https://github.com/sqlfluff/sqlfluff/pull/1099), [#1141](https://github.com/sqlfluff/sqlfluff/pull/1141))