diff options
author | Robert Haas | 2009-07-04 00:05:17 +0000 |
---|---|---|
committer | Robert Haas | 2009-07-04 00:05:17 +0000 |
commit | 62159b9e086d901b37e9b7ca1d2b58264e4f574e (patch) | |
tree | 8c59cb2f66025019126b2f871d6c5216a619008e /perl-lib/PgCommitFest/DB.pm | |
parent | 2aec1f66cb27bd3452592003a68e614fab220df1 (diff) |
Stable links for open, in-progress, and previous CommitFests.
Diffstat (limited to 'perl-lib/PgCommitFest/DB.pm')
-rw-r--r-- | perl-lib/PgCommitFest/DB.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/perl-lib/PgCommitFest/DB.pm b/perl-lib/PgCommitFest/DB.pm index 0cd3b7d..4719007 100644 --- a/perl-lib/PgCommitFest/DB.pm +++ b/perl-lib/PgCommitFest/DB.pm @@ -89,6 +89,11 @@ sub insert_returning_id { return $result->{'id'}; } +sub quote { + my ($self, $value) = @_; + return $self->{'dbh'}->quote($value); +} + sub rollback { my ($self) = @_; $self->{'dirty'} = 0; |