This commit is contained in:
drethereum 2024-08-05 13:46:05 -06:00
parent e320f20433
commit 57e006cd0a
2 changed files with 4 additions and 4 deletions

View File

@ -105,5 +105,5 @@ dbt run --vars '{"UPDATE_SNOWFLAKE_TAGS":False}' -s models/core/core__fact_block
```
select *
from table(berchain.information_schema.tag_references('berchain.core.fact_blocks', 'table'));
from table(berachain.information_schema.tag_references('berachain.core.fact_blocks', 'table'));
```

View File

@ -1,8 +1,8 @@
{% macro run_sp_create_prod_clone() %}
{% set clone_query %}
call berchain._internal.create_prod_clone(
'berchain',
'berchain_dev',
call berachain._internal.create_prod_clone(
'berachain',
'berachain_dev',
'internal_dev'
);
{% endset %}