Skip to content

Commit

Permalink
chore(bigquery): regenerate snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Jul 29, 2024
1 parent a5f8af3 commit 7e300d2
Show file tree
Hide file tree
Showing 11 changed files with 66 additions and 22 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
SELECT
st_difference(`t0`.`geog0`, `t0`.`geog1`) AS `tmp`
FROM `t` AS `t0`
st_asbinary(`tmp`) AS `tmp`
FROM (
SELECT
st_difference(`t0`.`geog0`, `t0`.`geog1`) AS `tmp`
FROM `t` AS `t0`
)
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
SELECT
st_intersection(`t0`.`geog0`, `t0`.`geog1`) AS `tmp`
FROM `t` AS `t0`
st_asbinary(`tmp`) AS `tmp`
FROM (
SELECT
st_intersection(`t0`.`geog0`, `t0`.`geog1`) AS `tmp`
FROM `t` AS `t0`
)
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
SELECT
st_union(`t0`.`geog0`, `t0`.`geog1`) AS `tmp`
FROM `t` AS `t0`
st_asbinary(`tmp`) AS `tmp`
FROM (
SELECT
st_union(`t0`.`geog0`, `t0`.`geog1`) AS `tmp`
FROM `t` AS `t0`
)
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
SELECT
st_geogpoint(`t0`.`lon`, `t0`.`lat`) AS `tmp`
FROM `t` AS `t0`
st_asbinary(`tmp`) AS `tmp`
FROM (
SELECT
st_geogpoint(`t0`.`lon`, `t0`.`lat`) AS `tmp`
FROM `t` AS `t0`
)
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
SELECT
st_simplify(`t0`.`geog`, 5.2) AS `tmp`
FROM `t` AS `t0`
st_asbinary(`tmp`) AS `tmp`
FROM (
SELECT
st_simplify(`t0`.`geog`, 5.2) AS `tmp`
FROM `t` AS `t0`
)
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
SELECT
st_buffer(`t0`.`geog`, 5.2) AS `tmp`
FROM `t` AS `t0`
st_asbinary(`tmp`) AS `tmp`
FROM (
SELECT
st_buffer(`t0`.`geog`, 5.2) AS `tmp`
FROM `t` AS `t0`
)
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
SELECT
st_centroid(`t0`.`geog`) AS `tmp`
FROM `t` AS `t0`
st_asbinary(`tmp`) AS `tmp`
FROM (
SELECT
st_centroid(`t0`.`geog`) AS `tmp`
FROM `t` AS `t0`
)
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
SELECT
st_endpoint(`t0`.`geog`) AS `tmp`
FROM `t` AS `t0`
st_asbinary(`tmp`) AS `tmp`
FROM (
SELECT
st_endpoint(`t0`.`geog`) AS `tmp`
FROM `t` AS `t0`
)
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
SELECT
st_pointn(`t0`.`geog`, 3) AS `tmp`
FROM `t` AS `t0`
st_asbinary(`tmp`) AS `tmp`
FROM (
SELECT
st_pointn(`t0`.`geog`, 3) AS `tmp`
FROM `t` AS `t0`
)
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
SELECT
st_startpoint(`t0`.`geog`) AS `tmp`
FROM `t` AS `t0`
st_asbinary(`tmp`) AS `tmp`
FROM (
SELECT
st_startpoint(`t0`.`geog`) AS `tmp`
FROM `t` AS `t0`
)
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
SELECT
st_union_agg(`t0`.`geog`) AS `tmp`
FROM `t` AS `t0`
st_asbinary(`tmp`) AS `tmp`
FROM (
SELECT
st_union_agg(`t0`.`geog`) AS `tmp`
FROM `t` AS `t0`
)

0 comments on commit 7e300d2

Please sign in to comment.