Re: [HACKERS] [BUGS] COPY .... (FORMAT binary) syntax doesn't work

2013-05-28 Thread Robert Haas
error at or near cross LINE 1: create user cross; ^ If we don't have to treat type_func_name_keywords as reserved in these situations, shouldn't we avoid doing so? I am almost always in favor of making more things less reserved, so +1 from me. -- Robert Haas EnterpriseDB

Re: [BUGS] BUG #8167: false EINVAL -22 for opening a file

2013-05-16 Thread Robert Haas
to include save/restore errno. Or else rip that stuff out entirely --- I've sure never built this code with FDDEBUG set, has anyone else? Not me. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs

Re: [BUGS] PITR potentially broken in 9.2

2012-12-05 Thread Robert Haas
instructions even under the best of circumstances, but is that really material here? I'm just wondering whether this is premature optimization that's going to potentially bite us later in the form of subtle, hard-to-reproduce bugs. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise

Re: [BUGS] BUG #7521: Cannot disable WAL log while using pg_dump

2012-10-19 Thread Robert Haas
and try to reproduce this with wal_debug = on. Then we will find out what WAL records are being emitted, which will presumably give us a clue as to what is really happening here. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs

Re: [HACKERS] [BUGS] BUG #7534: walreceiver takes long time to detect n/w breakdown

2012-10-09 Thread Robert Haas
receiving keepalives from the master and terminate the connection? I thought I had tested this at some point and it was working, so either it's subsequently gotten broken again or the scenario you're talking about is different in some way that I don't currently understand. -- Robert Haas

Re: [BUGS] BUG #7534: walreceiver takes long time to detect n/w breakdown

2012-10-08 Thread Robert Haas
break here. I don't know what else to call the new GUC (replication_server_timeout?) but I'm not excited about breaking existing conf files, nor do I particularly like the proposed new names. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via

Re: [BUGS] BUG #7534: walreceiver takes long time to detect n/w breakdown

2012-10-01 Thread Robert Haas
-friendly. I'd rather not copy that same design to this walreceiver timeout. If there's two different timeouts like that, it's even worse, because it's easy to confuse the two. I agree, but also note that wal_receiver_status_interval serves another user-visible purpose as well. -- Robert Haas

Re: [BUGS] Re: Probable bug with CreateFakeRelcacheEntry (now with reproducible test case)

2012-09-14 Thread Robert Haas
On Thu, Sep 13, 2012 at 1:45 PM, Jeff Davis pg...@j-davis.com wrote: On Thu, 2012-09-13 at 12:39 -0400, Robert Haas wrote: On Wed, Sep 12, 2012 at 7:19 PM, Jeff Davis pg...@j-davis.com wrote: This bug seems particularly troublesome because the right fix would be to include the relpersistence

Re: [BUGS] Re: Probable bug with CreateFakeRelcacheEntry (now with reproducible test case)

2012-09-13 Thread Robert Haas
, then by definition the table is RELPERSISTENCE_PERMANENT. So there's probably a localized fix. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http

Re: [BUGS] BUG #4958: Stats collector hung on WaitForMultipleObjectsEx while attempting to recv a datagram

2012-09-06 Thread Robert Haas
whether we've narrowed the scope of the problem without eliminating it, or whether that fix just didn't help at all. But they still can't reproduce it on 9.2. This suggests that there's some other difference between 9.1 and 9.2 that is relevant here, but I'm not sure what. Any ideas? -- Robert

Re: [BUGS] [ADMIN] Repeatable crash in pg_dump (with -d2 info)

2012-09-06 Thread Robert Haas
not impossible to do; it's just a bunch of work that nobody's gotten excited about doing yet. We've fixed similar issues in many other cases, IIUC. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs

Re: [BUGS] BUG #6412: psql fe-connect truncate passwords

2012-09-06 Thread Robert Haas
to reject it. I think it needs some fixes, though, so a formal review process is called for. +1. I added it. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your

Re: [BUGS] Minor inheritance/check bug: Inconsistent behavior

2012-09-06 Thread Robert Haas
filled in heap_update much later. So now should the fix be that it returns an error for system column reference except for OID case? +1. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org

