Decides whether to place open-parenthesis ( of sub-queries on a separate line.
true(default) adds newline before open-parenthesis.falseno newline.
Caveats:
This option is ignored when indentStyle: "tabularLeft" or "tabularRight" is used.
SELECT
*
FROM
(
SELECT
*
FROM
my_table
);
SELECT
*
FROM (
SELECT
*
FROM
my_table
);