Re: Copy/Paste table(s) functions - git context patch

From: Guillaume Lelarge <guillaume(at)lelarge(dot)info>
To: Vladimir Kokovic <vladimir(dot)kokovic(at)gmail(dot)com>
Cc: pgadmin-hackers(at)postgresql(dot)org
Subject: Re: Copy/Paste table(s) functions - git context patch
Date: 2011-07-20 06:27:15
Message-ID: 1311143236.2057.3.camel@laptop
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

On Wed, 2011-07-20 at 06:11 +0200, Vladimir Kokovic wrote:
> Hi,
>
> I can not reproduce!
> For me it works successfully.
>
> 1. create schema vk1
> 2. CREATE TABLE vk1.t1 (c1 bigint);
> 3. create schema vk2
> 4. copy schema tables vk1
> 5. paste into vk2 -- OK
> 6. paste into vk1 -- OK
>

Because you didn't follow the right order:
1. create schema vk1
2. create table vk1.t1 (c1 bigint)
3. copy schema vk1
4. create schema vk2
5. paste into vk2 .. crashes

It also crashes if I copy only one table instead of a complete schema.

--
Guillaume
http://blog.guillaume.lelarge.info
http://www.dalibo.com

In response to

Responses

Browse pgadmin-hackers by date

  From Date Subject
Next Message Thom Brown 2011-07-20 09:56:54 Re: Altering column collation
Previous Message Vladimir Kokovic 2011-07-20 04:11:28 Re: Copy/Paste table(s) functions - git context patch