Remove some results from int4-not-representable.out

This is due to the changes made to int4.sql.

< SELECT dsqrt(float8 '64') AS eight;
<  eight
< -------
<      8
< (1 row)
<
< SELECT |/float8 '64' AS eight;
<  eight
< -------
<      8
< (1 row)
<
< SELECT ||/float8 '27' AS three;
<  three
< -------
<      3
< (1 row)
<
This commit is contained in:
Tatsuo Ishii 2000-03-26 02:25:34 +00:00
parent bccac99e97
commit 5363144d37
1 changed files with 0 additions and 18 deletions

View File

@ -295,21 +295,3 @@ SELECT (2 + 2) / 2 AS two;
2
(1 row)
SELECT dsqrt(float8 '64') AS eight;
eight
-------
8
(1 row)
SELECT |/float8 '64' AS eight;
eight
-------
8
(1 row)
SELECT ||/float8 '27' AS three;
three
-------
3
(1 row)