File tree Expand file tree Collapse file tree 11 files changed +31
-15
lines changed
Expand file tree Collapse file tree 11 files changed +31
-15
lines changed Original file line number Diff line number Diff line change 1+ 2021 07 02 - v22.1
2+
3+ This is a maintenance release to extend the feature of data export through the
4+ oracle_fdw PostgreSQL extension to migration that use the public schema and
5+ do not preserve case.
6+
7+ There is also some other fixes:
8+
9+ - Fix compile_schema() call that breaks valid function based indexes by
10+ adding compile_all => FALSE to DBMS_UTILITY.compile_schema().
11+ Thanks to Pawel Fengler for the patch.
12+ - Force foreign table for data export as readonly to avoid accidental
13+ write if import schema is not cleaned.
14+ - Fix data export to file not possible since last changes for oracle_fdw
15+ export. Thanks to Niels Jespersen for the report.
16+
1172021 06 26 - v22.0
218
319This release fix several issues reported since past three months and
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ use Encode;
4343#set locale to LC_NUMERIC C
4444setlocale(LC_NUMERIC,"C");
4545
46- $VERSION = '22.0 ';
46+ $VERSION = '22.1 ';
4747$PSQL = $ENV{PLSQL} || 'psql';
4848
4949$| = 1;
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ use vars qw($VERSION);
4040
4141use strict;
4242
43- $VERSION = ' 22.0 ' ;
43+ $VERSION = ' 22.1 ' ;
4444
4545# SDO_ETYPE
4646# Second element of triplet in SDO_ELEM_INFO
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ use POSIX qw(locale_h);
99setlocale(LC_NUMERIC," C" );
1010
1111
12- $VERSION = ' 22.0 ' ;
12+ $VERSION = ' 22.1 ' ;
1313
1414# Some function might be excluded from export and assessment.
1515our @EXCLUDED_FUNCTION = (' SQUIRREL_GET_ERROR_OFFSET' );
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ use POSIX qw(locale_h);
3131setlocale(LC_NUMERIC," C" );
3232
3333
34- $VERSION = ' 22.0 ' ;
34+ $VERSION = ' 22.1 ' ;
3535
3636# ----------------------------------------------------
3737# Cost scores used when converting PLSQL to PLPGSQL
Original file line number Diff line number Diff line change 1212
1313 The binary package may be found here:
1414
15- ~/rpmbuild/RPMS/noarch/ora2pg-22.0 -1.noarch.rpm
15+ ~/rpmbuild/RPMS/noarch/ora2pg-22.1 -1.noarch.rpm
1616 or
17- /usr/src/redhat/RPMS/i386/ora2pg-22.0 -1.noarch.rpm
17+ /usr/src/redhat/RPMS/i386/ora2pg-22.1 -1.noarch.rpm
1818
1919 To install run:
2020
21- rpm -i ~/rpmbuild/RPMS/noarch/ora2pg-22.0 -1.noarch.rpm
21+ rpm -i ~/rpmbuild/RPMS/noarch/ora2pg-22.1 -1.noarch.rpm
2222
2323
2424slackbuild/
@@ -30,11 +30,11 @@ slackbuild/
3030 then take a look at /tmp/build/ to find the Slackware package.
3131 To install run the following command:
3232
33- installpkg /tmp/build/ora2pg-22.0 -i386-1gda.tgz
33+ installpkg /tmp/build/ora2pg-22.1 -i386-1gda.tgz
3434
3535 or
3636
37- installpkg /tmp/build/ora2pg-22.0 -x86_64-1gda.tgz
37+ installpkg /tmp/build/ora2pg-22.1 -x86_64-1gda.tgz
3838
3939 following the architecture.
4040
Original file line number Diff line number Diff line change 11Package: ora2pg
2- Version: 22.0
2+ Version: 22.1
33Priority: optional
44Architecture: all
55Essential: no
Original file line number Diff line number Diff line change 1212
1313# # Fill these variables to your needs ##
1414NAMESRC=${NAMESRC:- ora2pg}
15- VERSION=${VERSION:- 22.0 }
15+ VERSION=${VERSION:- 22.1 }
1616EXT=${EXT:- tar.bz2}
1717NAMEPKG=${NAMEPKG:- ora2pg}
1818PKGEXT=${PKGEXT:- tgz/ txz}
Original file line number Diff line number Diff line change 11PRGNAM="Ora2Pg"
2- VERSION="22.0 "
2+ VERSION="22.1 "
33HOMEPAGE="http://ora2pg.darold.net/"
4- DOWNLOAD="http://downloads.sourceforge.net/ora2pg/ora2pg-22.0 .tar.gz"
4+ DOWNLOAD="http://downloads.sourceforge.net/ora2pg/ora2pg-22.1 .tar.gz"
55MD5SUM=""
66DOWNLOAD_x86_64="UNTESTED"
77MD5SUM_x86_64=""
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ use POSIX qw(locale_h sys_wait_h _exit);
3131setlocale(LC_NUMERIC, ' ' );
3232setlocale(LC_ALL, ' C' );
3333
34- my $VERSION = ' 22.0 ' ;
34+ my $VERSION = ' 22.1 ' ;
3535
3636$| = 1;
3737
You can’t perform that action at this time.
0 commit comments