Re: Changed default ordering in tables - Mailing list pgadmin-hackers

From Dave Page
Subject Re: Changed default ordering in tables
Date
Msg-id CA+OCxoycSc5zvOLXHAnG=OWn3Y0NdrzSjv_8GgRCBGTEp121dQ@mail.gmail.com
Whole thread Raw
In response to Changed default ordering in tables  (Erwin Brandstetter <brandstetter@falter.at>)
Responses Re: Changed default ordering in tables  (Erwin Brandstetter <brandstetter@falter.at>)
List pgadmin-hackers
Hi Erwin

On Tue, Jul 26, 2011 at 4:47 PM, Erwin Brandstetter
<brandstetter@falter.at> wrote:
> Aloha!
>
> In  v1.14 tables are opened with ORDER BY $pkey DESC.
> I wonder if descending order ist intended. It used to be the other way round
> and, as far as I am concerned, that was just fine in most cases.
> We have the new feature "View Data" .. "View top / last 100 rows" anyway. No
> need to change the default behavior?

The default is determined like this:

       orderBy = table->GetQuotedPrimaryKey();
       if (orderBy.IsEmpty() && hasOids)
            orderBy = wxT("oid");
       if (!orderBy.IsEmpty())
      {
           if (pkAscending)
                orderBy += wxT(" ASC");
           else
              orderBy += wxT(" DESC");
      }

Essentially, we try to follow the ordering in the index.

--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

pgadmin-hackers by date:

Previous
From: Erwin Brandstetter
Date:
Subject: Changed default ordering in tables
Next
From: Erwin Brandstetter
Date:
Subject: Re: Changed default ordering in tables