Re: pg_dump and DEFAULT column values

Поиск
Список
Период
Сортировка
От Eric Ridge
Тема Re: pg_dump and DEFAULT column values
Дата
Msg-id D3ADE25911614840BC69C72E3171E4ED028133@tcdiexch.tcdi.com
обсуждение исходный текст
Ответ на pg_dump and DEFAULT column values  ("Eric Ridge" <ebr@tcdi.com>)
Ответы Re: pg_dump and DEFAULT column values  ("Peter Darley" <pdarley@Kinesis-CEM.com>)
Список pgsql-general
> But if you allow applications to change the field, then all bets about
> sort order are off anyway, no?  It's far from clear exactly what
> semantics you think you are guaranteeing here.

The only thing I'm trying to guarantee is that new records appear last
(or first, depending on sort direction).  Once the user "physically"
re-sorts the records (by changing the value of this field) then I don't
care what the old values are.  Only that new records are greater than
the last existing value.

> In any case it seems like changing the initially-assigned field value
> is an infrequent operation, and that you ought to make *that* be the
> expensive and not-safe-for-parallelism case, not row insertion.

About as frequent as insertions.  As records are added, they're manually
sorted.  So every INSERT (eventually) causes a manual UPDATE for all
records.

In most cases I know before I do the INSERT, how the record needs to be
sorted, so I can set the this value accordingly.  But other cases
involve a bulk insert process, and a manual resorting process.

> (Perhaps this is a wrong assumption on my part, in which case ignore
> what follows.)  I'd still be inclined to use a sequence for insertion,
> and to enforce consistency on update with an AFTER UPDATE trigger that
> does something like
>     if old.fld != new.fld then
>         begin
>         lock mytable;
>         select setval('seq', max(fld)) from table;
>         end;
> (Untested, but I hope the idea is clear.)

Very clear.  However, this table is going to receive many UPDATEs that
aren't related to this sorting field.  Would the overall overhead of
executing the trigger on every UPDATE outweigh the overhead of doing it
on BEFORE INSERT:

   begin
   if NEW.fld is null then -- user didn't specify a value
      lock mytable;
      NEW.fld := select max(fld)+1 from table;
   end;

I guess it depends on the frequency of updates v/s the frequency of
inserts.  I'm not sure, at this point, which will be greater.

eric

В списке pgsql-general по дате отправления:

Предыдущее
От: GB Clark II
Дата:
Сообщение: Re: small problem updating to 7.2...
Следующее
От: "Rich Ryan"
Дата:
Сообщение: pg_dump usage - problems with restore due to the use of tab delimiters