Skip to content

Commit

Permalink
v1.7.5
Browse files Browse the repository at this point in the history
- ORA-14452: attempt to create, alter or drop an index on temporary table already in use
- GHSA-2m57-hf25-phgg
  • Loading branch information
aosingh committed Apr 25, 2024
1 parent c6f7e3a commit 3f40473
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Configuration variables
VERSION=1.7.4
VERSION=1.7.5
PROJ_DIR?=$(shell pwd)
VENV_DIR?=${PROJ_DIR}/.bldenv
BUILD_DIR=${PROJ_DIR}/build
Expand Down
2 changes: 1 addition & 1 deletion dbt/adapters/oracle/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
See the License for the specific language governing permissions and
limitations under the License.
"""
version = "1.7.11"
version = "1.7.13"
2 changes: 1 addition & 1 deletion dbt/include/oracle/macros/adapters.sql
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
create {% if temporary -%}
global temporary
{%- endif %} table {{ relation.include(schema=(not temporary)) }}
{%- if contract_config.enforced -%}
{%- if contract_config.enforced and not temporary -%}
{{ get_assert_columns_equivalent(sql) }}
{{ get_table_columns_and_constraints() }}
{%- set sql = get_select_subquery(sql) %}
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = dbt-oracle
version = 1.7.4
version = 1.7.5
description = dbt (data build tool) adapter for Oracle Autonomous Database
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@

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

VERSION = '1.7.4'
VERSION = '1.7.5'
setup(
author="Oracle",
python_requires='>=3.8',
Expand Down

0 comments on commit 3f40473

Please sign in to comment.