Skip to content

Commit 7cd6f7c

Browse files
authored
Merge pull request #141 from oracle/dev/v1.7.5
v1.7.5
2 parents c6f7e3a + f2c3167 commit 7cd6f7c

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

Diff for: Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Configuration variables
2-
VERSION=1.7.4
2+
VERSION=1.7.5
33
PROJ_DIR?=$(shell pwd)
44
VENV_DIR?=${PROJ_DIR}/.bldenv
55
BUILD_DIR=${PROJ_DIR}/build

Diff for: dbt/adapters/oracle/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
See the License for the specific language governing permissions and
1515
limitations under the License.
1616
"""
17-
version = "1.7.11"
17+
version = "1.7.14"

Diff for: dbt/include/oracle/macros/adapters.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@
151151
create {% if temporary -%}
152152
global temporary
153153
{%- endif %} table {{ relation.include(schema=(not temporary)) }}
154-
{%- if contract_config.enforced -%}
154+
{%- if contract_config.enforced and not temporary -%}
155155
{{ get_assert_columns_equivalent(sql) }}
156156
{{ get_table_columns_and_constraints() }}
157157
{%- set sql = get_select_subquery(sql) %}

Diff for: requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
dbt-core~=1.7,<1.8
2-
oracledb==2.1.2
2+
oracledb==2.2.0

Diff for: setup.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = dbt-oracle
3-
version = 1.7.4
3+
version = 1.7.5
44
description = dbt (data build tool) adapter for Oracle Autonomous Database
55
long_description = file: README.md
66
long_description_content_type = text/markdown
@@ -34,7 +34,7 @@ packages = find_namespace:
3434
include_package_data = True
3535
install_requires =
3636
dbt-core~=1.7,<1.8
37-
oracledb==2.1.2
37+
oracledb==2.2.0
3838
test_suite=tests
3939
test_requires =
4040
dbt-tests-adapter~=1.7,<1.8

Diff for: setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
requirements = [
4343
"dbt-core~=1.7,<1.8",
44-
"oracledb==2.1.2"
44+
"oracledb==2.2.0"
4545
]
4646

4747
test_requirements = [
@@ -59,7 +59,7 @@
5959

6060
url = 'https://github.com/oracle/dbt-oracle'
6161

62-
VERSION = '1.7.4'
62+
VERSION = '1.7.5'
6363
setup(
6464
author="Oracle",
6565
python_requires='>=3.8',

0 commit comments

Comments
 (0)