Commit 0bf08994 authored by Robert Haas's avatar Robert Haas

Remove a few of the new DROP-IF-EXISTS regression tests.

Commit 3301c835 broke the build farm.
Let's try to fix that.
parent 82a4a777
...@@ -86,12 +86,8 @@ NOTICE: role "tg2" does not exist, skipping ...@@ -86,12 +86,8 @@ NOTICE: role "tg2" does not exist, skipping
DROP GROUP tg1; DROP GROUP tg1;
ERROR: role "tg1" does not exist ERROR: role "tg1" does not exist
-- collation -- collation
DROP COLLATION test_collation_exists;
ERROR: collation "test_collation_exists" for encoding "UTF8" does not exist
DROP COLLATION IF EXISTS test_collation_exists; DROP COLLATION IF EXISTS test_collation_exists;
NOTICE: collation "test_collation_exists" does not exist, skipping NOTICE: collation "test_collation_exists" does not exist, skipping
CREATE COLLATION test_collation_exists FROM "POSIX";
DROP COLLATION test_collation_exists;
-- conversion -- conversion
DROP CONVERSION test_conversion_exists; DROP CONVERSION test_conversion_exists;
ERROR: conversion "test_conversion_exists" does not exist ERROR: conversion "test_conversion_exists" does not exist
......
...@@ -109,10 +109,7 @@ DROP GROUP IF EXISTS tg1, tg2; ...@@ -109,10 +109,7 @@ DROP GROUP IF EXISTS tg1, tg2;
DROP GROUP tg1; DROP GROUP tg1;
-- collation -- collation
DROP COLLATION test_collation_exists;
DROP COLLATION IF EXISTS test_collation_exists; DROP COLLATION IF EXISTS test_collation_exists;
CREATE COLLATION test_collation_exists FROM "POSIX";
DROP COLLATION test_collation_exists;
-- conversion -- conversion
DROP CONVERSION test_conversion_exists; DROP CONVERSION test_conversion_exists;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment