We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06614bd commit 70961e5Copy full SHA for 70961e5
Changes
@@ -1,6 +1,7 @@
1
Revision history for Perl extension URI::db.
2
3
0.19
4
+ - Added URI::snowflake.
5
6
0.18 2017-11-03T15:01:43Z
7
- Added URI::redshift to support db:redshift: URIs, thanks to a pull
lib/URI/snowflake.pm
@@ -0,0 +1,7 @@
+package URI::snowflake;
+use base 'URI::_odbc';
+our $VERSION = '0.19';
+
+sub default_port { 443 }
+1;
t/engines.t
@@ -48,6 +48,7 @@ for my $spec (
48
[ vertica => 5433, 'vertica' ],
49
[ ldapdb => undef, 'ldapdb' ],
50
[ exasol => 8563, 'exasol' ],
51
+ [ snowflake => 443, 'snowflake' ],
52
) {
53
my ($engine, $port, $canon) = @{ $spec };
54
my $prefix = "db:$engine";
0 commit comments