-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Description
I'm experiencing a curious bug where comments don't end up where I expect. In addition, if I keep formatting the text, the comments keep moving until they all settle on the same line.
Language: BigQuery
Text to format:
CREATE TEMP TABLE blah
-- comments
-- more comments
-- even more comments
(
date DATE NOT NULL
) AS
(
SELECT
bleep
FROM
bloop
);
Expected output:
CREATE TEMP TABLE blah
-- comments
-- more comments
-- even more comments
(
date DATE NOT NULL
) AS
(
SELECT
bleep
FROM bloop
);
Actual output:
CREATE TEMP TABLE blah -- comments
-- more comments
-- even more comments
(
date DATE NOT NULL
) AS
(
SELECT
bleep
FROM bloop
);
Metadata
Metadata
Assignees
Labels
No labels