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

Multi-value inserts get formatted awkwardly #6

Open
ulope opened this issue Sep 24, 2014 · 3 comments
Open

Multi-value inserts get formatted awkwardly #6

ulope opened this issue Sep 24, 2014 · 3 comments

Comments

@ulope
Copy link

ulope commented Sep 24, 2014

This SQL fragment

INSERT INTO bla VALUES (1, 2), (3, 4), (5, 6);

gets formatted into this

INSERT INTO bla
VALUES (1,
        2), (3,
             4), (5,
                  6);

Instead I would expect something like:

INSERT INTO bla
VALUES 
    (1, 2),
    (3, 4),
    (5, 6)
;
@zessx
Copy link

zessx commented Dec 2, 2014

I was about to open a similar issue. +1

@jvngd
Copy link

jvngd commented Jul 20, 2015

I want to +1 this.

@immorlee
Copy link

Same issue, +1

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

No branches or pull requests

5 participants