Re: [BUGS] BUG #7514: postgres -k no longer works with spaces in the path

2012-09-06 Thread Robert Haas
whitespace. I submit that all of those cases are pretty uncommon, especially compared to embedded space. That seems reasonable. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make

Re: [BUGS] BUG #7521: Cannot disable WAL log while using pg_dump

2012-09-06 Thread Robert Haas
WAL logging while running pg_dump. pg_dump doesn't modify any data, so I don't see how it could be causing WAL logs to get generated. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org

Re: [BUGS] BUG #7521: Cannot disable WAL log while using pg_dump

2012-09-06 Thread Robert Haas
On Thu, Sep 6, 2012 at 3:55 PM, Tom Lane t...@sss.pgh.pa.us wrote: Robert Haas robertmh...@gmail.com writes: On Wed, Sep 5, 2012 at 9:57 AM, b...@atsc.nl wrote: So it would be nice if there is an option to disable WAL logging while running pg_dump. pg_dump doesn't modify any data, so I

Re: [BUGS] BUG #7521: Cannot disable WAL log while using pg_dump

2012-09-06 Thread Robert Haas
On Thu, Sep 6, 2012 at 4:08 PM, Heikki Linnakangas hlinn...@iki.fi wrote: On 06.09.2012 13:07, Robert Haas wrote: pg_dump doesn't modify any data, so I don't see how it could be causing WAL logs to get generated. Doesn't hint-bit setting cause WAL traffic these days? I sure as heck don't

Re: [BUGS] BUG #7521: Cannot disable WAL log while using pg_dump

2012-09-06 Thread Robert Haas
On Thu, Sep 6, 2012 at 4:23 PM, Tom Lane t...@sss.pgh.pa.us wrote: Heikki Linnakangas hlinn...@iki.fi writes: On 06.09.2012 13:07, Robert Haas wrote: On Thu, Sep 6, 2012 at 3:55 PM, Tom Lanet...@sss.pgh.pa.us wrote: Doesn't hint-bit setting cause WAL traffic these days? I sure as heck don't

Re: [BUGS] BUG #7521: Cannot disable WAL log while using pg_dump

2012-09-06 Thread Robert Haas
patch would have that effect, but currently no. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs

Re: [BUGS] Minor inheritance/check bug: Inconsistent behavior

2012-08-27 Thread Robert Haas
chuck an error? -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs

Re: [BUGS] BUG #4958: Stats collector hung on WaitForMultipleObjectsEx while attempting to recv a datagram

2012-08-24 Thread Robert Haas
On Wed, Aug 22, 2012 at 10:24 PM, Tom Lane t...@sss.pgh.pa.us wrote: Robert Haas robertmh...@gmail.com writes: On Tue, Aug 21, 2012 at 4:30 PM, Tom Lane t...@sss.pgh.pa.us wrote: Meanwhile, back at the ranch: I'm fine with applying that patch now that it's had some field testing. Attached

Re: [BUGS] BUG #4958: Stats collector hung on WaitForMultipleObjectsEx while attempting to recv a datagram

2012-08-21 Thread Robert Haas
On Tue, Aug 7, 2012 at 2:22 PM, Tom Lane t...@sss.pgh.pa.us wrote: Robert Haas robertmh...@gmail.com writes: We just had a customer hit a very similar problem on 9.1.3, running on Windows Server 2008 SP2. ... The customer finds that they can reproduce this on a variety of systems under heavy

Re: [BUGS] BUG #4958: Stats collector hung on WaitForMultipleObjectsEx while attempting to recv a datagram

2012-08-21 Thread Robert Haas
to me how to handle the ereport/elog calls. What to do pre-9.1 is a bit less clear to me, as the latch machinery doesn't exist at all in those versions. Some of the fixes can probably still be pulled out and applied, though. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise

Re: [BUGS] BUG #6739: PGAdmin 3 Should allow to select multiple tables in the left tree

2012-08-07 Thread Robert Haas
to perform actions on more than one table). I think that you're talking about a problem with PgAdmin rather than PostgreSQL itself, so please report your bug here: http://www.pgadmin.org/support/list.php http://archives.postgresql.org/pgadmin-support/ -- Robert Haas EnterpriseDB: http

