]> granicus.if.org Git - postgresql/commitdiff
Remove regression test added on auto-pilot.
authorRobert Haas <rhaas@postgresql.org>
Tue, 14 Jul 2015 20:19:44 +0000 (16:19 -0400)
committerRobert Haas <rhaas@postgresql.org>
Tue, 14 Jul 2015 20:26:12 +0000 (16:26 -0400)
Test does not match the comment which precedes it.

Peter Geoghegan

src/test/regress/expected/insert_conflict.out
src/test/regress/sql/insert_conflict.sql

index eca9690592db1343877ebce39b74b9e66fa7d0cf..325e88b572f0e67899b430af3391e75bcd586f14 100644 (file)
@@ -245,7 +245,6 @@ ERROR:  there is no unique or exclusion constraint matching the ON CONFLICT spec
 insert into insertconflicttest values (6, 'Passionfruit') on conflict (lower(fruit)) do update set fruit = excluded.fruit;
 ERROR:  there is no unique or exclusion constraint matching the ON CONFLICT specification
 -- Check the target relation can be aliased
-insert into insertconflicttest values (6, 'Passionfruits') on conflict (key) do update set fruit = excluded.fruit;
 insert into insertconflicttest AS ict values (6, 'Passionfruit') on conflict (key) do update set fruit = excluded.fruit; -- ok, no reference to target table
 insert into insertconflicttest AS ict values (6, 'Passionfruit') on conflict (key) do update set fruit = ict.fruit; -- ok, alias
 insert into insertconflicttest AS ict values (6, 'Passionfruit') on conflict (key) do update set fruit = insertconflicttest.fruit; -- error, references aliased away name
index a0bdd7f536ee9a1a2d98ce5b88a1f9e6e20ff14d..7dd503221283995f676e5d751edaa130a160f2ac 100644 (file)
@@ -102,7 +102,6 @@ insert into insertconflicttest values (5, 'Lemon') on conflict (fruit) do update
 insert into insertconflicttest values (6, 'Passionfruit') on conflict (lower(fruit)) do update set fruit = excluded.fruit;
 
 -- Check the target relation can be aliased
-insert into insertconflicttest values (6, 'Passionfruits') on conflict (key) do update set fruit = excluded.fruit;
 insert into insertconflicttest AS ict values (6, 'Passionfruit') on conflict (key) do update set fruit = excluded.fruit; -- ok, no reference to target table
 insert into insertconflicttest AS ict values (6, 'Passionfruit') on conflict (key) do update set fruit = ict.fruit; -- ok, alias
 insert into insertconflicttest AS ict values (6, 'Passionfruit') on conflict (key) do update set fruit = insertconflicttest.fruit; -- error, references aliased away name