projects
/
dbsrgits/DBIx-Class.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Fix incorrect cond construction in _minimal_valueset_satisfying_constraint
[dbsrgits/DBIx-Class.git]
/
t
/
cdbi
/
testlib
/
OtherThing.pm
1
package OtherThing;
2
3
use warnings;
4
use strict;
5
6
use base 'DBIC::Test::SQLite';
7
8
OtherThing->set_table("other_thing");
9
OtherThing->columns(All => qw(id));
10
11
sub create_sql {
12
return qq{
13
id INTEGER
14
};
15
}