Re: [BUGS] event triggers patch breaks with -DCLOBBER_CACHE_ALWAYS

2012-08-07 Thread Robert Haas
ideas? While looking at it, I observe that no context is passed to hash_create(), and no hash_destroy() is called. Unless I'm missing something, that's a leak in TopMemoryContext. I've pushed a fix for this; thanks for catching it. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com

Re: [BUGS] BUG #6706: pg_upgrade fails when plpgsql dropped/re-created

2012-07-06 Thread Robert Haas
not guarantee to restore plpgsql to the state it was in, just to restore it to existence. But previous complaints about similar issues have fallen on deaf ears (see bug #5184). Perhaps Tom has had a change of heart, but if so we have a few things to fix, not just this one. -- Robert Haas EnterpriseDB

Re: [BUGS] BUG #6650: CPU system time utilization rising few times a day

2012-06-08 Thread Robert Haas
On Fri, Jun 1, 2012 at 2:17 AM, Andrzej Krawiec a.kraw...@focustelecom.pl wrote: 2012/5/31 Robert Haas robertmh...@gmail.com: How long was strace -s run for to generate this? Strace - s was running for about 2 minutes. Hmm, I'm sort of confused then. This only shows a total of 1.815816

Re: [BUGS] BUG #6666: pg_upgrade 9.2beta1 plpython/plpython2

2012-06-08 Thread Robert Haas
of things based on a single report. Three is a lot. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs

Re: [BUGS] BUG #6659: Error when install postgres

2012-06-08 Thread Robert Haas
errors at all in the logs... there's no indication that anything actually failed. /me scratches head... -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription

Re: [BUGS] BUG #6670: Translate small SQL from 8.0 ti 7.3

2012-06-08 Thread Robert Haas
is not supported (nor is 8.0). But you could try asking on pgsql-general. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org

Re: [BUGS] control character check in JSON type seems broken

2012-06-08 Thread Robert Haas
why I thought errdetail_internal was a good idea. Should we just change all those to errdetail? -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http

Re: [BUGS] error connecting to postgresql by pgadmin

2012-06-08 Thread Robert Haas
connections on port 5432? I'd check the PostgreSQL log files, if any, and the Windows event log for errors. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your

Re: [BUGS] BUG #6650: CPU system time utilization rising few times a day

2012-05-31 Thread Robert Haas
this http://postgresql.1045698.n5.nabble.com/high-CPU-usage-for-stats-collector-in-8-2-td1962590.html affect our environment? Not sure, but that's a much older version of PostgreSQL than the one you're running, and I think there may have been some improvements meanwhile. -- Robert Haas EnterpriseDB

Re: [BUGS] BUG #6659: Error when install postgres

2012-05-31 Thread Robert Haas
have had more complaints, so there must be something different about your system, but I don't know what it is. Did it leave behind any useful logfiles, maybe in your temp directory? -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs

Re: [BUGS] BUG #6641: uuid.h warning during configure

2012-05-31 Thread Robert Haas
-9.2beta1/src/include/utils/uuid.h best regards, chris -- chris ruprecht database grunt and bit pusher extraordinaíre On May 22, 2012, at 15:58 , Robert Haas wrote: On Tue, May 15, 2012 at 7:28 PM,  ch...@cdrbill.com wrote: The following bug has been logged on the website: Bug reference

Re: [BUGS] BUG #6667: diplom on english language on your site

2012-05-30 Thread Robert Haas
know what a diplom is. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs

Re: [BUGS] pg_dump: SQL command failed

2012-05-29 Thread Robert Haas
in pg_dump no matter what I try. Maybe you're leaving out a step or two? -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org

Re: [BUGS] BUG #6650: CPU system time utilization rising few times a day

2012-05-23 Thread Robert Haas
you about problems in kernel-space, but I'm not sure it exists that far back. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http

Re: [BUGS] BUG #6625: not sufficient privileges to start system service

2012-05-22 Thread Robert Haas
. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs

Re: [BUGS] BUG #6626: union all with values of type unknown

2012-05-22 Thread Robert Haas
- , bye as (select 'bye'::text as name) deik3qfhu265n6- select * from hello UNION ALL select * from bye;  name ---  hello  bye (2 rows) I think it should return a column of type text, just as if you'd done this: select v from (select 'hello' union all select 'bye') x(v); -- Robert Haas

Re: [BUGS] BUG #6637: Casablanca timezone is wrong

2012-05-22 Thread Robert Haas
) Summer (DST)    WEST (UTC+1)(May 2nd to August 7th) So, I cannot set correctly the DateTime for an install in Morocco. We get the time zone list from the operating system. It might not be working correctly, but based on this amount of information I can't speculate as to why. -- Robert Haas

