Skip to content

Commit

Permalink
make schema name dynamic
Browse files Browse the repository at this point in the history
  • Loading branch information
emmyoop committed Jul 26, 2024
1 parent 68dcd8b commit b88eeb4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ reset enable_case_sensitive_identifier;

{% set target_schema=api.Relation.create(
database=target.database,
schema="codegen_integration_tests__data_source_schema"
schema="{{ schema }}__data_source_schema"
) %}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
-- test all args
{% set actual_source_yaml = codegen.generate_source(
database_name=target.database,
schema_name='codegen_integration_tests__data_source_schema',
schema_name='{{ schema }}__data_source_schema',
table_names=['codegen_integration_tests__data_source_table_nested_array'],
generate_columns=True,
include_descriptions=True
Expand Down

0 comments on commit b88eeb4

Please sign in to comment.