[PATCH] Improve autocompletion for SELECT statements

From: Wander Winkelhorst <w(dot)winkelhorst(at)gmail(dot)com>
To: pgadmin-hackers(at)postgresql(dot)org
Subject: [PATCH] Improve autocompletion for SELECT statements
Date: 2011-10-31 19:23:34
Message-ID: CAFv2D8so5hdLvdpM=wMs2jC3U_nEKC4ra_HevsPNq9kRhvA76g@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Hello,

A big part of my job is creating simple select statements with a few joins
in them. Unfortunately, the existing autocomplete functionality of pgadmin
was a bit too limited for my use case. A relatively simple query like:
select * from person p join company c on p.company_id = c.id where p.name =
'John' would be enough to completely throw the autocompletion off.

So I started working on a patch to improve the autocompletion a bit and the
result is attached. It doesn't have all the features I would like it to
have (no support for table aliases, for example) but it is already a big
improvement for my use case.

Please comment if I need to change anything to get this patch into pgadmin.

This patch is against pgadmin3-1.14.0.tar.gz

Regards,
Wander Winkelhorst.

Attachment Content-Type Size
autocomplete.patch text/x-patch 4.2 KB

Responses

Browse pgadmin-hackers by date

  From Date Subject
Next Message Vinicius Santos 2011-11-01 10:41:43 Re: Keywords in Uppercase
Previous Message Guillaume Lelarge 2011-10-28 20:11:56 Re: Bug: Constraint trigger editing