Re: [BUGS] BUG #6637: Casablanca timezone is wrong

2012-05-22 Thread Robert Haas
On Tue, May 22, 2012 at 3:46 PM, Robert Haas robertmh...@gmail.com wrote: On Mon, May 14, 2012 at 11:08 AM,  dch...@odotech.com wrote: The following bug has been logged on the website: Bug reference:      6637 Logged by:          David Chuet Email address:      dch...@odotech.com PostgreSQL

Re: [BUGS] pg_dump: SQL command failed

2012-05-22 Thread Robert Haas
pg_dump: pg_dump -n superschema --inserts superdatabase superduper.sql I just tried this exact series of steps and it worked for me. What version are you using? -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql

Re: [BUGS] BUG #6626: union all with values of type unknown

2012-05-22 Thread Robert Haas
On Tue, May 22, 2012 at 3:55 PM, Tom Lane t...@sss.pgh.pa.us wrote: Robert Haas robertmh...@gmail.com writes: deik3qfhu265n6= with hello as (select 'hello' as name) deik3qfhu265n6- , bye as (select 'bye' as name) deik3qfhu265n6- select * from hello UNION ALL select * from bye; ERROR:  failed

Re: [BUGS] BUG #6648: Hangs under installation

2012-05-22 Thread Robert Haas
using the EnterpriseDB installers? What shows up in the installation log files? -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org

Re: [BUGS] BUG #6647: Password Issue

2012-05-22 Thread Robert Haas
changing the password of that account to something that you know, and then using that password for the installer. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your

Re: [BUGS] BUG #6650: CPU system time utilization rising few times a day

2012-05-22 Thread Robert Haas
. Repeat that a few times and send us the backtrace that occurs most frequently. Is it a regular backend that is eating all that CPU time, or an autovacuum worker? -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs

Re: [BUGS] BUG #6640: pg_dump does not always dump data of tables marked as editable in extension

2012-05-22 Thread Robert Haas
a pg_dump --extension=XYZ option. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs

Re: [BUGS] BUG #6653: Service does not start in standby-mode

2012-05-22 Thread Robert Haas
. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs

Re: [BUGS] BUG #6635: TRUNCATE didn't recreate init fork.

2012-05-11 Thread Robert Haas
On Thu, May 10, 2012 at 1:32 AM, kurosawa-ak...@mxc.nes.nec.co.jp wrote: When I executed TRUNCATE command to unlogged table, init fork of new relfilenode (include toast) wasn't created. Fixed, thanks for the report! -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise

Re: [BUGS] BUG #6624: Tab completion of identifier containing single backslash triggers warnings

2012-05-11 Thread Robert Haas
On Thu, May 10, 2012 at 9:50 PM, Tom Lane t...@sss.pgh.pa.us wrote: Robert Haas robertmh...@gmail.com writes: On Wed, May 2, 2012 at 6:29 PM, Tom Lane t...@sss.pgh.pa.us wrote: The only way we could suppress such warnings would be if we made tab-complete.c use E'' strings for literals

Re: [BUGS] BUG #6629: Creating a gist index fails with too many LWLocks taken

2012-05-11 Thread Robert Haas
. And maybe any build with --enable-cassert should also emit WARNINGs when we go past whatever we determine the same limit to be. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes

Re: [BUGS] BUG #6624: Tab completion of identifier containing single backslash triggers warnings

2012-05-07 Thread Robert Haas
rather than use any facility now available from libpq. PQescapeLiteral will do the job, no? At least in 9.0+. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your

Re: [BUGS] hstore parser incorrectly handles malformed input

2012-05-07 Thread Robert Haas
as to which of these solutions is more preferable?  And should we regard this as a back-patchable bug fix, or a definition change suitable only for HEAD? I vote for not back-patching, regardless of exactly what we decide to do here. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise

Re: [BUGS] BUG #6619: Misleading output from slave when host is not running

2012-04-27 Thread Robert Haas
failure The error message above on the FATAL line is wrong (or at least misleading). I think it's trying to tell you that you had wal_level=minimal configured on the master *at the time you took the base backup*. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL

Re: [BUGS] BUG #6572: The example of SPI_execute is bogus

2012-04-18 Thread Robert Haas
the order in which rows get selected for update; but I don't want to go there. In the use cases I'm thinking of, it doesn't matter which row you decide to update or delete, only that you pick a single one. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company

Re: [BUGS] BUG #6204: Using plperl functions generate crash

2012-04-18 Thread Robert Haas
release? The previous discussion seems to indicate that it's caused by using the wrong version of Perl. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription

Re: [BUGS] BUG #6572: The example of SPI_execute is bogus

2012-04-14 Thread Robert Haas
.) I am not against to functionality - I am against just to syntax DELETE FROM tab LIMIT x because is it ambiguous what means: DELETE FROM tab RETURNING * LIMIT x What's ambiguous about that? -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent

Re: [BUGS] BUG #6572: The example of SPI_execute is bogus

2012-04-14 Thread Robert Haas
On Sat, Apr 14, 2012 at 12:15 PM, Peter Eisentraut pete...@gmx.net wrote: On lör, 2012-04-14 at 08:23 -0400, Robert Haas wrote: On Sat, Apr 14, 2012 at 3:27 AM, Pavel Stehule pavel.steh...@gmail.com wrote: It has a lot of sense.  Without it, it's very difficult to do logical replication

Re: [BUGS] BUG #6572: The example of SPI_execute is bogus

2012-04-13 Thread Robert Haas
think it would be a good idea for UPDATE and DELETE to expose a LIMIT option, but I can't really see the virtue in making that functionality available only through SPI. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list

Re: [BUGS] BUG #6572: The example of SPI_execute is bogus

2012-04-13 Thread Robert Haas
.) -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs

Re: [BUGS] BUG #6545: le telechargement ne s acheve pas

2012-04-09 Thread Robert Haas
Poker Tracker or their installers. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs

Re: [BUGS] BUG #6557: post gre sql odbc connection issue

2012-04-09 Thread Robert Haas
. You might want to try posting your question to the pgsql-odbc mailing list. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org

Re: [BUGS] BUG #6534: Passing numeric Bind variables to ODBC driver convers to Double precision

2012-04-09 Thread Robert Haas
. Is there a setting on the ODBC driver for incoming vairables? If not it is a buf. Given the lack of any response here, I suggest reposting this to the pgsql-odbc mailing list. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing

Re: [BUGS] BUG #6542: installation error

2012-04-09 Thread Robert Haas
to help you with this. Please including the installer log files as well, if possible - check for it in your temporary files directory. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org

Re: [BUGS] BUG #6530: intarray documentation could do with a warning about operators

2012-04-09 Thread Robert Haas
. Not sure exactly what. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs

Re: [BUGS] BUG #6528: pglesslog still referenced in docs, but no 9.1 support

2012-04-09 Thread Robert Haas
removing it from the docs unless someone wants to pull this tool into the core. This complaint appears to be accurate. I think we should go ahead and remove that mention. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing

Re: [BUGS] BUG #6521: cannot make connection due to getsockname() failed: Invalid argument

2012-04-09 Thread Robert Haas
service, it works well.  This log entry comes from src/backend/libpq/pqcomm.c.  I am not certain that this is a bug. I searched but could not find a clue.  Thanks! Sometimes this sort of issue can be caused by anti-virus software (even if it's disabled). -- Robert Haas EnterpriseDB: http

Re: [BUGS] corrupted table postgresql 8.3

2012-04-09 Thread Robert Haas
database. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs

Re: [BUGS] BUG #6464: Installer (postgresql-9.1.2-1-windows-x64.exe) doesn't work

2012-04-09 Thread Robert Haas
be to check what %TEMP% points to - maybe it's a nonexistent directory or something like that. The installer is not going to abort without a reason. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org

Re: [BUGS] BUG #6565: GEQO documentation discrepancy after 9.0 change?

2012-04-09 Thread Robert Haas
nondeterministically. I guess this sentence is outdated now? Hmm, sounds like it. Does anyone think otherwise? -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http

Re: [BUGS] BUG #6545: le telechargement ne s acheve pas

2012-04-09 Thread Robert Haas
On Mon, Apr 9, 2012 at 9:56 AM, Robert Haas robertmh...@gmail.com wrote: On Tue, Mar 20, 2012 at 2:59 AM,  ka...@hotmail.fr wrote: The following bug has been logged on the website: Bug reference:      6545 Logged by:          AYACHI ABDELAKDER Email address:      ka...@hotmail.fr PostgreSQL

Re: [BUGS] Download not found for postgreSQL 9.1 for both SUSE and Red Hat on IBM Power (ppc)

2012-03-31 Thread Robert Haas
and don't want to use your OS vendor's packages, you can still compile it yourself, and it should work fine. I've done a bunch of testing recently on PPC64 and it works great. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing

Re: [BUGS] [GENERAL] Altering a table with a rowtype column

2012-03-21 Thread Robert Haas
. Does the SQL standard say anything on this topic? -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs

Re: [BUGS] BUG #6517: Volatile function erroneously optimized, does not consider change in schema path

2012-03-12 Thread Robert Haas
(Centos 6, 32 bit). I created a small example run with psql, to demonstrate this. I have a vague feeling this is a known issue. It sure seems like we should handle it better, but I'm not sure how hard that would be to implement. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com

Re: [BUGS] BUG #6513: explain (analyze, buffers) and toasted fields

2012-03-12 Thread Robert Haas
be a good idea to change that or not. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs

Re: [BUGS] BUG #6517: Volatile function erroneously optimized, does not consider change in schema path

2012-03-12 Thread Robert Haas
On Mon, Mar 12, 2012 at 11:16 AM, Tom Lane t...@sss.pgh.pa.us wrote: Robert Haas robertmh...@gmail.com writes: On Mon, Mar 5, 2012 at 6:52 AM,  rene.vanpaas...@gmail.com wrote: I found some unexpected behaviour when changing the schema search path in combination with plpgsql functions (may

Re: [BUGS] BUG #6484: pgstat wait timeout

2012-03-12 Thread Robert Haas
about it. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs

Re: [BUGS] BUG #6520: BRT FATAL: COULD NOT CREATE ANY TCP/IP SOCKETS

2012-03-12 Thread Robert Haas
improperly. It might help to see a few more lines of the log output, rather than just the last one. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http

Re: [BUGS] BUG #6512: Bug with prepared statement and timestamp + interval

2012-03-12 Thread Robert Haas
-- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs

Re: [BUGS] probleme d'installation

2012-02-27 Thread Robert Haas
, and then try again. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company

Re: [BUGS] rs.getMetaData.getTableName always return empty string

2012-02-27 Thread Robert Haas
driver do it too? I think return the underlying table name is much more useful than an empty string. I think you might want to post this question to the pgsql-jdbc mailing list, rather than here. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent

Re: [BUGS] BUG #6456: no password

2012-02-27 Thread Robert Haas
registration but doesn't work. thanks for your time Just use the control panel to completely delete the postgres user, and then retry the installer. Or else change the password of the postgres user to something that you know, and then use that for the installer. -- Robert Haas EnterpriseDB: http

Re: [BUGS] BUG #6444: Postgresql crash

2012-02-09 Thread Robert Haas
and the queries? -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs

Re: [BUGS] BUG #6200: standby bad memory allocations on SELECT

2012-02-01 Thread Robert Haas
On Tue, Jan 31, 2012 at 4:25 PM, Tom Lane t...@sss.pgh.pa.us wrote: Robert Haas robertmh...@gmail.com writes: On Tue, Jan 31, 2012 at 12:05 AM, Tom Lane t...@sss.pgh.pa.us wrote: BTW, after a bit more reflection it occurs to me that it's not so much that the data is necessarily *bad

Re: [BUGS] BUG #6200: standby bad memory allocations on SELECT

2012-01-31 Thread Robert Haas
would have missed something that obvious; there aren't that many things that need a cleanup lock on a heap page. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your

Re: [BUGS] inet subtraction fails with IPv6?

2012-01-31 Thread Robert Haas
as a negative IP address. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs

Re: [BUGS] BUG #6200: standby bad memory allocations on SELECT

2012-01-27 Thread Robert Haas
dump. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs

Re: [BUGS] BUG #6200: standby bad memory allocations on SELECT

2012-01-27 Thread Robert Haas
investigated involved corruption on the master, and I think it predated Hot Standby. However, the symptom is generic enough that it seems quite possible that there's more than one way for it to happen. :-( -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company

Re: [BUGS] Different error messages executing CREATE TABLE or ALTER TABLE to create a column xmin

2012-01-26 Thread Robert Haas
to handle both the ADD COLUMN and RENAME COLUMN cases, and as such have posted an update of Vik's patch on the other thread. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Compan -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes

Re: [BUGS] BUG #6400: function arguments not accepted

2012-01-19 Thread Robert Haas
behavior requires more quoting than the old one did. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs

Re: [BUGS] Documentation bug: reference to checkpoint activity in bgwriter

2012-01-19 Thread Robert Haas
On Mon, Jan 9, 2012 at 2:37 PM, Peter Geoghegan pe...@2ndquadrant.com wrote: On 9 January 2012 18:47, Robert Haas robertmh...@gmail.com wrote: On Sat, Dec 31, 2011 at 8:54 PM, Peter Geoghegan pe...@2ndquadrant.com wrote: ISTM that the following reference, at config.sgml line 1345, ought

Re: [BUGS] fatal flex error in guc-file.l kills the postmaster

2012-01-17 Thread Robert Haas
On Tue, Jan 17, 2012 at 1:23 PM, Noah Misch n...@leadboat.com wrote: On Mon, Jan 16, 2012 at 08:54:53PM -0500, Robert Haas wrote: On Sun, Dec 18, 2011 at 11:53 AM, Noah Misch n...@leadboat.com wrote: Here's a version that calls sigsetjmp() once per file. ?While postgresql.conf scanning

Re: [BUGS] Incorrect comment in heapam.c

2012-01-16 Thread Robert Haas
in access/htup.h...should it be? IMHO comment is wrong, code is in the right place. It used to be in heapam.h ... evidently, whoever moved it missed this comment. I imagined that that was the case. It's a fairly inconsequential bug, but it is worth fixing... Fixed. -- Robert Haas

Re: [BUGS] fatal flex error in guc-file.l kills the postmaster

2012-01-16 Thread Robert Haas
, too. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs

Re: [BUGS] BUG #6389: Fsync failed while creating DB

2012-01-13 Thread Robert Haas
, but you could start by trying 8.2.23, 8.3.x, 8.4.x, etc. if you want to try to figure it out. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http

Re: [BUGS] user names non-ASCII

2012-01-09 Thread Robert Haas
On Fri, Dec 23, 2011 at 1:58 PM, Heikki Linnakangas heikki.linnakan...@enterprisedb.com wrote: On 23.12.2011 19:21, Robert Haas wrote: On Thu, Dec 15, 2011 at 3:40 PM, Holec, JPH Softwareho...@jphsw.cz  wrote: I Have PostgreSQL server 8.4.9 on Linux, database utf-8 and Client app on Windows

[BUGS] Re: [BUGS] BUG #6358: [bug] pgAdmin não abre script sql das tabelas

2012-01-09 Thread Robert Haas
/listinfo/pgbr-geral -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs

Re: [BUGS] BUG #6359: excessively inlining subquery leads to slow queries

2012-01-09 Thread Robert Haas
feature than a bug. That having been said, I hope we'll get around to improving it at some point. Even though in most cases inlining is a huge win, there are certainly boundary cases where it's not, and this is one of them. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise

Re: [BUGS] BUG #6360: with hold cursor, cause function executed twice and wrong results

2012-01-09 Thread Robert Haas
some rows and then commit. Is that even per spec? I would not expect the results, or the side-effects, of a query to depend on the method used to retrieve its results. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list

  1   2   3   4   5   6   7   8   >