Skip to content

Commit 2998c52

Browse files
committed
new file: .vscode/settings.json
modified: macros/init_s3_sources.sql
1 parent 17e1bda commit 2998c52

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.vscode/settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"githubPullRequests.ignoredPullRequestBranches": [
3+
"main"
4+
]
5+
}

macros/init_s3_sources.sql

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
C_MKTSEGMENT LowCardinality(String),
1414
C_COMMENT String
1515
)
16-
ENGINE = S3(\'https://storage.yandexcloud.net/otus-dwh/tpch-dbgen-1g/customer.tbl\', \'CustomSeparated\')
16+
ENGINE = S3(\'https://storage.yandexcloud.net/ch-data-course/customer.tbl\', \'CustomSeparated\')
1717
SETTINGS
1818
format_custom_field_delimiter=\'|\'
1919
,format_custom_escaping_rule=\'CSV\'
@@ -32,7 +32,7 @@
3232
O_SHIPPRIORITY UInt8,
3333
O_COMMENT String
3434
)
35-
ENGINE = S3(\'https://storage.yandexcloud.net/otus-dwh/tpch-dbgen-1g/orders.tbl\', \'CustomSeparated\')
35+
ENGINE = S3(\'https://storage.yandexcloud.net/ch-data-course/orders.tbl\', \'CustomSeparated\')
3636
SETTINGS
3737
format_custom_field_delimiter=\'|\'
3838
,format_custom_escaping_rule=\'CSV\'
@@ -58,7 +58,7 @@
5858
L_SHIPMODE LowCardinality(String),
5959
L_COMMENT String
6060
)
61-
ENGINE = S3(\'https://storage.yandexcloud.net/otus-dwh/tpch-dbgen-1g/lineitem.tbl\', \'CustomSeparated\')
61+
ENGINE = S3(\'https://storage.yandexcloud.net/ch-data-course/lineitem.tbl\', \'CustomSeparated\')
6262
SETTINGS
6363
format_custom_field_delimiter=\'|\'
6464
,format_custom_escaping_rule=\'CSV\'
@@ -77,7 +77,7 @@
7777
P_RETAILPRICE Decimal(15,2),
7878
P_COMMENT String
7979
)
80-
ENGINE = S3(\'https://storage.yandexcloud.net/otus-dwh/tpch-dbgen-1g/part.tbl\', \'CustomSeparated\')
80+
ENGINE = S3(\'https://storage.yandexcloud.net/ch-data-course/part.tbl\', \'CustomSeparated\')
8181
SETTINGS
8282
format_custom_field_delimiter=\'|\'
8383
,format_custom_escaping_rule=\'CSV\'
@@ -94,7 +94,7 @@
9494
S_ACCTBAL Decimal(15,2),
9595
S_COMMENT String
9696
)
97-
ENGINE = S3(\'https://storage.yandexcloud.net/otus-dwh/tpch-dbgen-1g/supplier.tbl\', \'CustomSeparated\')
97+
ENGINE = S3(\'https://storage.yandexcloud.net/ch-data-course/supplier.tbl\', \'CustomSeparated\')
9898
SETTINGS
9999
format_custom_field_delimiter=\'|\'
100100
,format_custom_escaping_rule=\'CSV\'

0 commit comments

Comments
 (0)