We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93d3619 commit 43e44a7Copy full SHA for 43e44a7
tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_euclidean_distance/out.sql
@@ -1,13 +1,13 @@
1
WITH `bfcte_0` AS (
2
SELECT
3
- `int_list_col` AS `bfcol_0`,
4
- `numeric_list_col` AS `bfcol_1`
+ `int_list_col`,
+ `numeric_list_col`
5
FROM `bigframes-dev`.`sqlglot_test`.`repeated_types`
6
), `bfcte_1` AS (
7
8
*,
9
- ML.DISTANCE(`bfcol_0`, `bfcol_0`, 'EUCLIDEAN') AS `bfcol_2`,
10
- ML.DISTANCE(`bfcol_1`, `bfcol_1`, 'EUCLIDEAN') AS `bfcol_3`
+ ML.DISTANCE(`int_list_col`, `int_list_col`, 'EUCLIDEAN') AS `bfcol_2`,
+ ML.DISTANCE(`numeric_list_col`, `numeric_list_col`, 'EUCLIDEAN') AS `bfcol_3`
11
FROM `bfcte_0`
12
)
13
0 commit comments