File tree Expand file tree Collapse file tree 3 files changed +10
-10
lines changed
dbt/include/oracle/macros Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 105105 all_col_comments.comments as "column_comment",
106106 tables.table_schema as "table_owner"
107107 from tables
108- inner join columns on columns.table_catalog = tables.table_catalog
109- and columns.table_schema = tables.table_schema
110- and columns.table_name = tables.table_name
108+ inner join columns on upper( columns.table_catalog) = upper( tables.table_catalog)
109+ and upper( columns.table_schema) = upper( tables.table_schema)
110+ and upper( columns.table_name) = upper( tables.table_name)
111111 left join all_tab_comments
112- on all_tab_comments.owner = tables.table_schema
113- and all_tab_comments.table_name = tables.table_name
112+ on upper( all_tab_comments.owner) = upper( tables.table_schema)
113+ and upper( all_tab_comments.table_name) = upper( tables.table_name)
114114 left join all_col_comments
115- on all_col_comments.owner = columns.table_schema
116- and all_col_comments.table_name = columns.table_name
117- and all_col_comments.column_name = columns.column_name
115+ on upper( all_col_comments.owner) = upper( columns.table_schema)
116+ and upper( all_col_comments.table_name) = upper( columns.table_name)
117+ and upper( all_col_comments.column_name) = upper( columns.column_name)
118118 where (
119119 {%- for schema in schemas -%}
120120 upper(tables.table_schema) = upper(' {{ schema }}' ){%- if not loop.last %} or {% endif -%}
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ keywords = Oracle dbt
88author = Oracle
99license = Apache Software License 2.0
1010classifiers =
11- Development Status :: 2 - Pre-Alpha
11+ Development Status :: 5 - Production/Stable
1212 Intended Audience :: Developers
1313 License :: OSI Approved :: Apache Software License
1414 Programming Language :: Python :: 3
Original file line number Diff line number Diff line change 5757 author = "Oracle" ,
5858 python_requires = '>=3.7.2' ,
5959 classifiers = [
60- 'Development Status :: 4 - Beta ' ,
60+ 'Development Status :: 5 - Production/Stable ' ,
6161 'Intended Audience :: Developers' ,
6262 'License :: OSI Approved :: Apache Software License' ,
6363 'Natural Language :: English' ,
You can’t perform that action at this time.
0 commit comments