Compare commits

...

2 Commits

Author SHA1 Message Date
7fcbfe07f4 release 0.0.3\nfull_sorting_merge for dw.fact_stock_minute
All checks were successful
MJN/finance-dbt/pipeline/head This commit looks good
2024-05-06 23:54:05 +08:00
cead646bd4 fix: nullable not_null_dw.fact_stock_minute_adj_factor
All checks were successful
MJN/finance-dbt/pipeline/head This commit looks good
2024-04-15 14:10:40 +08:00
2 changed files with 283 additions and 281 deletions

View File

@ -5,7 +5,11 @@
order_by='ts_code, time_id',
unique_key=['ts_code', 'time_id'],
partition_by=['cast(floor(time_id / 1000000) As Int32)'],
query_settings={"join_algorithm": "'partial_merge'"}
query_settings={
"join_algorithm": "'full_sorting_merge'",
"max_rows_in_set_to_optimize_join": "0",
"max_bytes_before_external_sort": "'1000M'"
}
)
}}

View File

@ -284,8 +284,6 @@ models:
- name: adj_factor
description: "复权因子"
data_type: "Decimal(16,6)"
tests:
- not_null
- name: dt
description: "时间"
data_type: "DateTime"