Re: little patch for "Detect serial columns from pg_depend" and bugfix

From: Quan Zongliang <quanzongliang(at)gmail(dot)com>
To: Dave Page <dpage(at)pgadmin(dot)org>
Cc: pgadmin-hackers <pgadmin-hackers(at)postgresql(dot)org>
Subject: Re: little patch for "Detect serial columns from pg_depend" and bugfix
Date: 2012-09-05 02:39:53
Message-ID: 5046BB79.2010102@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

On 2012/9/4 19:02, Dave Page wrote:
> Hi
>
> On Tue, Sep 4, 2012 at 5:03 AM, Quan Zongliang <quanzongliang(at)gmail(dot)com> wrote:
>> Hi,
>>
>> Please find the attachments.
>>
>> pgColumn.patch:
>>
>> Detect serial columns from pg_depend, not column default (observe deviating
>> serial name)
> This patch does not apply:
>
> raptor:pgAdmin3 dpage$ git apply ~/Downloads/pgColumn.patch
> /Users/dpage/Downloads/pgColumn.patch:13: trailing whitespace.
> pgSet *set = ExecuteSet(
> /Users/dpage/Downloads/pgColumn.patch:14: trailing whitespace.
> wxT("SELECT classid\n")
> /Users/dpage/Downloads/pgColumn.patch:15: trailing whitespace.
> wxT(" FROM pg_depend\n")
> /Users/dpage/Downloads/pgColumn.patch:16: trailing whitespace.
> wxT(" WHERE refobjid=") + table->GetOidStr() +
> /Users/dpage/Downloads/pgColumn.patch:17: trailing whitespace.
> wxT(" AND refobjsubid = ") + NumToStr(GetColNumber()) +
> error: patch failed: pgadmin/schema/pgColumn.cpp:338
> error: pgadmin/schema/pgColumn.cpp: patch does not apply
new patch attched.
I tested it under Cygwin, seems OK.

>> pgSequence.patch:
>>
>> bugfix, in SQL pane of the sequence, the script is
>>
>> CREATE SEQUENCE xxx
>> ...;
>> ALTER TABLE ...
> That syntax is intentional - it's required with 8.3 and earlier, which
> don't support ALTER SEQUENCE ... OWNER. I suppose we could make it
> version dependent, but we don't normally both with multiple versions
> of the same command unless required.
>

Attachment Content-Type Size
pgColumn.diff text/plain 1.3 KB

In response to

Responses

Browse pgadmin-hackers by date

  From Date Subject
Next Message Dave Page 2012-09-05 07:25:18 Re: pgAdmin III commit: Lots of work on domains, and check constraints
Previous Message Quan Zongliang 2012-09-05 02:11:39 Re: patch for "Sequence: calculate next value to be expected"