From: | 夏高 <xiagao1982(at)gmail(dot)com> |
---|---|
To: | pgsql-general(at)postgresql(dot)org |
Subject: | Test for char errors |
Date: | 2015-06-17 08:15:43 |
Message-ID: | CAC3-kqY0qbJziaQ7CWVUjhmfckuPzi2NdVJ1eCg9sneyqfu5ew@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
I downloaded psotgresql-9.4.4 source code and build it on Centos 6.5 x64
edition. Then I run 'make test' and it reported that 'All 145 tests
passed'. But the expected output and actual output of test 'char' are not
same.
The expected output of in 'src/test/regress/expected/char.out' is:
SELECT '' AS five, c.*
FROM CHAR_TBL c
WHERE c.f1 < 'a';
five | f1
------+----
| A
| 1
| 2
| 3
|
(5 rows)
But the actual output in 'src/test/regress/results/char.out' is:
SELECT '' AS five, c.*
FROM CHAR_TBL c
WHERE c.f1 < 'a';
five | f1
------+----
| 1
| 2
| 3
|
(4 rows)
I don't know why the files are not the same but tests all passed. Helps are
appreciated, thanks!
From | Date | Subject | |
---|---|---|---|
Next Message | Michael Paquier | 2015-06-17 08:27:21 | Re: Test for char errors |
Previous Message | Xavier 12 | 2015-06-17 07:23:58 | Re: pg_xlog on a hot_stanby slave |