]> git.donarmstrong.com Git - debbugs.git/blob - Debbugs/DB/ResultSet/SrcAssociation.pm
switch to compatibility level 12
[debbugs.git] / Debbugs / DB / ResultSet / SrcAssociation.pm
1 # This module is part of debbugs, and is released
2 # under the terms of the GPL version 2, or any later version. See the
3 # file README and COPYING for more information.
4 # Copyright 2017 by Don Armstrong <don@donarmstrong.com>.
5 use utf8;
6 package Debbugs::DB::ResultSet::SrcAssociation;
7
8 =head1 NAME
9
10 Debbugs::DB::ResultSet::SrcAssociation - Source/Suite Associations
11
12 =head1 SYNOPSIS
13
14
15
16 =head1 DESCRIPTION
17
18
19
20 =cut
21
22 use strict;
23 use warnings;
24
25 use base 'DBIx::Class::ResultSet';
26
27 use Debbugs::DB::Util qw(select_one);
28
29
30 sub insert_suite_src_ver_association {
31     my ($self,$suite_id,$src_ver_id) = @_;
32     return $self->result_source->schema->storage->
33         dbh_do(sub {
34                    my ($s,$dbh,$suite_id,$src_ver_id) = @_;
35                    return select_one($dbh,<<'SQL',$suite_id,$src_ver_id);
36 INSERT INTO src_associations (suite,source)
37    VALUES (?,?) ON CONFLICT (suite,source) DO
38      UPDATE SET modified = NOW()
39 RETURNING id;
40 SQL
41                },
42                $suite_id,$src_ver_id
43               );
44 }
45
46 1;
47
48 __END__