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 105
105
all_col_comments.comments as "column_comment",
106
106
tables.table_schema as "table_owner"
107
107
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)
111
111
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)
114
114
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)
118
118
where (
119
119
{%- for schema in schemas -%}
120
120
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
8
8
author = Oracle
9
9
license = Apache Software License 2.0
10
10
classifiers =
11
- Development Status :: 2 - Pre-Alpha
11
+ Development Status :: 5 - Production/Stable
12
12
Intended Audience :: Developers
13
13
License :: OSI Approved :: Apache Software License
14
14
Programming Language :: Python :: 3
Original file line number Diff line number Diff line change 57
57
author = "Oracle" ,
58
58
python_requires = '>=3.7.2' ,
59
59
classifiers = [
60
- 'Development Status :: 4 - Beta ' ,
60
+ 'Development Status :: 5 - Production/Stable ' ,
61
61
'Intended Audience :: Developers' ,
62
62
'License :: OSI Approved :: Apache Software License' ,
63
63
'Natural Language :: English' ,
You can’t perform that action at this time.
0 commit comments