Browse Source

Manipulate only those sequences in the current PostgreSQL schema

microsub
J. King 6 years ago
parent
commit
e68fcc0afa
  1. 3
      tests/cases/Db/PostgreSQL/TestDatabase.php

3
tests/cases/Db/PostgreSQL/TestDatabase.php

@ -25,7 +25,8 @@ class TestDatabase extends \JKingWeb\Arsse\TestCase\Database\Base {
table_name as table,
column_name as col
from information_schema.columns
where table_name like 'arsse_%'
where table_schema = current_schema()
and table_name like 'arsse_%'
and column_default like 'nextval(%'
";
foreach(static::$drv->query($seqList) as $r) {

Loading…
Cancel
Save