Skip to content

Commit

Permalink
fix: access not staging
Browse files Browse the repository at this point in the history
  • Loading branch information
tnightengale committed May 28, 2024
1 parent 44c8a74 commit 9c1808e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .changes/5.2.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

### Features

- Add root_query_id, parent_query_id to stg_query_history ([#156](https://github.com/get-select/dbt-snowflake-monitoring/pull/156))
- Add root_query_id, parent_query_id to stg_access_history ([#156](https://github.com/get-select/dbt-snowflake-monitoring/pull/156))

### Contributors
- [@tnightengale](https://github.com/tnightengale) (Features)
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ and is generated by [Changie](https://github.com/miniscruff/changie).

### Features

- Add root_query_id, parent_query_id to stg_query_history ([#156](https://github.com/get-select/dbt-snowflake-monitoring/pull/156))
- Add root_query_id, parent_query_id to stg_access_history ([#156](https://github.com/get-select/dbt-snowflake-monitoring/pull/156))

### Contributors
- [@tnightengale](https://github.com/tnightengale) (Features)
Expand Down
2 changes: 2 additions & 0 deletions models/staging/stg_access_history.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

select
query_id,
parent_query_id,
root_query_id,
query_start_time,
user_name,
direct_objects_accessed,
Expand Down
2 changes: 0 additions & 2 deletions models/staging/stg_query_history.sql
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@

select
query_id,
parent_query_id,
root_query_id,
query_text,
database_id,
database_name,
Expand Down

0 comments on commit 9c1808e

Please sign in to comment.