graphql-engine/server/tests-py/queries/graphql_query/bigquery/schema_setup_bigquery.yaml
Kirill Zaborsky a2afe4116b BigQuery remote joins
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/2874
Co-authored-by: Abby Sassel <3883855+sassela@users.noreply.github.com>
GitOrigin-RevId: 24b0304716795a28038629775238996c28b312a3
2021-11-24 16:22:55 +00:00

155 lines
4.5 KiB
YAML

type: bulk
args:
- type: bigquery_run_sql
args:
source: bigquery
sql: |
DROP SCHEMA IF EXISTS `regency-polecat-beehive.hasura_test` CASCADE;
CREATE SCHEMA `regency-polecat-beehive.hasura_test`;
CREATE TABLE `hasura_test.all_types` (
`string` STRING,
`bytes` BYTES,
`integer` INT64,
`float` FLOAT64,
`numeric` NUMERIC,
`bignumeric` BIGNUMERIC,
`boolean` BOOL,
`timestamp` TIMESTAMP,
`date` DATE,
`time` TIME,
`datetime` DATETIME,
`geography` GEOGRAPHY
);
CREATE TABLE `hasura_test.author` (
`id` INT64,
`name` STRING,
`created_at` TIMESTAMP
);
CREATE TABLE `hasura_test.article` (
`id` INT64,
`title` STRING,
`content` STRING,
`author_id` INT64,
`is_published` BOOL,
`published_on` DATETIME,
`created_at` TIMESTAMP
);
INSERT INTO `hasura_test.all_types` VALUES (
"STRING",
CODE_POINTS_TO_BYTES([0,1,2,3,4,5]),
1,
1,
1,
1,
true,
PARSE_TIMESTAMP("%c", "Thu Dec 25 07:30:00 2008"),
PARSE_DATE("%F", "2000-12-30"),
PARSE_TIME("%T", "07:30:00"),
PARSE_DATETIME('%Y-%m-%d %H:%M:%S', '1998-10-18 13:45:55'),
ST_GEOGPOINT(1, 1)
);
INSERT INTO `hasura_test.author` VALUES (
1, "Author 1", PARSE_TIMESTAMP("%c", "Thu Dec 25 07:30:00 2008")
);
INSERT INTO `hasura_test.author` VALUES (
2, "Author 2", PARSE_TIMESTAMP("%c", "Thu Dec 25 07:30:00 2008")
);
INSERT INTO `hasura_test.article` VALUES (
1, "Title 1", "Content 1", 1, FALSE, NULL, PARSE_TIMESTAMP("%c", "Thu Dec 25 07:30:01 2008")
);
INSERT INTO `hasura_test.article` VALUES (
2, "Title 2", "Content 2", 1, TRUE, PARSE_DATETIME('%Y-%m-%d %H:%M:%S', '1998-10-18 13:45:55'), PARSE_TIMESTAMP("%c", "Thu Dec 25 07:30:02 2008")
);
INSERT INTO `hasura_test.article` VALUES (
3, "Title 3", "Content 3", 2, FALSE, NULL, PARSE_TIMESTAMP("%c", "Thu Dec 25 07:30:03 2008")
);
-- a copy for remote joins as we can't have the same table tracked in two sources
CREATE TABLE `hasura_test.article2`
AS SELECT * FROM `hasura_test.article`;
-- These are helpful for join/aggregate testing.
CREATE TABLE hasura_test.Artist (
artist_self_id int64,
name string);
CREATE TABLE hasura_test.Album (
album_self_id int64,
artist_other_id int64,
title string);
INSERT INTO hasura_test.Artist
VALUES (1002,
"tool" ),
(1000,
"alice in chains" ),
(1001,
"nirvana" );
INSERT INTO hasura_test.Album
(album_self_id,
title,
artist_other_id)
VALUES ( 2002,
"dirt",
1000 ),
( 2005,
"facelift",
1000 ),
( 2001,
"in utero",
1001 ),
( 2000,
"nevermind",
1001 ),
( 2003,
"lateralus",
1002 ),
( 2004,
"fear innoculum",
1002 );
-- These are for testing global limits.
CREATE TABLE hasura_test.LimitedArtist (
artist_self_id int64,
name string);
CREATE TABLE hasura_test.LimitedAlbum (
album_self_id int64,
artist_other_id int64,
title string);
INSERT INTO hasura_test.LimitedArtist
VALUES (1002,
"tool" ),
(1000,
"alice in chains" ),
(1001,
"nirvana" );
INSERT INTO hasura_test.LimitedAlbum
(album_self_id,
title,
artist_other_id)
VALUES ( 2002,
"dirt",
1000 ),
( 2005,
"facelift",
1000 ),
( 2001,
"in utero",
1001 ),
( 2000,
"nevermind",
1001 ),
( 2003,
"lateralus",
1002 ),
( 2004,
"fear innoculum",
1002 );
SELECT * from hasura_test.Album;