1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Change ORDER BY to get consistant results with new sorting routines.

This commit is contained in:
Thomas G. Lockhart
1997-09-20 16:34:08 +00:00
parent d8ec518000
commit 8bb569105a
3 changed files with 4 additions and 4 deletions

View File

@ -144,5 +144,5 @@ SELECT '' AS two, circle(f1)
SELECT '' AS twentyfour, c1.f1 AS circle, p1.f1 AS point, (p1.f1 <-> c1.f1) AS distance
FROM CIRCLE_TBL c1, POINT_TBL p1
WHERE (p1.f1 <-> c1.f1) > 0
ORDER BY distance, circle;
ORDER BY distance, circle, point using <<;