mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-12 17:37:07 +08:00
Remove useless whitespace at end of lines
This commit is contained in:
@ -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
|
||||
|
||||
Reference in New Issue
Block a user