diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-08-23 15:10:17 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-08-23 15:10:17 +0000 |
commit | 119fd7956a3260e6347c75968fbabb74d00cf14f (patch) | |
tree | 2b824817ee272fa5c327d8fd2e16dd8c50950039 | |
parent | 07f6c02eac2d4606a13566fca455f88dcc545de6 (diff) | |
download | postgresql-119fd7956a3260e6347c75968fbabb74d00cf14f.tar.gz postgresql-119fd7956a3260e6347c75968fbabb74d00cf14f.zip |
Remove test of 'inf' since it introduces a platform dependency (some
Unixen spell it 'Inf'). Not worth adding multiple expected files and
a resultmap just for this.
-rw-r--r-- | contrib/cube/expected/cube.out | 12 | ||||
-rw-r--r-- | contrib/cube/sql/cube.sql | 2 |
2 files changed, 0 insertions, 14 deletions
diff --git a/contrib/cube/expected/cube.out b/contrib/cube/expected/cube.out index fae662547d9..ed94a25b44c 100644 --- a/contrib/cube/expected/cube.out +++ b/contrib/cube/expected/cube.out @@ -127,18 +127,6 @@ SELECT '-1.0e-7'::cube AS cube; (-1e-07) (1 row) -SELECT '1e700'::cube AS cube; - cube -------- - (inf) -(1 row) - -SELECT '-1e700'::cube AS cube; - cube --------- - (-inf) -(1 row) - SELECT '1e-700'::cube AS cube; cube ------ diff --git a/contrib/cube/sql/cube.sql b/contrib/cube/sql/cube.sql index 70feb8a217a..0e0de38bc4c 100644 --- a/contrib/cube/sql/cube.sql +++ b/contrib/cube/sql/cube.sql @@ -35,8 +35,6 @@ SELECT '1e-7'::cube AS cube; SELECT '-1e-7'::cube AS cube; SELECT '1.0e-7'::cube AS cube; SELECT '-1.0e-7'::cube AS cube; -SELECT '1e700'::cube AS cube; -SELECT '-1e700'::cube AS cube; SELECT '1e-700'::cube AS cube; SELECT '-1e-700'::cube AS cube; |