Skip to content

Commit

Permalink
the table �[200~utl_file.utl_file_dir is dumpable
Browse files Browse the repository at this point in the history
  • Loading branch information
okbob committed Jan 4, 2023
1 parent 8823020 commit 33cea9c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "orafce",
"abstract": "Oracle's compatibility functions and packages",
"description": "This module allows use a well known Oracle's functions and packages inside PostgreSQL",
"version": "4.0.2",
"version": "4.1.0",
"maintainer": [
"Pavel Stehule <[email protected]>",
"Takahiro Itagaki <[email protected]>"
Expand All @@ -25,7 +25,7 @@
"orafce": {
"file": "sql/orafce.sql",
"docfile": "README.orafce",
"version": "4.0.2",
"version": "4.1.0",
"abstract": "Oracle's compatibility functions and packages"
}
},
Expand Down
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ OBJS= regexp.o\

EXTENSION = orafce

DATA = orafce--4.0.sql\
DATA = orafce--4.1.sql\
orafce--3.2--3.3.sql\
orafce--3.3--3.4.sql\
orafce--3.4--3.5.sql\
Expand All @@ -54,7 +54,8 @@ DATA = orafce--4.0.sql\
orafce--3.22--3.23.sql\
orafce--3.23--3.24.sql\
orafce--3.24--3.25.sql\
orafce--3.25--4.0.sql
orafce--3.25--4.0.sql\
orafce--4.0--4.1.sql

DOCS = README.asciidoc COPYRIGHT.orafce INSTALL.orafce

Expand Down
1 change: 1 addition & 0 deletions orafce--4.0--4.1.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
SELECT pg_extension_config_dump('utl_file.utl_file_dir', '');
2 changes: 2 additions & 0 deletions orafce--4.0.sql → orafce--4.1.sql
Original file line number Diff line number Diff line change
Expand Up @@ -4251,3 +4251,5 @@ CREATE TYPE dbms_sql.desc_rec AS (

CREATE FUNCTION dbms_sql.describe_columns_f(c int, OUT col_cnt int, OUT desc_t dbms_sql.desc_rec[]) AS 'MODULE_PATHNAME', 'dbms_sql_describe_columns_f' LANGUAGE c;
CREATE PROCEDURE dbms_sql.describe_columns(c int, INOUT col_cnt int, INOUT desc_t dbms_sql.desc_rec[]) AS 'MODULE_PATHNAME', 'dbms_sql_describe_columns_f' LANGUAGE c;

SELECT pg_extension_config_dump('utl_file.utl_file_dir', '');
2 changes: 1 addition & 1 deletion orafce.control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# orafce extension
comment = 'Functions and operators that emulate a subset of functions and packages from the Oracle RDBMS'
default_version = '4.0'
default_version = '4.1'
module_pathname = '$libdir/orafce'
relocatable = false

0 comments on commit 33cea9c

Please sign in to comment.