Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Do not rely on your dependencies to load modules
Fixes DBDish::Pg::Connection failing to compile when loading a module properly
imports symbols lexically instead of as globals.
  • Loading branch information
niner committed Oct 26, 2016
1 parent 0ce19e2 commit 75d2d43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/DBDish/Pg/Connection.pm6
Expand Up @@ -5,7 +5,7 @@ unit class DBDish::Pg::Connection does DBDish::Connection;
use DBDish::Pg::Native;
need DBDish::Pg::StatementHandle;
need DBDish::TestMock;
constant SQLType = DBIish::SQLType;
use DBIish::Common;

has PGconn $!pg_conn is required handles <
pg-notifies pg-socket pg-parameter-status
Expand Down

0 comments on commit 75d2d43

Please sign in to comment.