-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Bug] Fix scenarios where
--empty
flag pushes limit 0
into metada…
…ta queries (#1100) * fix get_columns_in_relation * add render to relation in other metadata queries * add tests for all render instances
- Loading branch information
1 parent
220f087
commit 13970da
Showing
4 changed files
with
129 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
kind: Fixes | ||
body: Fix scenario where using the `--empty` flag causes metadata queries to contain | ||
limit clauses | ||
time: 2024-06-28T19:01:40.558234-04:00 | ||
custom: | ||
Author: mikealfare | ||
Issue: "1033" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
SEED = """ | ||
my_id,my_value | ||
1,a | ||
2,b | ||
3,c | ||
""".strip() | ||
|
||
|
||
SCHEMA = """ | ||
version: 2 | ||
seeds: | ||
- name: my_seed | ||
description: "This is my_seed" | ||
columns: | ||
- name: id | ||
description: "This is my_seed.my_id" | ||
""" | ||
|
||
CONTROL = """ | ||
select * from {{ ref("my_seed") }} | ||
""" | ||
|
||
|
||
GET_COLUMNS_IN_RELATION = """ | ||
{{ config(materialized="table") }} | ||
{% set columns = adapter.get_columns_in_relation(ref("my_seed")) %} | ||
select * from {{ ref("my_seed") }} | ||
""" | ||
|
||
|
||
ALTER_COLUMN_TYPE = """ | ||
{{ config(materialized="table") }} | ||
{{ alter_column_type(ref("my_seed"), "MY_VALUE", "varchar") }} | ||
select * from {{ ref("my_seed") }} | ||
""" | ||
|
||
|
||
ALTER_RELATION_COMMENT = """ | ||
{{ config( | ||
materialized="table", | ||
persist_docs={"relations": True}, | ||
) }} | ||
select * from {{ ref("my_seed") }} | ||
""" | ||
|
||
|
||
ALTER_COLUMN_COMMENT = """ | ||
{{ config( | ||
materialized="table", | ||
persist_docs={"columns": True}, | ||
) }} | ||
select * from {{ ref("my_seed") }} | ||
""" | ||
|
||
|
||
ALTER_RELATION_ADD_REMOVE_COLUMNS = """ | ||
{{ config(materialized="table") }} | ||
{% set my_seed = adapter.Relation.create(this.database, this.schema, "my_seed", "table") %} | ||
{% set my_column = api.Column("my_column", "varchar") %} | ||
{% do alter_relation_add_remove_columns(my_seed, [my_column], none) %} | ||
{% do alter_relation_add_remove_columns(my_seed, none, [my_column]) %} | ||
select * from {{ ref("my_seed") }} | ||
""" | ||
|
||
|
||
TRUNCATE_RELATION = """ | ||
{{ config(materialized="table") }} | ||
{% set my_seed = adapter.Relation.create(this.database, this.schema, "my_seed", "table") %} | ||
{{ truncate_relation(my_seed) }} | ||
select * from {{ ref("my_seed") }} | ||
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters