dbt-maxcompute v1.9.0-a1
New Features
Raw Materialization Enhancements
-
Added new configuration options:
schema
: Specifies the default schema for the current querysql_hints
: Allows users to specify SQL hints for the current query
Note: Other materialization methods only support schema specification in the dbt.yaml file
Example Usage:
{{ config(
materialized="raw",
schema="new_schema",
sql_hints={"odps.sql.submit.mode": "script"}
) }}
create schema new_schema;
create table table_in_new_schema(c1 bigint);
Bug Fixes
- Fixed logical issues in the bq_insert_overwrite incremental materialization strategy and improved execution efficiency