1
0
mirror of synced 2026-01-04 18:04:31 -05:00
Files
airbyte/airbyte-integrations/connectors/source-redshift/integration_tests/basic_dataset.sql
Andrii Leonets c2e4c3e677 Enable full SAT for the Redshift source (#19915)
* enable SAT for redshift

* add bigger timeouts + specify catalogs (default works wrong)

* new line

* readme

* new format

Co-authored-by: Augustin <augustin@airbyte.io>
2022-12-08 20:24:43 +02:00

21 lines
1.9 KiB
SQL

CREATE TABLE IF NOT EXISTS sat_test_dataset.sat_basic_dataset (
id INTEGER,
test_column_1 SMALLINT,
test_column_2 INTEGER,
test_column_3 BIGINT,
test_column_4 DECIMAL,
test_column_5 REAL,
test_column_6 DOUBLE PRECISION,
test_column_7 BOOLEAN,
test_column_8 CHAR,
test_column_9 VARCHAR,
test_column_10 DATE,
test_column_11 TIMESTAMP,
test_column_12 TIMESTAMPTZ,
test_column_13 TIME,
test_column_14 TIMETZ,
test_column_15 VARBYTE);
insert into sat_test_dataset.sat_basic_dataset values (1, 1, 126, 1024, 555.666, 777.888, 999.000, true, 'q', 'some text', '2008-12-31', 'Jun 1,2008 09:59:59', 'Jun 1,2008 09:59:59 EST', '04:05:06', '04:05:06 EST', 'xxx'::varbyte);
insert into sat_test_dataset.sat_basic_dataset values (2, -5, -126, -1024, -555.666, -777.888, -999.000, false, 'g', 'new text', '1987-10-10', 'Jun 21,2005 12:00:59', 'Oct 15,2003 09:59:59 EST', '04:05:00', '04:05:00 EST', 'yyy'::varbyte);