• Bug#1032142: marked as done (unblock: libdbd-oracle-perl/1.83-1) (10/11

    From Debian Bug Tracking System@21:1/5 to All on Tue Feb 28 22:20:01 2023
    [continued from previous message]

    - http://www.platinum.com
    -
    - http://www.SoftTreeTech.com
    -
    - Also PL/Vision from RevealNet and Steven Feuerstein, and
    - "Q" from Savant Corporation.
    -
    -# AUTHORS
    -
    -DBI by Tim Bunce [http://www.tim.bunce.name](http://www.tim.bunce.name).
    -
    -The original `DBD::Oracle` was by Tim Bunce.
    -Maintained as of release 1.17 (February 2006) by John Scoles, then Yanick Champoux, under the
    -auspice of the Pythian Group ([http://www.pythian.com](http://www.pythian.com)).
    -
    -# ACKNOWLEDGEMENTS
    -
    -A great many people have helped with DBD::Oracle over the 17 years
    -between 1994 and 2011. Far too many to name, but we thank them all.
    -Many are named in the Changes file.
    -
    -# COPYRIGHT
    -
    -The DBD::Oracle module is Copyright (c) 1994-2006 Tim Bunce. Ireland.
    -The DBD::Oracle module is Copyright (c) 2006-2011 John Scoles (The Pythian Group). Canada.
    -The DBD::Oracle module is Copyright (c) 2011 John Scoles. Canada.
    -
    -The DBD::Oracle module is free open source software; you can
    -redistribute it and/or modify it under the same terms as Perl 5.
    -
    -# AUTHORS
    -
    -- Tim Bunce <timb@cpan.org>
    -- John Scoles <byterock@cpan.org>
    -- Yanick Champoux <yanick@cpan.org>
    -- Martin J. Evans <mjevans@cpan.org>
    -
    -# COPYRIGHT AND LICENSE
    -
    -This software is copyright (c) 2019, 2014, 2013, 2012, 2011, 2010 by Tim Bunce.
    -
    -This is free software; you can redistribute it and/or modify it under
    -the same terms as the Perl 5 programming language system itself.
    diff -Nru libdbd-oracle-perl-1.80/TESTING.md libdbd-oracle-perl-1.83/TESTING.md --- libdbd-oracle-perl-1.80/TESTING.md 1970-01-01 00:00:00.000000000 +0000
    +++ libdbd-oracle-perl-1.83/TESTING.md 2022-01-17 02:06:35.000000000 +0000
    @@ -0,0 +1,64 @@
    +# Variables used in tests
    +
    +**Connecting to Oracle**
    +
    +`ORACLE_USERID` - important
    +
    +Which user & password to use when running tests against a real Oracle database +
    +Should be 'user/password' or a longer string with connection details.
    +
    +``` bash
    +$ export ORACLE_USERID='scott/tiger'
    +```
    +
    +`ORACLE_USERID_2`
    +
    +Provides a second set of user credentials when needed
    +
    +`ORACLE_DSN`
    +
    +DSN details when connecting to real Oracle for tests
    +
    +``` bash
    +$ export ORACLE_DSN='dbi:Oracle:testdb'
    +```
    +
    +`DBI_DSN`
    +
    +If `ORACLE_DSN` is not provided, this will be used. Otherwise falls back to internal default.
    +
    +**Creation of tables, views, functions etc**
    +
    +`DBD_ORACLE_SEQ` - important
    +
    +Appended to table, view, function (etc) that are created during testing to help
    +prevent collisions
    +
    +`DBD_SKIP_TABLE_D