1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-06 18:42:54 +03:00

Avoid locale dependency in expected output.

We'll have to settle for just listing the extensions' data types,
since function arguments seem to sort differently in different locales.
Per buildfarm results.
This commit is contained in:
Tom Lane
2011-08-24 13:47:01 -04:00
parent e851332876
commit 867c20c072
2 changed files with 0 additions and 190 deletions

View File

@@ -305,8 +305,6 @@ SELECT abs(cube_distance(ll_to_earth(-30,-90), '(0)'::cube) / earth() - 1) <
-- list what's installed
\dT
\df
\do
drop extension cube; -- fail, earthdistance requires it
@@ -316,8 +314,6 @@ drop type cube; -- fail, extension cube requires it
-- list what's installed
\dT
\df
\do
create table foo (f1 cube, f2 int);
@@ -341,8 +337,6 @@ create extension cube with schema c;
\df public.*
\do public.*
\dT c.*
\df c.*
\do c.*
create table foo (f1 c.cube, f2 int);