Skip to content

Commit 0aef337

Browse files
committed
Remove redundant loading of URI::QueryParam.
And credit @jwarlander for the new Exasol implementation!
1 parent 8bdc1ee commit 0aef337

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

Changes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ Revision history for Perl extension URI::db.
33
0.18
44
- Added URI::redshift to support db:redshift: URIs, thanks to a pull
55
request from Steve Caldwell (PR #12).
6+
- Added URI::exasol, thanks to Johan Wärlander.
67

78
0.17 2016-02-03T18:35:33Z
89
- Added URI::_ado, which subclasses URI::_odbc to provide a `dbi_dsn()`

lib/URI/_odbc.pm

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ sub _dbi_param_map {
1212
# Just return the DSN if no host or port.
1313
return [ DSN => scalar $self->dbname ] unless $host || $port;
1414

15-
# Fetch the driver from the query params.
16-
require URI::QueryParam;
1715
return (
1816
[ Server => $host ],
1917
[ Port => $port || $self->default_port ],

lib/URI/exasol.pm

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ sub _dbi_param_map {
1212
# Just return the DSN if no host or port.
1313
return [ DSN => scalar $self->dbname ] unless $host || $port;
1414

15-
# Fetch the driver from the query params.
16-
require URI::QueryParam;
1715
return (
1816
[ EXAHOST => $host ],
1917
[ EXAPORT => $port || $self->default_port ],

0 commit comments

Comments
 (0)