Skip to content

Commit 43e44a7

Browse files
committed
update sql
1 parent 93d3619 commit 43e44a7

File tree

1 file changed

+4
-4
lines changed
  • tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_euclidean_distance

1 file changed

+4
-4
lines changed

tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_euclidean_distance/out.sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
WITH `bfcte_0` AS (
22
SELECT
3-
`int_list_col` AS `bfcol_0`,
4-
`numeric_list_col` AS `bfcol_1`
3+
`int_list_col`,
4+
`numeric_list_col`
55
FROM `bigframes-dev`.`sqlglot_test`.`repeated_types`
66
), `bfcte_1` AS (
77
SELECT
88
*,
9-
ML.DISTANCE(`bfcol_0`, `bfcol_0`, 'EUCLIDEAN') AS `bfcol_2`,
10-
ML.DISTANCE(`bfcol_1`, `bfcol_1`, 'EUCLIDEAN') AS `bfcol_3`
9+
ML.DISTANCE(`int_list_col`, `int_list_col`, 'EUCLIDEAN') AS `bfcol_2`,
10+
ML.DISTANCE(`numeric_list_col`, `numeric_list_col`, 'EUCLIDEAN') AS `bfcol_3`
1111
FROM `bfcte_0`
1212
)
1313
SELECT

0 commit comments

Comments
 (0)