7 use DBIx::Class::Optional::Dependencies ();
11 plan skip_all => 'Test needs ' . DBIx::Class::Optional::Dependencies->req_missing_for ('test_rdbms_pg')
12 unless DBIx::Class::Optional::Dependencies->req_ok_for ('test_rdbms_pg');
14 my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_PG_${_}" } qw/DSN USER PASS/};
16 plan skip_all => <<'EOM' unless $dsn && $user;
17 Set $ENV{DBICTEST_PG_DSN}, _USER and _PASS to run this test
18 ( NOTE: This test drops and creates tables called 'artist', 'cd',
19 'timestamp_primary_key_test', 'track', 'casecheck', 'array_test' and
20 'sequence_test' as well as following sequences: 'pkid1_seq', 'pkid2_seq' and
21 'nonpkid_seq'. as well as following schemas: 'dbic_t_schema',
22 'dbic_t_schema_2', 'dbic_t_schema_3', 'dbic_t_schema_4', and 'dbic_t_schema_5')
25 ### load any test classes that are defined further down in the file via BEGIN blocks
27 our @test_classes; #< array that will be pushed into by test classes defined in this file
28 DBICTest::Schema->load_classes( map {s/.+:://;$_} @test_classes ) if @test_classes;
30 ### pre-connect tests (keep each test separate as to make sure rebless() runs)
32 my $s = DBICTest::Schema->connect($dsn, $user, $pass);
34 ok (!$s->storage->_dbh, 'definitely not connected');
36 # Check that datetime_parser returns correctly before we explicitly connect.
39 "Pg parser detection test needs " . DBIx::Class::Optional::Dependencies->req_missing_for ('test_dt_pg'),
41 ) unless DBIx::Class::Optional::Dependencies->req_ok_for ('test_dt_pg');
43 my $store = ref $s->storage;
44 is($store, 'DBIx::Class::Storage::DBI', 'Started with generic storage');
46 my $parser = $s->storage->datetime_parser;
47 is( $parser, 'DateTime::Format::Pg', 'datetime_parser is as expected');
50 ok (!$s->storage->_dbh, 'still not connected');
54 my $s = DBICTest::Schema->connect($dsn, $user, $pass);
55 # make sure sqlt_type overrides work (::Storage::DBI::Pg does this)
56 ok (!$s->storage->_dbh, 'definitely not connected');
57 is ($s->storage->sqlt_type, 'PostgreSQL', 'sqlt_type correct pre-connection');
58 ok (!$s->storage->_dbh, 'still not connected');
63 my $schema = DBICTest::Schema->connect($dsn, $user, $pass);
64 drop_test_schema($schema);
65 create_test_schema($schema);
67 $schema->resultset('Artist')->create({ name => 'Artist ' . $_ });
69 my $it = $schema->resultset('Artist')->search( {},
72 order_by => 'artistid' }
74 is( $it->count, 3, "LIMIT count ok" ); # ask for 3 rows out of 6 artists
75 is( $it->next->name, "Artist 3", "iterator->next ok" );
79 is( $it->next, undef, "next past end of resultset ok" );
81 # Limit with select-lock
83 $schema->txn_do (sub {
85 $schema->resultset('Artist')->find({artistid => 1}, {for => 'update', rows => 1}),
86 'DBICTest::Schema::Artist',
89 } 'Limited FOR UPDATE select works';
92 # check if we indeed do support stuff
93 my $test_server_supports_insert_returning = do {
94 my $v = DBICTest::Schema->connect($dsn, $user, $pass)
99 or die "Unparseable Pg server version: $v\n";
101 ( sprintf ('%d.%d', $1, $2) >= 8.2 ) ? 1 : 0;
104 DBICTest::Schema->connect($dsn, $user, $pass)->storage->_use_insert_returning,
105 $test_server_supports_insert_returning,
106 'insert returning capability guessed correctly'
110 for my $use_insert_returning ($test_server_supports_insert_returning
115 no warnings qw/once/;
116 local *DBICTest::Schema::connection = subname 'DBICTest::Schema::connection' => sub {
117 my $s = shift->next::method (@_);
118 $s->storage->_use_insert_returning ($use_insert_returning);
122 ### test capability override
124 my $s = DBICTest::Schema->connect($dsn, $user, $pass);
126 ok (!$s->storage->_dbh, 'definitely not connected');
129 ! ($s->storage->_use_insert_returning xor $use_insert_returning),
130 'insert returning capability set correctly',
132 ok (!$s->storage->_dbh, 'still not connected (capability override works)');
135 ### connect, create postgres-specific test schema
137 $schema = DBICTest::Schema->connect($dsn, $user, $pass);
138 $schema->storage->ensure_connected;
140 drop_test_schema($schema);
141 create_test_schema($schema);
145 # run a BIG bunch of tests for last-insert-id / Auto-PK / sequence
147 run_apk_tests($schema); #< older set of auto-pk tests
148 run_extended_apk_tests($schema); #< new extended set of auto-pk tests
152 my $test_type_info = {
154 'data_type' => 'integer',
159 'data_type' => 'character varying',
162 'default_value' => undef,
165 'data_type' => 'integer',
168 'default_value' => 13,
172 'data_type' => 'character',
175 'default_value' => undef,
178 'data_type' => 'integer[]',
181 'default_value' => undef,
185 my $type_info = $schema->storage->columns_info_for('dbic_t_schema.artist');
186 my $artistid_defval = delete $type_info->{artistid}->{default_value};
187 like($artistid_defval,
188 qr/^nextval\('([^\.]*\.){0,1}artist_artistid_seq'::(?:text|regclass)\)/,
189 'columns_info_for - sequence matches Pg get_autoinc_seq expectations');
190 is_deeply($type_info, $test_type_info,
191 'columns_info_for - column data types');
199 package DBICTest::Schema::ArrayTest;
200 push @main::test_classes, __PACKAGE__;
204 use base 'DBICTest::BaseResult';
206 __PACKAGE__->table('dbic_t_schema.array_test');
207 __PACKAGE__->add_columns(qw/id arrayfield/);
208 __PACKAGE__->column_info_from_storage(1);
209 __PACKAGE__->set_primary_key('id');
213 skip "Need DBD::Pg 2.9.2 or newer for array tests", 4 if $DBD::Pg::VERSION < 2.009002;
215 my $arr_rs = $schema->resultset('ArrayTest');
219 arrayfield => [1, 2],
221 } 'inserting arrayref as pg array data';
225 arrayfield => [3, 4],
227 } 'updating arrayref as pg array data';
230 arrayfield => [5, 6],
234 $schema->populate('ArrayTest', [
238 } 'inserting arrayref using void ctx populate';
240 # Search using arrays
243 $arr_rs->search({ arrayfield => { -value => [3,4] } })->first->arrayfield,
245 'Array value matches'
247 } 'searching by arrayref';
251 $arr_rs->search({ arrayfield => { '=' => { -value => [3,4] }} })->first->arrayfield,
253 'Array value matches explicit equal'
255 } 'searching by arrayref (explicit equal sign)';
259 $arr_rs->search({ arrayfield => { '>' => { -value => [3,1] }} })->first->arrayfield,
261 'Array value matches greater than'
263 } 'searching by arrayref (greater than)';
267 $arr_rs->search({ arrayfield => { '>' => { -value => [3,7] }} })->count,
269 'Greater than search found [5,6]',
271 } 'searching by arrayref (greater than)';
276 $arr_rs->find({ arrayfield => { -value => [3,4] } })->arrayfield,
278 'Array value matches implicit equal'
280 } 'find by arrayref';
284 $arr_rs->find({ arrayfield => { '=' => { -value => [3,4] }} })->arrayfield,
286 'Array value matches explicit equal'
288 } 'find by arrayref (equal)';
290 # test inferred condition for creation
293 \[ '= ?' => [arrayfield => [3, 4]] ],
295 local $TODO = 'No introspection of complex conditions :(';
296 my $arr_rs_cond = $arr_rs->search({ arrayfield => $cond });
298 my $row = $arr_rs_cond->create({});
299 is_deeply ($row->arrayfield, [3,4], 'Array value taken from $rs condition');
300 $row->discard_changes;
301 is_deeply ($row->arrayfield, [3,4], 'Array value made it to storage');
305 ########## Case check
308 package DBICTest::Schema::Casecheck;
309 push @main::test_classes, __PACKAGE__;
313 use base 'DBIx::Class::Core';
315 __PACKAGE__->table('dbic_t_schema.casecheck');
316 __PACKAGE__->add_columns(qw/id name NAME uc_name/);
317 __PACKAGE__->column_info_from_storage(1);
318 __PACKAGE__->set_primary_key('id');
321 my $name_info = $schema->source('Casecheck')->column_info( 'name' );
322 is( $name_info->{size}, 1, "Case sensitive matching info for 'name'" );
324 my $NAME_info = $schema->source('Casecheck')->column_info( 'NAME' );
325 is( $NAME_info->{size}, 2, "Case sensitive matching info for 'NAME'" );
327 my $uc_name_info = $schema->source('Casecheck')->column_info( 'uc_name' );
328 is( $uc_name_info->{size}, 3, "Case insensitive matching info for 'uc_name'" );
331 ## Test ResultSet->update
332 my $artist = $schema->resultset('Artist')->first;
333 my $cds = $artist->cds_unordered->search({
334 year => { '!=' => 2010 }
335 }, { prefetch => 'liner_notes' });
336 lives_ok { $cds->update({ year => '2010' }) } 'Update on prefetched rs';
338 ## Test SELECT ... FOR UPDATE
341 if(eval { require Sys::SigAction }) {
342 Sys::SigAction->import( 'set_sig_handler' );
345 skip "Sys::SigAction is not available", 6;
348 my ($timed_out, $artist2);
352 # Make sure that an error was raised, and that the update failed
355 ok($timed_out, "update from second schema times out");
356 ok($artist2->is_column_changed('name'), "'name' column is still dirty from second schema");
360 # Make sure that an error was NOT raised, and that the update succeeded
363 ok(! $timed_out, "update from second schema DOES NOT timeout");
364 ok(! $artist2->is_column_changed('name'), "'name' column is NOT dirty from second schema");
368 # create a new schema
369 my $schema2 = DBICTest::Schema->connect($dsn, $user, $pass);
370 $schema2->source("Artist")->name("dbic_t_schema.artist");
372 $schema->txn_do( sub {
373 my $rs = $schema->resultset('Artist')->search(
377 $t->{update_lock} ? { for => 'update' } : {}
379 ok ($rs->count, 'Count works');
381 my $artist = $rs->next;
382 is($artist->artistid, 1, "select returns artistid = 1");
386 my $h = set_sig_handler( 'ALRM', sub { die "DBICTestTimeout" } );
388 $artist2 = $schema2->resultset('Artist')->find(1);
389 $artist2->name('fooey');
393 $timed_out = $@ =~ /DBICTestTimeout/;
401 ######## other older Auto-pk tests
403 $schema->source("SequenceTest")->name("dbic_t_schema.sequence_test");
405 my $st = $schema->resultset('SequenceTest')->create({ name => 'foo' });
406 is($st->pkid1, $_, "Auto-PK for sequence without default: First primary key");
407 is($st->pkid2, $_ + 9, "Auto-PK for sequence without default: Second primary key");
408 is($st->nonpkid, $_ + 19, "Auto-PK for sequence without default: Non-primary key");
410 my $st = $schema->resultset('SequenceTest')->create({ name => 'foo', pkid1 => 55 });
411 is($st->pkid1, 55, "Auto-PK for sequence without default: First primary key set manually");
414 ######## test non-serial auto-pk
416 if ($schema->storage->_use_insert_returning) {
417 $schema->source('TimestampPrimaryKey')->name('dbic_t_schema.timestamp_primary_key_test');
418 my $row = $schema->resultset('TimestampPrimaryKey')->create({});
422 ######## test with_deferred_fk_checks
424 $schema->source('CD')->name('dbic_t_schema.cd');
425 $schema->source('Track')->name('dbic_t_schema.track');
427 $schema->storage->with_deferred_fk_checks(sub {
428 $schema->resultset('Track')->create({
429 trackid => 999, cd => 999, position => 1, title => 'deferred FK track'
431 $schema->resultset('CD')->create({
432 artist => 1, cdid => 999, year => '2003', title => 'deferred FK cd'
435 } 'with_deferred_fk_checks code survived';
437 is eval { $schema->resultset('Track')->find(999)->title }, 'deferred FK track',
438 'code in with_deferred_fk_checks worked';
441 $schema->resultset('Track')->create({
442 trackid => 1, cd => 9999, position => 1, title => 'Track1'
444 } qr/constraint/i, 'with_deferred_fk_checks is off';
450 return unless $schema;
451 drop_test_schema($schema);
452 eapk_drop_all( $schema)
456 ######### SUBROUTINES
458 sub create_test_schema {
460 $schema->storage->dbh_do(sub {
461 my (undef,$dbh) = @_;
463 local $dbh->{Warn} = 0;
465 my $std_artist_table = <<EOS;
467 artistid serial PRIMARY KEY
469 , rank INTEGER NOT NULL DEFAULT '13'
471 , arrayfield INTEGER[]
475 $dbh->do("CREATE SCHEMA dbic_t_schema");
476 $dbh->do("CREATE TABLE dbic_t_schema.artist $std_artist_table");
479 CREATE TABLE dbic_t_schema.timestamp_primary_key_test (
480 id timestamp default current_timestamp
484 CREATE TABLE dbic_t_schema.cd (
485 cdid int PRIMARY KEY,
494 CREATE TABLE dbic_t_schema.track (
496 cd int REFERENCES dbic_t_schema.cd(cdid) DEFERRABLE,
499 last_updated_on date,
505 CREATE TABLE dbic_t_schema.sequence_test (
510 , CONSTRAINT pk PRIMARY KEY(pkid1, pkid2)
513 $dbh->do("CREATE SEQUENCE pkid1_seq START 1 MAXVALUE 999999 MINVALUE 0");
514 $dbh->do("CREATE SEQUENCE pkid2_seq START 10 MAXVALUE 999999 MINVALUE 0");
515 $dbh->do("CREATE SEQUENCE nonpkid_seq START 20 MAXVALUE 999999 MINVALUE 0");
517 CREATE TABLE dbic_t_schema.casecheck (
518 id serial PRIMARY KEY
521 , "UC_NAME" VARCHAR(3)
525 CREATE TABLE dbic_t_schema.array_test (
526 id serial PRIMARY KEY
527 , arrayfield INTEGER[]
530 $dbh->do("CREATE SCHEMA dbic_t_schema_2");
531 $dbh->do("CREATE TABLE dbic_t_schema_2.artist $std_artist_table");
532 $dbh->do("CREATE SCHEMA dbic_t_schema_3");
533 $dbh->do("CREATE TABLE dbic_t_schema_3.artist $std_artist_table");
534 $dbh->do('set search_path=dbic_t_schema,public');
535 $dbh->do("CREATE SCHEMA dbic_t_schema_4");
536 $dbh->do("CREATE SCHEMA dbic_t_schema_5");
538 CREATE TABLE dbic_t_schema_4.artist
540 artistid integer not null default nextval('artist_artistid_seq'::regclass) PRIMARY KEY
542 , rank INTEGER NOT NULL DEFAULT '13'
544 , arrayfield INTEGER[]
547 $dbh->do('set search_path=public,dbic_t_schema,dbic_t_schema_3');
548 $dbh->do('create sequence public.artist_artistid_seq'); #< in the public schema
550 CREATE TABLE dbic_t_schema_5.artist
552 artistid integer not null default nextval('public.artist_artistid_seq'::regclass) PRIMARY KEY
554 , rank INTEGER NOT NULL DEFAULT '13'
556 , arrayfield INTEGER[]
559 $dbh->do('set search_path=dbic_t_schema,public');
565 sub drop_test_schema {
566 my ( $schema, $warn_exceptions ) = @_;
568 $schema->storage->dbh_do(sub {
569 my (undef,$dbh) = @_;
571 local $dbh->{Warn} = 0;
574 'DROP SCHEMA dbic_t_schema_5 CASCADE',
575 'DROP SEQUENCE public.artist_artistid_seq CASCADE',
576 'DROP SCHEMA dbic_t_schema_4 CASCADE',
577 'DROP SCHEMA dbic_t_schema CASCADE',
578 'DROP SEQUENCE pkid1_seq CASCADE',
579 'DROP SEQUENCE pkid2_seq CASCADE',
580 'DROP SEQUENCE nonpkid_seq CASCADE',
581 'DROP SCHEMA dbic_t_schema_2 CASCADE',
582 'DROP SCHEMA dbic_t_schema_3 CASCADE',
584 eval { $dbh->do ($stat) };
585 diag $@ if $@ && $warn_exceptions;
591 ### auto-pk / last_insert_id / sequence discovery
595 # This is in Core now, but it's here just to test that it doesn't break
596 $schema->class('Artist')->load_components('PK::Auto');
597 cmp_ok( $schema->resultset('Artist')->count, '==', 0, 'this should start with an empty artist table');
599 # test that auto-pk also works with the defined search path by
600 # un-schema-qualifying the table name
601 apk_t_set($schema,'artist');
605 $unq_new = $schema->resultset('Artist')->create({ name => 'baz' });
606 } 'insert into unqualified, shadowed table succeeds';
608 is($unq_new && $unq_new->artistid, 1, "and got correct artistid");
610 my @test_schemas = ( [qw| dbic_t_schema_2 1 |],
611 [qw| dbic_t_schema_3 1 |],
612 [qw| dbic_t_schema_4 2 |],
613 [qw| dbic_t_schema_5 1 |],
615 foreach my $t ( @test_schemas ) {
616 my ($sch_name, $start_num) = @$t;
617 #test with dbic_t_schema_2
618 apk_t_set($schema,"$sch_name.artist");
621 $another_new = $schema->resultset('Artist')->create({ name => 'Tollbooth Willy'});
622 is( $another_new->artistid,$start_num, "got correct artistid for $sch_name")
623 or diag "USED SEQUENCE: ".($schema->source('Artist')->column_info('artistid')->{sequence} || '<none>');
624 } "$sch_name liid 1 did not die"
625 or diag "USED SEQUENCE: ".($schema->source('Artist')->column_info('artistid')->{sequence} || '<none>');
627 $another_new = $schema->resultset('Artist')->create({ name => 'Adam Sandler'});
628 is( $another_new->artistid,$start_num+1, "got correct artistid for $sch_name")
629 or diag "USED SEQUENCE: ".($schema->source('Artist')->column_info('artistid')->{sequence} || '<none>');
630 } "$sch_name liid 2 did not die"
631 or diag "USED SEQUENCE: ".($schema->source('Artist')->column_info('artistid')->{sequence} || '<none>');
636 apk_t_set($schema,'dbic_t_schema.artist');
637 my $new = $schema->resultset('Artist')->create({ name => 'foo' });
638 is($new->artistid, 4, "Auto-PK worked");
639 $new = $schema->resultset('Artist')->create({ name => 'bar' });
640 is($new->artistid, 5, "Auto-PK worked");
641 } 'old auto-pk tests did not die either';
644 # sets the artist table name and clears sequence name cache
647 $s->source("Artist")->name($n);
648 $s->source('Artist')->column_info('artistid')->{sequence} = undef; #< clear sequence name cache
652 ######## EXTENDED AUTO-PK TESTS
656 package DBICTest::Schema::ExtAPK;
657 push @main::test_classes, __PACKAGE__;
661 use base 'DBIx::Class::Core';
663 __PACKAGE__->table('apk');
665 @eapk_id_columns = qw( id1 id2 id3 id4 );
666 __PACKAGE__->add_columns(
667 map { $_ => { data_type => 'integer', is_auto_increment => 1 } }
671 __PACKAGE__->set_primary_key('id2'); #< note the SECOND column is
676 BEGIN{ @eapk_schemas = map "dbic_apk_$_", 0..5 }
677 my %seqs; #< hash of schema.table.col => currval of its (DBIC) primary key sequence
679 sub run_extended_apk_tests {
682 #save the search path and reset it at the end
683 my $search_path_save = eapk_get_search_path($schema);
685 eapk_drop_all($schema);
688 # make the test schemas and sequences
689 $schema->storage->dbh_do(sub {
690 my ( undef, $dbh ) = @_;
692 $dbh->do("CREATE SCHEMA $_")
695 $dbh->do("CREATE SEQUENCE $eapk_schemas[5].fooseq");
696 $dbh->do("SELECT setval('$eapk_schemas[5].fooseq',400)");
697 $seqs{"$eapk_schemas[1].apk.id2"} = 400;
699 $dbh->do("CREATE SEQUENCE $eapk_schemas[4].fooseq");
700 $dbh->do("SELECT setval('$eapk_schemas[4].fooseq',300)");
701 $seqs{"$eapk_schemas[3].apk.id2"} = 300;
703 $dbh->do("CREATE SEQUENCE $eapk_schemas[3].fooseq");
704 $dbh->do("SELECT setval('$eapk_schemas[3].fooseq',200)");
705 $seqs{"$eapk_schemas[4].apk.id2"} = 200;
707 $dbh->do("SET search_path = ".join ',', reverse @eapk_schemas );
710 # clear our search_path cache
711 $schema->storage->{_pg_search_path} = undef;
713 eapk_create( $schema,
714 with_search_path => [0,1],
716 eapk_create( $schema,
717 with_search_path => [1,0,'public'],
718 nextval => "$eapk_schemas[5].fooseq",
720 eapk_create( $schema,
721 with_search_path => ['public',0,1],
724 eapk_create( $schema,
725 with_search_path => [3,1,0,'public'],
726 nextval => "$eapk_schemas[4].fooseq",
728 eapk_create( $schema,
729 with_search_path => [3,1,0,'public'],
730 nextval => "$eapk_schemas[3].fooseq",
734 eapk_poke( $schema );
735 eapk_poke( $schema, 0 );
736 eapk_poke( $schema, 2 );
737 eapk_poke( $schema, 4 );
738 eapk_poke( $schema, 1 );
739 eapk_poke( $schema, 0 );
740 eapk_poke( $schema, 1 );
741 eapk_poke( $schema );
742 eapk_poke( $schema, 4 );
743 eapk_poke( $schema, 3 );
744 eapk_poke( $schema, 1 );
745 eapk_poke( $schema, 2 );
746 eapk_poke( $schema, 0 );
748 # set our search path back
749 eapk_set_search_path( $schema, @$search_path_save );
752 # do a DBIC create on the apk table in the given schema number (which is an
753 # index of @eapk_schemas)
756 my ($s, $schema_num) = @_;
758 my $schema_name = defined $schema_num
759 ? $eapk_schemas[$schema_num]
762 my $schema_name_actual = $schema_name || eapk_find_visible_schema($s);
764 $s->source('ExtAPK')->name($schema_name ? $schema_name.'.apk' : 'apk');
765 #< clear sequence name cache
766 $s->source('ExtAPK')->column_info($_)->{sequence} = undef
767 for @eapk_id_columns;
769 no warnings 'uninitialized';
772 for my $inc (1,2,3) {
773 $new = $schema->resultset('ExtAPK')->create({ id1 => 1});
774 my $proper_seqval = ++$seqs{"$schema_name_actual.apk.id2"};
775 is( $new->id2, $proper_seqval, "$schema_name_actual.apk.id2 correct inc $inc" )
776 or eapk_seq_diag($s,$schema_name);
777 $new->discard_changes;
779 for my $id ('id3','id4') {
780 my $proper_seqval = ++$seqs{"$schema_name_actual.apk.$id"};
781 is( $new->$id, $proper_seqval, "$schema_name_actual.apk.$id correct inc $inc" )
782 or eapk_seq_diag($s,$schema_name);
785 } "create in schema '$schema_name' lives"
786 or eapk_seq_diag($s,$schema_name);
789 # print diagnostic info on which sequences were found in the ExtAPK
793 my $schema = shift || eapk_find_visible_schema($s);
795 diag "$schema.apk sequences: ",
797 map "$_:".($s->source('ExtAPK')->column_info($_)->{sequence} || '<none>'),
802 # get the postgres search path as an arrayref
803 sub eapk_get_search_path {
805 # cache the search path as ['schema','schema',...] in the storage
808 return $s->storage->dbh_do(sub {
809 my (undef, $dbh) = @_;
811 my ($sp_string) = $dbh->selectrow_array('SHOW search_path');
812 while ( $sp_string =~ s/("[^"]+"|[^,]+),?// ) {
813 unless( defined $1 and length $1 ) {
814 die "search path sanity check failed: '$1'";
816 push @search_path, $1;
821 sub eapk_set_search_path {
823 my $sp = join ',',@sp;
824 $s->storage->dbh_do( sub { $_[1]->do("SET search_path = $sp") } );
827 # create the apk table in the given schema, can set whether the table name is qualified, what the nextval is for the second ID
829 my ($schema, %a) = @_;
831 $schema->storage->dbh_do(sub {
832 my (undef,$dbh) = @_;
835 if ( $a{with_search_path} ) {
836 ($searchpath_save) = $dbh->selectrow_array('SHOW search_path');
838 my $search_path = join ',',map {/\D/ ? $_ : $eapk_schemas[$_]} @{$a{with_search_path}};
840 $dbh->do("SET search_path = $search_path");
843 my $table_name = $a{qualify_table}
844 ? ($eapk_schemas[$a{qualify_table}] || die). ".apk"
846 local $_[1]->{Warn} = 0;
848 my $id_def = $a{nextval}
849 ? "integer not null default nextval('$a{nextval}'::regclass)"
852 CREATE TABLE $table_name (
855 , id3 serial primary key
860 if( $searchpath_save ) {
861 $dbh->do("SET search_path = $searchpath_save");
867 my ( $schema, $warn_exceptions ) = @_;
869 $schema->storage->dbh_do(sub {
870 my (undef,$dbh) = @_;
872 local $dbh->{Warn} = 0;
874 # drop the test schemas
875 for (@eapk_schemas ) {
876 eval{ $dbh->do("DROP SCHEMA $_ CASCADE") };
877 diag $@ if $@ && $warn_exceptions;
884 sub eapk_find_visible_schema {
888 $s->storage->dbh_do(sub {
889 $_[1]->selectrow_array(<<EOS);
891 FROM pg_catalog.pg_namespace n
892 JOIN pg_catalog.pg_class c ON c.relnamespace = n.oid
893 WHERE c.relname = 'apk'
894 AND pg_catalog.pg_table_is_visible(c.oid)