summaryrefslogtreecommitdiff
path: root/src/test/regress/sql/float4.sql
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/regress/sql/float4.sql')
-rw-r--r--src/test/regress/sql/float4.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/sql/float4.sql b/src/test/regress/sql/float4.sql
index 4ce6d9ea6e..3b363f9463 100644
--- a/src/test/regress/sql/float4.sql
+++ b/src/test/regress/sql/float4.sql
@@ -10,7 +10,7 @@ INSERT INTO FLOAT4_TBL(f1) VALUES (' -34.84 ');
INSERT INTO FLOAT4_TBL(f1) VALUES ('1.2345678901234e+20');
INSERT INTO FLOAT4_TBL(f1) VALUES ('1.2345678901234e-20');
--- test for over and under flow
+-- test for over and under flow
INSERT INTO FLOAT4_TBL(f1) VALUES ('10e70');
INSERT INTO FLOAT4_TBL(f1) VALUES ('-10e70');
INSERT INTO FLOAT4_TBL(f1) VALUES ('10e-70');
@@ -73,7 +73,7 @@ SELECT '' AS bad, f.f1 / '0.0' from FLOAT4_TBL f;
SELECT '' AS five, * FROM FLOAT4_TBL;
--- test the unary float4abs operator
+-- test the unary float4abs operator
SELECT '' AS five, f.f1, @f.f1 AS abs_f1 FROM FLOAT4_TBL f;
UPDATE FLOAT4_TBL