Skip to content

Commit 8e1fe47

Browse files
committed
fix sql
1 parent 16cd5e2 commit 8e1fe47

File tree

1 file changed

+3
-3
lines changed
  • tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_geogpoint

1 file changed

+3
-3
lines changed

tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_geogpoint/out.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
WITH `bfcte_0` AS (
22
SELECT
3-
`rowindex` AS `bfcol_0`,
4-
`rowindex_2` AS `bfcol_1`
3+
`rowindex`,
4+
`rowindex_2`
55
FROM `bigframes-dev`.`sqlglot_test`.`scalar_types`
66
), `bfcte_1` AS (
77
SELECT
88
*,
9-
ST_GEOGPOINT(`bfcol_0`, `bfcol_1`) AS `bfcol_2`
9+
ST_GEOGPOINT(`rowindex`, `rowindex_2`) AS `bfcol_2`
1010
FROM `bfcte_0`
1111
)
1212
SELECT

0 commit comments

Comments
 (0)