Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wrong indent for WHERE after LEFT JOIN (again) #314

Open
codehz opened this issue Apr 12, 2023 · 0 comments
Open

Wrong indent for WHERE after LEFT JOIN (again) #314

codehz opened this issue Apr 12, 2023 · 0 comments

Comments

@codehz
Copy link

codehz commented Apr 12, 2023

version: 5.5
input:

do $$
begin 
select 1 from a left join x on a.id = x.id where a.selected;
end
$$;

output:

DO $$
BEGIN
    SELECT
        1
    FROM
        a
    LEFT JOIN x ON a.id = x.id
WHERE
    a.selected;
END
$$;

like #170 but not same context

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant