You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The output of this SQL is very hard to read. The closing line of st_union should be on the same line and the indentation is all messed up
Input:
CREATE TEMPORARY TABLE IF NOT EXISTS square_poly2 AS (
WITH united AS (
SELECT
level,
st_union (st_buffer (geom, 0.01)) AS geom
FROMosmgrid._a_polygonesGROUP BY
level
),
united2 AS (
SELECT
level,
st_union (st_buffer (geom, 0.01)) AS geom
FROMosmgrid._a_polygonesGROUP BY
level
)
SELECT*FROM
united
);
Output:
CREATE TEMPORARY TABLE IF NOT EXISTS square_poly2 AS (
WITH united AS (
SELECT
level,
st_union (st_buffer (geom, 0.01)
) AS geom
FROMosmgrid._a_polygonesGROUP BY
level),
united2 AS (
SELECT
level,
st_union (st_buffer (geom, 0.01)
) AS geom
FROMosmgrid._a_polygonesGROUP BY
level
)
SELECT*FROM
united
);
The text was updated successfully, but these errors were encountered:
The output of this SQL is very hard to read. The closing line of st_union should be on the same line and the indentation is all messed up
Input:
Output:
The text was updated successfully, but these errors were encountered: