Re: BUG #13800: There is no UNLOAD command

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: dmigowski(at)ikoffice(dot)de
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: BUG #13800: There is no UNLOAD command
Date: 2015-12-06 15:57:34
Message-ID: 10003.1449417454@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

dmigowski(at)ikoffice(dot)de writes:
> While creating extensions in C it is very cumbersome to disconnect, restart,
> connect everytime I recompile my C stuff.

Why would you need to restart? Just starting a fresh connection ought to
be enough.

There's pretty much no chance UNLOAD will ever happen, so don't hold your
breath waiting. We lack any defined method, for example, for extensions
to disconnect from function hooks once they've inserted something in them.
(Reversing what was done at LOAD time wouldn't work, since it'd break any
subsequent attachments to the same hook.) Custom GUCs would be another
big problem to reverse out, and if I'd consumed any caffeine yet today
I could probably name several other trouble spots. It's not insoluble,
perhaps, but the amount of work required seems far out of proportion to
the benefits.

regards, tom lane

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message pravincar 2015-12-06 16:19:54 BUG #13801: Error while starting psql
Previous Message dmigowski 2015-12-06 12:49:41 BUG #13800: There is no UNLOAD command