11 my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_PG_${_}" } qw/DSN USER PASS/};
13 plan skip_all => <<'EOM' unless $dsn && $user;
14 Set $ENV{DBICTEST_PG_DSN}, _USER and _PASS to run this test
15 ( NOTE: This test drops and creates tables called 'artist', 'cd',
16 'timestamp_primary_key_test', 'track', 'casecheck', 'array_test' and
17 'sequence_test' as well as following sequences: 'pkid1_seq', 'pkid2_seq' and
18 'nonpkid_seq'. as well as following schemas: 'dbic_t_schema',
19 'dbic_t_schema_2', 'dbic_t_schema_3', 'dbic_t_schema_4', and 'dbic_t_schema_5')
22 ### load any test classes that are defined further down in the file via BEGIN blocks
24 our @test_classes; #< array that will be pushed into by test classes defined in this file
25 DBICTest::Schema->load_classes( map {s/.+:://;$_} @test_classes ) if @test_classes;
27 ### pre-connect tests (keep each test separate as to make sure rebless() runs)
29 my $s = DBICTest::Schema->connect($dsn, $user, $pass);
31 ok (!$s->storage->_dbh, 'definitely not connected');
33 # Check that datetime_parser returns correctly before we explicitly connect.
36 "Pg parser detection test needs " . DBIx::Class::Optional::Dependencies->req_missing_for ('test_dt_pg'),
38 ) unless DBIx::Class::Optional::Dependencies->req_ok_for ('test_dt_pg');
40 my $store = ref $s->storage;
41 is($store, 'DBIx::Class::Storage::DBI', 'Started with generic storage');
43 my $parser = $s->storage->datetime_parser;
44 is( $parser, 'DateTime::Format::Pg', 'datetime_parser is as expected');
47 ok (!$s->storage->_dbh, 'still not connected');
51 my $s = DBICTest::Schema->connect($dsn, $user, $pass);
52 # make sure sqlt_type overrides work (::Storage::DBI::Pg does this)
53 ok (!$s->storage->_dbh, 'definitely not connected');
54 is ($s->storage->sqlt_type, 'PostgreSQL', 'sqlt_type correct pre-connection');
55 ok (!$s->storage->_dbh, 'still not connected');
60 my $schema = DBICTest::Schema->connect($dsn, $user, $pass);
61 drop_test_schema($schema);
62 create_test_schema($schema);
64 $schema->resultset('Artist')->create({ name => 'Artist ' . $_ });
66 my $it = $schema->resultset('Artist')->search( {},
69 order_by => 'artistid' }
71 is( $it->count, 3, "LIMIT count ok" ); # ask for 3 rows out of 6 artists
72 is( $it->next->name, "Artist 3", "iterator->next ok" );
76 is( $it->next, undef, "next past end of resultset ok" );
78 # Limit with select-lock
80 $schema->txn_do (sub {
82 $schema->resultset('Artist')->find({artistid => 1}, {for => 'update', rows => 1}),
83 'DBICTest::Schema::Artist',
86 } 'Limited FOR UPDATE select works';
89 # check if we indeed do support stuff
90 my $test_server_supports_insert_returning = do {
91 my $v = DBICTest::Schema->connect($dsn, $user, $pass)
96 or die "Unparseable Pg server version: $v\n";
98 ( sprintf ('%d.%d', $1, $2) >= 8.2 ) ? 1 : 0;
101 DBICTest::Schema->connect($dsn, $user, $pass)->storage->_use_insert_returning,
102 $test_server_supports_insert_returning,
103 'insert returning capability guessed correctly'
107 for my $use_insert_returning ($test_server_supports_insert_returning
112 no warnings qw/once/;
113 local *DBICTest::Schema::connection = subname 'DBICTest::Schema::connection' => sub {
114 my $s = shift->next::method (@_);
115 $s->storage->_use_insert_returning ($use_insert_returning);
119 ### test capability override
121 my $s = DBICTest::Schema->connect($dsn, $user, $pass);
123 ok (!$s->storage->_dbh, 'definitely not connected');
126 ! ($s->storage->_use_insert_returning xor $use_insert_returning),
127 'insert returning capability set correctly',
129 ok (!$s->storage->_dbh, 'still not connected (capability override works)');
132 ### connect, create postgres-specific test schema
134 $schema = DBICTest::Schema->connect($dsn, $user, $pass);
135 $schema->storage->ensure_connected;
137 drop_test_schema($schema);
138 create_test_schema($schema);
142 # run a BIG bunch of tests for last-insert-id / Auto-PK / sequence
144 run_apk_tests($schema); #< older set of auto-pk tests
145 run_extended_apk_tests($schema); #< new extended set of auto-pk tests
149 my $test_type_info = {
151 'data_type' => 'integer',
156 'data_type' => 'character varying',
159 'default_value' => undef,
162 'data_type' => 'integer',
165 'default_value' => 13,
169 'data_type' => 'character',
172 'default_value' => undef,
175 'data_type' => 'integer[]',
178 'default_value' => undef,
182 my $type_info = $schema->storage->columns_info_for('dbic_t_schema.artist');
183 my $artistid_defval = delete $type_info->{artistid}->{default_value};
184 like($artistid_defval,
185 qr/^nextval\('([^\.]*\.){0,1}artist_artistid_seq'::(?:text|regclass)\)/,
186 'columns_info_for - sequence matches Pg get_autoinc_seq expectations');
187 is_deeply($type_info, $test_type_info,
188 'columns_info_for - column data types');
196 package DBICTest::Schema::ArrayTest;
197 push @main::test_classes, __PACKAGE__;
201 use base 'DBICTest::BaseResult';
203 __PACKAGE__->table('dbic_t_schema.array_test');
204 __PACKAGE__->add_columns(qw/id arrayfield/);
205 __PACKAGE__->column_info_from_storage(1);
206 __PACKAGE__->set_primary_key('id');
210 skip "Need DBD::Pg 2.9.2 or newer for array tests", 4 if $DBD::Pg::VERSION < 2.009002;
212 my $arr_rs = $schema->resultset('ArrayTest');
216 arrayfield => [1, 2],
218 } 'inserting arrayref as pg array data';
222 arrayfield => [3, 4],
224 } 'updating arrayref as pg array data';
227 arrayfield => [5, 6],
230 # Search using arrays
233 $arr_rs->search({ arrayfield => { -value => [3,4] } })->first->arrayfield,
235 'Array value matches'
237 } 'searching by arrayref';
241 $arr_rs->search({ arrayfield => { '=' => { -value => [3,4] }} })->first->arrayfield,
243 'Array value matches explicit equal'
245 } 'searching by arrayref (explicit equal sign)';
249 $arr_rs->search({ arrayfield => { '>' => { -value => [3,1] }} })->first->arrayfield,
251 'Array value matches greater than'
253 } 'searching by arrayref (greater than)';
257 $arr_rs->search({ arrayfield => { '>' => { -value => [3,7] }} })->count,
259 'Greater than search found [5,6]',
261 } 'searching by arrayref (greater than)';
266 $arr_rs->find({ arrayfield => { -value => [3,4] } })->arrayfield,
268 'Array value matches implicit equal'
270 } 'find by arrayref';
274 $arr_rs->find({ arrayfield => { '=' => { -value => [3,4] }} })->arrayfield,
276 'Array value matches explicit equal'
278 } 'find by arrayref (equal)';
280 # test inferred condition for creation
283 \[ '= ?' => [arrayfield => [3, 4]] ],
285 local $TODO = 'No introspection of complex conditions :(';
286 my $arr_rs_cond = $arr_rs->search({ arrayfield => $cond });
288 my $row = $arr_rs_cond->create({});
289 is_deeply ($row->arrayfield, [3,4], 'Array value taken from $rs condition');
290 $row->discard_changes;
291 is_deeply ($row->arrayfield, [3,4], 'Array value made it to storage');
295 ########## Case check
298 package DBICTest::Schema::Casecheck;
299 push @main::test_classes, __PACKAGE__;
303 use base 'DBIx::Class::Core';
305 __PACKAGE__->table('dbic_t_schema.casecheck');
306 __PACKAGE__->add_columns(qw/id name NAME uc_name/);
307 __PACKAGE__->column_info_from_storage(1);
308 __PACKAGE__->set_primary_key('id');
311 my $name_info = $schema->source('Casecheck')->column_info( 'name' );
312 is( $name_info->{size}, 1, "Case sensitive matching info for 'name'" );
314 my $NAME_info = $schema->source('Casecheck')->column_info( 'NAME' );
315 is( $NAME_info->{size}, 2, "Case sensitive matching info for 'NAME'" );
317 my $uc_name_info = $schema->source('Casecheck')->column_info( 'uc_name' );
318 is( $uc_name_info->{size}, 3, "Case insensitive matching info for 'uc_name'" );
321 ## Test ResultSet->update
322 my $artist = $schema->resultset('Artist')->first;
323 my $cds = $artist->cds_unordered->search({
324 year => { '!=' => 2010 }
325 }, { prefetch => 'liner_notes' });
326 lives_ok { $cds->update({ year => '2010' }) } 'Update on prefetched rs';
328 ## Test SELECT ... FOR UPDATE
331 if(eval { require Sys::SigAction }) {
332 Sys::SigAction->import( 'set_sig_handler' );
335 skip "Sys::SigAction is not available", 6;
338 my ($timed_out, $artist2);
342 # Make sure that an error was raised, and that the update failed
345 ok($timed_out, "update from second schema times out");
346 ok($artist2->is_column_changed('name'), "'name' column is still dirty from second schema");
350 # Make sure that an error was NOT raised, and that the update succeeded
353 ok(! $timed_out, "update from second schema DOES NOT timeout");
354 ok(! $artist2->is_column_changed('name'), "'name' column is NOT dirty from second schema");
358 # create a new schema
359 my $schema2 = DBICTest::Schema->connect($dsn, $user, $pass);
360 $schema2->source("Artist")->name("dbic_t_schema.artist");
362 $schema->txn_do( sub {
363 my $rs = $schema->resultset('Artist')->search(
367 $t->{update_lock} ? { for => 'update' } : {}
369 ok ($rs->count, 'Count works');
371 my $artist = $rs->next;
372 is($artist->artistid, 1, "select returns artistid = 1");
376 my $h = set_sig_handler( 'ALRM', sub { die "DBICTestTimeout" } );
378 $artist2 = $schema2->resultset('Artist')->find(1);
379 $artist2->name('fooey');
383 $timed_out = $@ =~ /DBICTestTimeout/;
391 ######## other older Auto-pk tests
393 $schema->source("SequenceTest")->name("dbic_t_schema.sequence_test");
395 my $st = $schema->resultset('SequenceTest')->create({ name => 'foo' });
396 is($st->pkid1, $_, "Auto-PK for sequence without default: First primary key");
397 is($st->pkid2, $_ + 9, "Auto-PK for sequence without default: Second primary key");
398 is($st->nonpkid, $_ + 19, "Auto-PK for sequence without default: Non-primary key");
400 my $st = $schema->resultset('SequenceTest')->create({ name => 'foo', pkid1 => 55 });
401 is($st->pkid1, 55, "Auto-PK for sequence without default: First primary key set manually");
404 ######## test non-serial auto-pk
406 if ($schema->storage->_use_insert_returning) {
407 $schema->source('TimestampPrimaryKey')->name('dbic_t_schema.timestamp_primary_key_test');
408 my $row = $schema->resultset('TimestampPrimaryKey')->create({});
412 ######## test with_deferred_fk_checks
414 $schema->source('CD')->name('dbic_t_schema.cd');
415 $schema->source('Track')->name('dbic_t_schema.track');
417 $schema->storage->with_deferred_fk_checks(sub {
418 $schema->resultset('Track')->create({
419 trackid => 999, cd => 999, position => 1, title => 'deferred FK track'
421 $schema->resultset('CD')->create({
422 artist => 1, cdid => 999, year => '2003', title => 'deferred FK cd'
425 } 'with_deferred_fk_checks code survived';
427 is eval { $schema->resultset('Track')->find(999)->title }, 'deferred FK track',
428 'code in with_deferred_fk_checks worked';
431 $schema->resultset('Track')->create({
432 trackid => 1, cd => 9999, position => 1, title => 'Track1'
434 } qr/constraint/i, 'with_deferred_fk_checks is off';
440 return unless $schema;
441 drop_test_schema($schema);
442 eapk_drop_all( $schema)
446 ######### SUBROUTINES
448 sub create_test_schema {
450 $schema->storage->dbh_do(sub {
451 my (undef,$dbh) = @_;
453 local $dbh->{Warn} = 0;
455 my $std_artist_table = <<EOS;
457 artistid serial PRIMARY KEY
459 , rank INTEGER NOT NULL DEFAULT '13'
461 , arrayfield INTEGER[]
465 $dbh->do("CREATE SCHEMA dbic_t_schema");
466 $dbh->do("CREATE TABLE dbic_t_schema.artist $std_artist_table");
469 CREATE TABLE dbic_t_schema.timestamp_primary_key_test (
470 id timestamp default current_timestamp
474 CREATE TABLE dbic_t_schema.cd (
475 cdid int PRIMARY KEY,
484 CREATE TABLE dbic_t_schema.track (
486 cd int REFERENCES dbic_t_schema.cd(cdid) DEFERRABLE,
489 last_updated_on date,
495 CREATE TABLE dbic_t_schema.sequence_test (
500 , CONSTRAINT pk PRIMARY KEY(pkid1, pkid2)
503 $dbh->do("CREATE SEQUENCE pkid1_seq START 1 MAXVALUE 999999 MINVALUE 0");
504 $dbh->do("CREATE SEQUENCE pkid2_seq START 10 MAXVALUE 999999 MINVALUE 0");
505 $dbh->do("CREATE SEQUENCE nonpkid_seq START 20 MAXVALUE 999999 MINVALUE 0");
507 CREATE TABLE dbic_t_schema.casecheck (
508 id serial PRIMARY KEY
511 , "UC_NAME" VARCHAR(3)
515 CREATE TABLE dbic_t_schema.array_test (
516 id serial PRIMARY KEY
517 , arrayfield INTEGER[]
520 $dbh->do("CREATE SCHEMA dbic_t_schema_2");
521 $dbh->do("CREATE TABLE dbic_t_schema_2.artist $std_artist_table");
522 $dbh->do("CREATE SCHEMA dbic_t_schema_3");
523 $dbh->do("CREATE TABLE dbic_t_schema_3.artist $std_artist_table");
524 $dbh->do('set search_path=dbic_t_schema,public');
525 $dbh->do("CREATE SCHEMA dbic_t_schema_4");
526 $dbh->do("CREATE SCHEMA dbic_t_schema_5");
528 CREATE TABLE dbic_t_schema_4.artist
530 artistid integer not null default nextval('artist_artistid_seq'::regclass) PRIMARY KEY
532 , rank INTEGER NOT NULL DEFAULT '13'
534 , arrayfield INTEGER[]
537 $dbh->do('set search_path=public,dbic_t_schema,dbic_t_schema_3');
538 $dbh->do('create sequence public.artist_artistid_seq'); #< in the public schema
540 CREATE TABLE dbic_t_schema_5.artist
542 artistid integer not null default nextval('public.artist_artistid_seq'::regclass) PRIMARY KEY
544 , rank INTEGER NOT NULL DEFAULT '13'
546 , arrayfield INTEGER[]
549 $dbh->do('set search_path=dbic_t_schema,public');
555 sub drop_test_schema {
556 my ( $schema, $warn_exceptions ) = @_;
558 $schema->storage->dbh_do(sub {
559 my (undef,$dbh) = @_;
561 local $dbh->{Warn} = 0;
564 'DROP SCHEMA dbic_t_schema_5 CASCADE',
565 'DROP SEQUENCE public.artist_artistid_seq',
566 'DROP SCHEMA dbic_t_schema_4 CASCADE',
567 'DROP SCHEMA dbic_t_schema CASCADE',
568 'DROP SEQUENCE pkid1_seq',
569 'DROP SEQUENCE pkid2_seq',
570 'DROP SEQUENCE nonpkid_seq',
571 'DROP SCHEMA dbic_t_schema_2 CASCADE',
572 'DROP SCHEMA dbic_t_schema_3 CASCADE',
574 eval { $dbh->do ($stat) };
575 diag $@ if $@ && $warn_exceptions;
581 ### auto-pk / last_insert_id / sequence discovery
585 # This is in Core now, but it's here just to test that it doesn't break
586 $schema->class('Artist')->load_components('PK::Auto');
587 cmp_ok( $schema->resultset('Artist')->count, '==', 0, 'this should start with an empty artist table');
589 # test that auto-pk also works with the defined search path by
590 # un-schema-qualifying the table name
591 apk_t_set($schema,'artist');
595 $unq_new = $schema->resultset('Artist')->create({ name => 'baz' });
596 } 'insert into unqualified, shadowed table succeeds';
598 is($unq_new && $unq_new->artistid, 1, "and got correct artistid");
600 my @test_schemas = ( [qw| dbic_t_schema_2 1 |],
601 [qw| dbic_t_schema_3 1 |],
602 [qw| dbic_t_schema_4 2 |],
603 [qw| dbic_t_schema_5 1 |],
605 foreach my $t ( @test_schemas ) {
606 my ($sch_name, $start_num) = @$t;
607 #test with dbic_t_schema_2
608 apk_t_set($schema,"$sch_name.artist");
611 $another_new = $schema->resultset('Artist')->create({ name => 'Tollbooth Willy'});
612 is( $another_new->artistid,$start_num, "got correct artistid for $sch_name")
613 or diag "USED SEQUENCE: ".($schema->source('Artist')->column_info('artistid')->{sequence} || '<none>');
614 } "$sch_name liid 1 did not die"
615 or diag "USED SEQUENCE: ".($schema->source('Artist')->column_info('artistid')->{sequence} || '<none>');
617 $another_new = $schema->resultset('Artist')->create({ name => 'Adam Sandler'});
618 is( $another_new->artistid,$start_num+1, "got correct artistid for $sch_name")
619 or diag "USED SEQUENCE: ".($schema->source('Artist')->column_info('artistid')->{sequence} || '<none>');
620 } "$sch_name liid 2 did not die"
621 or diag "USED SEQUENCE: ".($schema->source('Artist')->column_info('artistid')->{sequence} || '<none>');
626 apk_t_set($schema,'dbic_t_schema.artist');
627 my $new = $schema->resultset('Artist')->create({ name => 'foo' });
628 is($new->artistid, 4, "Auto-PK worked");
629 $new = $schema->resultset('Artist')->create({ name => 'bar' });
630 is($new->artistid, 5, "Auto-PK worked");
631 } 'old auto-pk tests did not die either';
634 # sets the artist table name and clears sequence name cache
637 $s->source("Artist")->name($n);
638 $s->source('Artist')->column_info('artistid')->{sequence} = undef; #< clear sequence name cache
642 ######## EXTENDED AUTO-PK TESTS
646 package DBICTest::Schema::ExtAPK;
647 push @main::test_classes, __PACKAGE__;
651 use base 'DBIx::Class::Core';
653 __PACKAGE__->table('apk');
655 @eapk_id_columns = qw( id1 id2 id3 id4 );
656 __PACKAGE__->add_columns(
657 map { $_ => { data_type => 'integer', is_auto_increment => 1 } }
661 __PACKAGE__->set_primary_key('id2'); #< note the SECOND column is
666 BEGIN{ @eapk_schemas = map "dbic_apk_$_", 0..5 }
667 my %seqs; #< hash of schema.table.col => currval of its (DBIC) primary key sequence
669 sub run_extended_apk_tests {
672 #save the search path and reset it at the end
673 my $search_path_save = eapk_get_search_path($schema);
675 eapk_drop_all($schema);
678 # make the test schemas and sequences
679 $schema->storage->dbh_do(sub {
680 my ( undef, $dbh ) = @_;
682 $dbh->do("CREATE SCHEMA $_")
685 $dbh->do("CREATE SEQUENCE $eapk_schemas[5].fooseq");
686 $dbh->do("SELECT setval('$eapk_schemas[5].fooseq',400)");
687 $seqs{"$eapk_schemas[1].apk.id2"} = 400;
689 $dbh->do("CREATE SEQUENCE $eapk_schemas[4].fooseq");
690 $dbh->do("SELECT setval('$eapk_schemas[4].fooseq',300)");
691 $seqs{"$eapk_schemas[3].apk.id2"} = 300;
693 $dbh->do("CREATE SEQUENCE $eapk_schemas[3].fooseq");
694 $dbh->do("SELECT setval('$eapk_schemas[3].fooseq',200)");
695 $seqs{"$eapk_schemas[4].apk.id2"} = 200;
697 $dbh->do("SET search_path = ".join ',', reverse @eapk_schemas );
700 # clear our search_path cache
701 $schema->storage->{_pg_search_path} = undef;
703 eapk_create( $schema,
704 with_search_path => [0,1],
706 eapk_create( $schema,
707 with_search_path => [1,0,'public'],
708 nextval => "$eapk_schemas[5].fooseq",
710 eapk_create( $schema,
711 with_search_path => ['public',0,1],
714 eapk_create( $schema,
715 with_search_path => [3,1,0,'public'],
716 nextval => "$eapk_schemas[4].fooseq",
718 eapk_create( $schema,
719 with_search_path => [3,1,0,'public'],
720 nextval => "$eapk_schemas[3].fooseq",
724 eapk_poke( $schema );
725 eapk_poke( $schema, 0 );
726 eapk_poke( $schema, 2 );
727 eapk_poke( $schema, 4 );
728 eapk_poke( $schema, 1 );
729 eapk_poke( $schema, 0 );
730 eapk_poke( $schema, 1 );
731 eapk_poke( $schema );
732 eapk_poke( $schema, 4 );
733 eapk_poke( $schema, 3 );
734 eapk_poke( $schema, 1 );
735 eapk_poke( $schema, 2 );
736 eapk_poke( $schema, 0 );
738 # set our search path back
739 eapk_set_search_path( $schema, @$search_path_save );
742 # do a DBIC create on the apk table in the given schema number (which is an
743 # index of @eapk_schemas)
746 my ($s, $schema_num) = @_;
748 my $schema_name = defined $schema_num
749 ? $eapk_schemas[$schema_num]
752 my $schema_name_actual = $schema_name || eapk_find_visible_schema($s);
754 $s->source('ExtAPK')->name($schema_name ? $schema_name.'.apk' : 'apk');
755 #< clear sequence name cache
756 $s->source('ExtAPK')->column_info($_)->{sequence} = undef
757 for @eapk_id_columns;
759 no warnings 'uninitialized';
762 for my $inc (1,2,3) {
763 $new = $schema->resultset('ExtAPK')->create({ id1 => 1});
764 my $proper_seqval = ++$seqs{"$schema_name_actual.apk.id2"};
765 is( $new->id2, $proper_seqval, "$schema_name_actual.apk.id2 correct inc $inc" )
766 or eapk_seq_diag($s,$schema_name);
767 $new->discard_changes;
769 for my $id ('id3','id4') {
770 my $proper_seqval = ++$seqs{"$schema_name_actual.apk.$id"};
771 is( $new->$id, $proper_seqval, "$schema_name_actual.apk.$id correct inc $inc" )
772 or eapk_seq_diag($s,$schema_name);
775 } "create in schema '$schema_name' lives"
776 or eapk_seq_diag($s,$schema_name);
779 # print diagnostic info on which sequences were found in the ExtAPK
783 my $schema = shift || eapk_find_visible_schema($s);
785 diag "$schema.apk sequences: ",
787 map "$_:".($s->source('ExtAPK')->column_info($_)->{sequence} || '<none>'),
792 # get the postgres search path as an arrayref
793 sub eapk_get_search_path {
795 # cache the search path as ['schema','schema',...] in the storage
798 return $s->storage->dbh_do(sub {
799 my (undef, $dbh) = @_;
801 my ($sp_string) = $dbh->selectrow_array('SHOW search_path');
802 while ( $sp_string =~ s/("[^"]+"|[^,]+),?// ) {
803 unless( defined $1 and length $1 ) {
804 die "search path sanity check failed: '$1'";
806 push @search_path, $1;
811 sub eapk_set_search_path {
813 my $sp = join ',',@sp;
814 $s->storage->dbh_do( sub { $_[1]->do("SET search_path = $sp") } );
817 # create the apk table in the given schema, can set whether the table name is qualified, what the nextval is for the second ID
819 my ($schema, %a) = @_;
821 $schema->storage->dbh_do(sub {
822 my (undef,$dbh) = @_;
825 if ( $a{with_search_path} ) {
826 ($searchpath_save) = $dbh->selectrow_array('SHOW search_path');
828 my $search_path = join ',',map {/\D/ ? $_ : $eapk_schemas[$_]} @{$a{with_search_path}};
830 $dbh->do("SET search_path = $search_path");
833 my $table_name = $a{qualify_table}
834 ? ($eapk_schemas[$a{qualify_table}] || die). ".apk"
836 local $_[1]->{Warn} = 0;
838 my $id_def = $a{nextval}
839 ? "integer not null default nextval('$a{nextval}'::regclass)"
842 CREATE TABLE $table_name (
845 , id3 serial primary key
850 if( $searchpath_save ) {
851 $dbh->do("SET search_path = $searchpath_save");
857 my ( $schema, $warn_exceptions ) = @_;
859 $schema->storage->dbh_do(sub {
860 my (undef,$dbh) = @_;
862 local $dbh->{Warn} = 0;
864 # drop the test schemas
865 for (@eapk_schemas ) {
866 eval{ $dbh->do("DROP SCHEMA $_ CASCADE") };
867 diag $@ if $@ && $warn_exceptions;
874 sub eapk_find_visible_schema {
878 $s->storage->dbh_do(sub {
879 $_[1]->selectrow_array(<<EOS);
881 FROM pg_catalog.pg_namespace n
882 JOIN pg_catalog.pg_class c ON c.relnamespace = n.oid
883 WHERE c.relname = 'apk'
884 AND pg_catalog.pg_table_is_visible(c.oid)