Skip to content

Fix False Positive with Require Schema Rule & Github Actions Output Clobbering

Choose a tag to compare

@sbdchd sbdchd released this 06 Jun 23:33
· 6 commits to master since this release
64d367c

Added

  • fmt: support comments in group by (#1194)

Fixed

  • linter: fix github actions output clobbering json/gcc (#1192)

  • linter: fix require table schema false positive on temp tables (#1191)

    Previously this would error:

    create temp table t (id bigint);
  • parser: fix various ast gaps (#1190)

  • parser: fix index option parsing (#1188)

    Previously this wouldn't parse:

    create index index_name on public.table_name using gin (column_name public.gin__int_ops);
  • parser: add ast nodes & fix alter restart (#1193)