Re: Changed default ordering in tables

Поиск
Список
Период
Сортировка
От Dave Page
Тема Re: Changed default ordering in tables
Дата
Msg-id CA+OCxoycSc5zvOLXHAnG=OWn3Y0NdrzSjv_8GgRCBGTEp121dQ@mail.gmail.com
обсуждение исходный текст
Ответ на Changed default ordering in tables  (Erwin Brandstetter <brandstetter@falter.at>)
Ответы Re: Changed default ordering in tables
Список 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 по дате отправления:

Предыдущее
От: Erwin Brandstetter
Дата:
Сообщение: Changed default ordering in tables
Следующее
От: Erwin Brandstetter
Дата:
Сообщение: Re: Changed default ordering in tables