Skip to content

Improve DISTINCT ON formatting style #104

@abcd-ts

Description

@abcd-ts

input

select distinct on (col1) *
from tbl

actual

select
	distinct on
		(
			col1
		)
	*
from
	tbl

expected (by uroboroSQL-formatter)

select
	distinct
on
	(col1)	*
from	tbl

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions