Skip to content

Commit a61ba2e

Browse files
committed
Update changelog and version to 22.1
1 parent 927b07d commit a61ba2e

File tree

11 files changed

+31
-15
lines changed

11 files changed

+31
-15
lines changed

changelog

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
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+
117
2021 06 26 - v22.0
218

319
This release fix several issues reported since past three months and

lib/Ora2Pg.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ use Encode;
4343
#set locale to LC_NUMERIC C
4444
setlocale(LC_NUMERIC,"C");
4545

46-
$VERSION = '22.0';
46+
$VERSION = '22.1';
4747
$PSQL = $ENV{PLSQL} || 'psql';
4848

4949
$| = 1;

lib/Ora2Pg/GEOM.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ use vars qw($VERSION);
4040

4141
use strict;
4242

43-
$VERSION = '22.0';
43+
$VERSION = '22.1';
4444

4545
# SDO_ETYPE
4646
# Second element of triplet in SDO_ELEM_INFO

lib/Ora2Pg/MySQL.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use POSIX qw(locale_h);
99
setlocale(LC_NUMERIC,"C");
1010

1111

12-
$VERSION = '22.0';
12+
$VERSION = '22.1';
1313

1414
# Some function might be excluded from export and assessment.
1515
our @EXCLUDED_FUNCTION = ('SQUIRREL_GET_ERROR_OFFSET');

lib/Ora2Pg/PLSQL.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ use POSIX qw(locale_h);
3131
setlocale(LC_NUMERIC,"C");
3232

3333

34-
$VERSION = '22.0';
34+
$VERSION = '22.1';
3535

3636
#----------------------------------------------------
3737
# Cost scores used when converting PLSQL to PLPGSQL

packaging/README

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ RPM/
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

2424
slackbuild/
@@ -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

packaging/debian/ora2pg/DEBIAN/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: ora2pg
2-
Version: 22.0
2+
Version: 22.1
33
Priority: optional
44
Architecture: all
55
Essential: no

packaging/slackbuild/Ora2Pg.SlackBuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
## Fill these variables to your needs ##
1414
NAMESRC=${NAMESRC:-ora2pg}
15-
VERSION=${VERSION:-22.0}
15+
VERSION=${VERSION:-22.1}
1616
EXT=${EXT:-tar.bz2}
1717
NAMEPKG=${NAMEPKG:-ora2pg}
1818
PKGEXT=${PKGEXT:-tgz/txz}

packaging/slackbuild/Ora2Pg.info

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PRGNAM="Ora2Pg"
2-
VERSION="22.0"
2+
VERSION="22.1"
33
HOMEPAGE="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"
55
MD5SUM=""
66
DOWNLOAD_x86_64="UNTESTED"
77
MD5SUM_x86_64=""

scripts/ora2pg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ use POSIX qw(locale_h sys_wait_h _exit);
3131
setlocale(LC_NUMERIC, '');
3232
setlocale(LC_ALL, 'C');
3333

34-
my $VERSION = '22.0';
34+
my $VERSION = '22.1';
3535

3636
$| = 1;
3737

0 commit comments

Comments
 (0)