Skip to content

Commit 70961e5

Browse files
committed
Add URI::snowflake
1 parent 06614bd commit 70961e5

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

Changes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
Revision history for Perl extension URI::db.
22

33
0.19
4+
- Added URI::snowflake.
45

56
0.18 2017-11-03T15:01:43Z
67
- Added URI::redshift to support db:redshift: URIs, thanks to a pull

lib/URI/snowflake.pm

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package URI::snowflake;
2+
use base 'URI::_odbc';
3+
our $VERSION = '0.19';
4+
5+
sub default_port { 443 }
6+
7+
1;

t/engines.t

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ for my $spec (
4848
[ vertica => 5433, 'vertica' ],
4949
[ ldapdb => undef, 'ldapdb' ],
5050
[ exasol => 8563, 'exasol' ],
51+
[ snowflake => 443, 'snowflake' ],
5152
) {
5253
my ($engine, $port, $canon) = @{ $spec };
5354
my $prefix = "db:$engine";

0 commit comments

Comments
 (0)