Skip to content

Commit d90990d

Browse files
authored
Merge pull request #43 from oracle/feature/dbt-core1.2
Preparing for release 1.2
2 parents ddc7930 + 809385b commit d90990d

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

dbt/include/oracle/macros/catalog.sql

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -105,16 +105,16 @@
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 -%}

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ keywords = Oracle dbt
88
author = Oracle
99
license = Apache Software License 2.0
1010
classifiers =
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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
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',

0 commit comments

Comments
 (0)