pgsql: psql backward compatibility fix For servers older than 8.3, sort

From: petere(at)postgresql(dot)org (Peter Eisentraut)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: psql backward compatibility fix For servers older than 8.3, sort
Date: 2009-07-07 20:32:20
Message-ID: 20090707203220.B399175331E@cvs.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
psql backward compatibility fix

For servers older than 8.3, sort display of child tables by relname instead
of oid::regclass::text, because the cast from regclass to text did not work
back then. The older display may be slightly worse when different schemas
are involved, but that should be rare enough.

Modified Files:
--------------
pgsql/src/bin/psql:
describe.c (r1.222 -> r1.223)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/describe.c?r1=1.222&r2=1.223)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2009-07-07 21:45:05 pgsql: Just a little more schema-qualification ...
Previous Message Tom Lane 2009-07-07 19:28:56 pgsql: Don't use 'return' where you should use 'PG_RETURN_xxx'.