summaryrefslogtreecommitdiff
path: root/t/rt_36838_unique_and_bus_error.t
blob: 2c3a8195bb7a977527b68bdf4c61c30aeb36d4e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/perl

use strict;
BEGIN {
	$|  = 1;
	$^W = 1;
}

use t::lib::Test;
use Test::More tests => 4;
use Test::NoWarnings;

my $dbh = connect_ok( RaiseError => 1, PrintError => 0 );

$dbh->do("CREATE TABLE nums (num INTEGER UNIQUE)");

ok $dbh->do("INSERT INTO nums (num) VALUES (?)", undef, 1);

eval { $dbh->do("INSERT INTO nums (num) VALUES (?)", undef, 1); };
ok $@ =~ /column num is not unique/, $@;  # should not be a bus error