Skip to content

Commit 0a5ec79

Browse files
committed
fixed catalog.sql
1 parent f7569d4 commit 0a5ec79

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

dbt/include/oracle/macros/catalog.sql

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@
2929
from sys.all_tables
3030
where upper(table_name) not in (
3131
select upper(mview_name)
32-
from sys.all_mviews
33-
where upper(owner) = upper('{{ schema_relation.schema }}')
34-
)
32+
from sys.all_mviews)
3533
union all
3634
select SYS_CONTEXT('userenv', 'DB_NAME'),
3735
owner,

0 commit comments

Comments
 (0)