2020-08-06 20:58:47 +03:00
|
|
|
sources:
|
|
|
|
items:
|
|
|
|
- handle: '@sakila_sl3'
|
|
|
|
type: sqlite3
|
|
|
|
location: sqlite3://${SQ_ROOT}/drivers/sqlite3/testdata/sakila.db
|
2023-03-22 09:17:34 +03:00
|
|
|
- handle: '@sakila_sl3_whitespace'
|
|
|
|
type: sqlite3
|
|
|
|
location: sqlite3://${SQ_ROOT}/drivers/sqlite3/testdata/sakila-whitespace.db
|
2020-08-06 20:58:47 +03:00
|
|
|
- handle: '@sakila_pg9'
|
|
|
|
type: postgres
|
2023-03-14 04:25:12 +03:00
|
|
|
location: postgres://sakila:p_ssW0rd@${SQ_TEST_SRC__SAKILA_PG9}/sakila
|
2020-08-06 20:58:47 +03:00
|
|
|
- handle: '@sakila_pg10'
|
|
|
|
type: postgres
|
2023-03-14 04:25:12 +03:00
|
|
|
location: postgres://sakila:p_ssW0rd@${SQ_TEST_SRC__SAKILA_PG10}/sakila
|
2020-08-06 20:58:47 +03:00
|
|
|
- handle: '@sakila_pg11'
|
|
|
|
type: postgres
|
2023-03-14 04:25:12 +03:00
|
|
|
location: postgres://sakila:p_ssW0rd@${SQ_TEST_SRC__SAKILA_PG11}/sakila
|
2020-08-06 20:58:47 +03:00
|
|
|
- handle: '@sakila_pg12'
|
|
|
|
type: postgres
|
2023-03-14 04:25:12 +03:00
|
|
|
location: postgres://sakila:p_ssW0rd@${SQ_TEST_SRC__SAKILA_PG12}/sakila
|
2020-08-06 20:58:47 +03:00
|
|
|
- handle: '@sakila_my56'
|
|
|
|
type: mysql
|
|
|
|
location: mysql://sakila:p_ssW0rd@${SQ_TEST_SRC__SAKILA_MY56}/sakila
|
|
|
|
- handle: '@sakila_my57'
|
|
|
|
type: mysql
|
|
|
|
location: mysql://sakila:p_ssW0rd@${SQ_TEST_SRC__SAKILA_MY57}/sakila
|
|
|
|
- handle: '@sakila_my8'
|
|
|
|
type: mysql
|
|
|
|
location: mysql://sakila:p_ssW0rd@${SQ_TEST_SRC__SAKILA_MY8}/sakila
|
|
|
|
- handle: '@sakila_ms17'
|
|
|
|
type: sqlserver
|
|
|
|
location: sqlserver://sakila:p_ssW0rd@${SQ_TEST_SRC__SAKILA_MS17}?database=sakila
|
|
|
|
- handle: '@sakila_xlsx'
|
|
|
|
type: xlsx
|
2020-08-07 22:51:30 +03:00
|
|
|
location: '${SQ_ROOT}/drivers/xlsx/testdata/sakila.xlsx'
|
2020-08-06 20:58:47 +03:00
|
|
|
options:
|
|
|
|
header:
|
2020-08-07 22:51:30 +03:00
|
|
|
- 'true'
|
2020-08-06 20:58:47 +03:00
|
|
|
- handle: '@sakila_xlsx_subset'
|
|
|
|
type: xlsx
|
2020-08-07 22:51:30 +03:00
|
|
|
location: '${SQ_ROOT}/drivers/xlsx/testdata/sakila_subset.xlsx'
|
2020-08-06 20:58:47 +03:00
|
|
|
options:
|
|
|
|
header:
|
2020-08-07 22:51:30 +03:00
|
|
|
- 'true'
|
2020-08-06 20:58:47 +03:00
|
|
|
- handle: '@sakila_xlsx_noheader'
|
|
|
|
type: xlsx
|
2020-08-07 22:51:30 +03:00
|
|
|
location: '${SQ_ROOT}/drivers/xlsx/testdata/sakila_noheader.xlsx'
|
2020-08-06 20:58:47 +03:00
|
|
|
options:
|
|
|
|
header:
|
2020-08-07 22:51:30 +03:00
|
|
|
- 'false'
|
2020-08-06 20:58:47 +03:00
|
|
|
- handle: '@sakila_csv_actor'
|
|
|
|
type: csv
|
2020-08-07 22:51:30 +03:00
|
|
|
location: '${SQ_ROOT}/drivers/csv/testdata/sakila-csv/actor.csv'
|
2020-08-06 20:58:47 +03:00
|
|
|
options:
|
|
|
|
header:
|
2020-08-07 22:51:30 +03:00
|
|
|
- 'true'
|
2020-08-06 20:58:47 +03:00
|
|
|
- handle: '@sakila_csv_actor_http'
|
|
|
|
type: csv
|
2020-08-07 22:51:30 +03:00
|
|
|
location: 'https://sq.io/testdata/actor.csv'
|
2020-08-06 20:58:47 +03:00
|
|
|
options:
|
|
|
|
header:
|
2020-08-07 22:51:30 +03:00
|
|
|
- 'true'
|
2020-08-06 20:58:47 +03:00
|
|
|
- handle: '@sakila_csv_actor_noheader'
|
|
|
|
type: csv
|
2020-08-07 22:51:30 +03:00
|
|
|
location: '${SQ_ROOT}/drivers/csv/testdata/sakila-csv-noheader/actor.csv'
|
2020-08-06 20:58:47 +03:00
|
|
|
options:
|
|
|
|
header:
|
2020-08-07 22:51:30 +03:00
|
|
|
- 'false'
|
2020-08-06 20:58:47 +03:00
|
|
|
- handle: '@sakila_tsv_actor'
|
|
|
|
type: tsv
|
2020-08-07 22:51:30 +03:00
|
|
|
location: '${SQ_ROOT}/drivers/csv/testdata/sakila-tsv/actor.tsv'
|
2020-08-06 20:58:47 +03:00
|
|
|
options:
|
|
|
|
header:
|
2020-08-07 22:51:30 +03:00
|
|
|
- 'true'
|
2020-08-06 20:58:47 +03:00
|
|
|
- handle: '@sakila_tsv_actor_noheader'
|
|
|
|
type: tsv
|
2020-08-07 22:51:30 +03:00
|
|
|
location: '${SQ_ROOT}/drivers/csv/testdata/sakila-tsv-noheader/actor.tsv'
|
2020-08-06 20:58:47 +03:00
|
|
|
options:
|
|
|
|
header:
|
2020-08-07 22:51:30 +03:00
|
|
|
- 'false'
|
2020-08-06 20:58:47 +03:00
|
|
|
|
|
|
|
- handle: '@csv_person'
|
|
|
|
type: csv
|
2020-08-07 22:51:30 +03:00
|
|
|
location: '${SQ_ROOT}/drivers/csv/testdata/person.csv'
|
2020-08-06 20:58:47 +03:00
|
|
|
- handle: '@csv_person_big'
|
|
|
|
options:
|
|
|
|
header:
|
2020-08-07 22:51:30 +03:00
|
|
|
- 'true'
|
2020-08-06 20:58:47 +03:00
|
|
|
type: csv
|
2020-08-07 22:51:30 +03:00
|
|
|
location: '${SQ_ROOT}/drivers/csv/testdata/person_big.csv'
|
2020-08-06 20:58:47 +03:00
|
|
|
- handle: '@csv_person_noheader'
|
|
|
|
type: csv
|
2020-08-07 22:51:30 +03:00
|
|
|
location: '${SQ_ROOT}/drivers/csv/testdata/person_noheader.csv'
|
2020-08-06 20:58:47 +03:00
|
|
|
- handle: '@tsv_person'
|
|
|
|
type: tsv
|
2020-08-07 22:51:30 +03:00
|
|
|
location: '${SQ_ROOT}/sq/drivers/csv/testdata/person.tsv'
|
2020-08-06 20:58:47 +03:00
|
|
|
- handle: '@tsv_person_noheader'
|
|
|
|
type: tsv
|
2020-08-07 22:51:30 +03:00
|
|
|
location: '${SQ_ROOT}/drivers/csv/testdata/person_noheader.tsv'
|
2020-08-06 20:58:47 +03:00
|
|
|
- handle: '@tsv_person_noheader_cols'
|
|
|
|
type: tsv
|
2020-08-07 22:51:30 +03:00
|
|
|
location: '${SQ_ROOT}/drivers/csv/testdata/person_noheader.tsv'
|
2020-08-06 20:58:47 +03:00
|
|
|
options:
|
|
|
|
cols:
|
|
|
|
- uid,username,email
|
|
|
|
- handle: '@xl_header'
|
|
|
|
type: xlsx
|
2020-08-07 22:51:30 +03:00
|
|
|
location: '${SQ_ROOT}/drivers/xlsx/testdata/test_header.xlsx'
|
2020-08-06 20:58:47 +03:00
|
|
|
- handle: '@xl_noheader'
|
|
|
|
type: xlsx
|
2020-08-07 22:51:30 +03:00
|
|
|
location: '${SQ_ROOT}/drivers/xlsx/testdata/test_noheader.xlsx'
|
2020-08-06 20:58:47 +03:00
|
|
|
- handle: '@ud_ppl'
|
|
|
|
type: ppl
|
2020-08-07 22:51:30 +03:00
|
|
|
location: '${SQ_ROOT}/drivers/userdriver/xmlud/testdata/people.xml'
|
2020-08-06 20:58:47 +03:00
|
|
|
- handle: '@ud_rss_nytimes_local'
|
|
|
|
type: rss
|
2020-08-07 22:51:30 +03:00
|
|
|
location: '${SQ_ROOT}/drivers/userdriver/xmlud/testdata/nytimes_local.rss.xml'
|
2020-08-06 20:58:47 +03:00
|
|
|
- handle: '@miscdb'
|
|
|
|
type: sqlite3
|
2020-08-07 22:51:30 +03:00
|
|
|
location: 'sqlite3://${SQ_ROOT}/drivers/sqlite3/testdata/misc.db'
|
2020-10-20 18:05:43 +03:00
|
|
|
- handle: '@emptydb'
|
|
|
|
type: sqlite3
|
|
|
|
location: 'sqlite3://${SQ_ROOT}/drivers/sqlite3/testdata/empty.db'
|
2020-08-06 20:58:47 +03:00
|
|
|
|