Re: [BUGS] BUG #5966: extract(epoch..) function error

2011-04-20 Thread Joshua Tolley
poch from '2011-03-14'::date) - extract(epoch from '2011-03-13'::date); ?column? -- 86400 (1 row) 5432 josh@josh*# select extract(epoch from '2011-03-15'::date) - extract(epoch from '2011-03-14'::date); ?column? -- 86400 (1 row) -- Joshua Tolley / eggyknap End Point Corporation http://www.endpoint.com signature.asc Description: Digital signature

Re: [BUGS] BUG #5945: serial repetition Error!

2011-03-30 Thread Joshua Tolley
me deleted,insert operation, > mistakes occur again You haven't actually said what the error is, or what "mistakes" you've noticed. Without those details we can't do much to help you. -- Joshua Tolley / eggyknap End Point Corporation http://www.endpoint.com signature.asc Description: Digital signature

Re: [BUGS] BUG #5809: bigserial duplicate value

2011-01-04 Thread Joshua Tolley
dumped/reloaded recently? Did you manually back up or copy the table? Alternatively, perhaps at some point you've added data to that column, rather than relying on PostgreSQL to supply a default value. -- Joshua Tolley / eggyknap End Point Corporation http://www.endpoint.com signature.asc Description: Digital signature

Re: [BUGS] BUG #5773: DEBUG: reaping dead processes DEBUG: server process (PID 10007) was terminated by signal 11: Segme

2010-11-27 Thread Joshua Tolley
entifier *in = (uniqueidentifier *) PG_GETARG_POINTER(0); if (in == NULL) PG_RETURN_CSTRING (NULL); ...and... CREATE OR REPLACE FUNCTION uniqueidentifier_in(cstring) returns uniqueidentifier as 'MODULE_PATHNAME' language 'c'; It should use PG_ARGISNULL(0), no? -- J

Re: [BUGS] BUG #5722: vacuum full does not update last_vacuum statistics

2010-10-26 Thread Joshua Tolley
how much updating and deleting has happened since the last vacuum, there's really no way of guessing how vacuum-needy something might be based only on available statistics. last_vacuum is just a nice way of verifying that [auto]vacuum happens on the table sometimes, and influencing an administ

Re: [BUGS] BUG #5700: double-quoting column names

2010-10-08 Thread Joshua Tolley
n my systems, the table name in the error message would all be lowercase. In any event, as a rule, if you're going to quote your identifiers once, you need to quote them all the time. For that reason, many people choose to stick with all lowercase table and column names. [1] http://www.po

Re: [BUGS] BUG #5698: pg_dump (8.3.11) does not consider constrains

2010-10-08 Thread Joshua Tolley
omething like dump the schema first, and then dump data into that schema, there's little pg_dump can do to avoid problems such as you describe. -- Joshua Tolley / eggyknap End Point Corporation http://www.endpoint.com signature.asc Description: Digital signature

Re: [BUGS] BUG #5618: restore won't work with files transferred with NFS

2010-08-13 Thread Joshua Tolley
old us what you tried, what happend, or what you expected to happen. Please see http://www.postgresql.org/docs/current/static/bug-reporting.html -- Joshua Tolley / eggyknap End Point Corporation http://www.endpoint.com signature.asc Description: Digital signature

Re: [BUGS] BUG #5573: How can i add field inbetween in the table while creating

2010-07-27 Thread Joshua Tolley
gt; tried in Navicat but no luck. You can't change column order without dropping and recreating the columns, recreating the table, or something similar. Sorry. -- Joshua Tolley / eggyknap End Point Corporation http://www.endpoint.com signature.asc Description: Digital signature

Re: [BUGS] BUG #5513: High availability with Postgres

2010-06-20 Thread Joshua Tolley
ug; you'd be better served addressing your question to pgsql-gene...@postgresql.org. -- Joshua Tolley / eggyknap End Point Corporation http://www.endpoint.com signature.asc Description: Digital signature

Re: [BUGS] BUG #5488: pg_dump does not quote column names -> pg_restore may fail when upgrading

2010-06-03 Thread Joshua Tolley
will complain if its version doesn't match the server version, but that's neither a bug nor, in this case, a bad thing. You have pg_dump's -i option which will squelch this message and allow pg_dump to continue. -- Joshua Tolley / eggyknap End Point Corporation http://www.endpo

Re: [BUGS] ERROR: failed to build any 3-way joins

2010-05-23 Thread Joshua Tolley
me; > ERROR:  failed to build any 3-way joins > < Just a guess, but I'd bet this was fixed by the very recent commit to fix this: http://archives.postgresql.org/pgsql-hackers/2010-05/msg01203.php -- Joshua Tolley / eggyknap End Point Corporation -- S

Re: [BUGS] psql or pgbouncer bug?

2010-05-22 Thread Joshua Tolley
On Sat, May 22, 2010 at 5:56 PM, Tom Molesworth wrote: > Surely this is normal, expected behaviour - exactly the same as you'd get > from the mysql commandline client, for example? > Note that I'm not the original submitter - so I could be missing the point > entirely here! If you were missing

Re: [BUGS] psql or pgbouncer bug?

2010-05-22 Thread Joshua Tolley
connection drop rather than > attempting reconnect and continuing with further statements. Does PostgreSQL log anything more detailed? What if you update some other table similarly? It looks like some sort of data corruption on the table you're updating. -- Joshua Tolley / eggyknap End Poin

[BUGS] BUG #5393: Installer sets superuser password if passwords don't match

2010-03-26 Thread Joshua Tolley
I accidentally rejected this message while moderating -bugs, so I'm forwarding it to the list to atone for myself. Apologies to all involved... - Forwarded message from pgsql-bugs-ow...@postgresql.org - Content-Description: Original message From: Rens Admiraal Date: Fri, 26 Mar 2010 20:0

Re: [BUGS] Facing problem with pg_dump

2010-03-16 Thread Joshua Tolley
application try to do with pg_dump? There's not much detail here to allow us to help you out. -- Joshua Tolley / eggyknap End Point Corporation http://www.endpoint.com signature.asc Description: Digital signature

Re: [BUGS] pg_dump -d

2010-03-02 Thread Joshua Tolley
ts. See the documentation for more details: http://www.postgresql.org/docs/8.4/interactive/app-pgdump.html http://www.postgresql.org/docs/8.4/interactive/release-8-4.html -- Joshua Tolley / eggyknap End Point Corporation http://www.endpoint.com signature.asc Description: Digital signature

Re: [BUGS] BUG #5357: PGAdmin: SQL Query Editor does not (always) open files

2010-03-02 Thread Joshua Tolley
On Tue, Mar 02, 2010 at 10:08:55AM +, Julien wrote: > Description:PGAdmin: SQL Query Editor does not (always) open files A better place for pgadmin problems is the pgadmin-support list: http://www.pgadmin.org/support/list.php -- Joshua Tolley / eggyknap End Point Corporation h

Re: [BUGS] BUG #5330: No CREATE SYNONYM command

2010-02-17 Thread Joshua Tolley
plicate Oracle's synonyms in PostgreSQL depends on your specific use case. You might consider emailing pgsql-general with details about what precisely you use synonyms for, to get help on your porting project. -- Joshua Tolley / eggyknap End Point Corporation http://www.endpoint.com signature.asc Description: Digital signature

Re: [BUGS] BUG #5231: SELECT DISTINCT poorly implemented vs SELECT ... GROUP BY

2009-12-03 Thread Joshua Tolley
On Thu, Dec 03, 2009 at 03:56:05PM +, Thomas Hamilton wrote: > > The following bug has been logged online: > > Bug reference: 5231 > Logged by: Thomas Hamilton > Email address: thomashamilto...@yahoo.com > PostgreSQL version: 8.3.8 > Operating system: Ubuntu 4.2.4 > Descr

Re: [BUGS] BUG #5087: Submitted bug reports not showing up in a timely manner (or at all)

2009-09-29 Thread Joshua Tolley
ice that I needed to approve #5085. I did get one for 5804 and 5806, FWIW. -- Joshua Tolley / eggyknap End Point Corporation http://www.endpoint.com signature.asc Description: Digital signature

Re: [BUGS] BUG #4920: need case-insensitive searches

2009-07-14 Thread Joshua Tolley
addition to the original text_field value. http://www.postgresql.org/docs/current/static/citext.html -- Joshua Tolley / eggyknap End Point Corporation http://www.endpoint.com signature.asc Description: Digital signature

Re: [BUGS] BUG #4916: wish: more statistical functions (median, percentiles etc)

2009-07-10 Thread Joshua Tolley
hem with. For instance, there's an example of PL/Perl versions available embedded in the code here: http://tr.im/rPDA -- Joshua Tolley / eggyknap End Point Corporation http://www.endpoint.com signature.asc Description: Digital signature

Re: [BUGS] BUG #4916: wish: more statistical functions (median, percentiles etc)

2009-07-10 Thread Joshua Tolley
ime. However, patches are welcome, if you'd like it enough to implement it. It's on my list of things that might be interesting to write, for example, but there are other things higher up on that list. -- Joshua Tolley / eggyknap End Point Corporation http://www.endpoint.com signature.asc Description: Digital signature

Re: [BUGS] RPostgreSQL

2009-02-25 Thread Joshua Tolley
On Wed, Feb 25, 2009 at 08:11:02PM +0100, David Seres wrote: >Hello! >I encountered a problem trying to install the RPostgreSQL package for R. I >get an error message whenever I try to load the package, namely that it >doesn't find the reference number 108 in the LIBPQ.dll. What doe

Re: [BUGS] Behavior of identically-named savepoints

2009-02-03 Thread Joshua Tolley
On Tue, Feb 03, 2009 at 11:31:31AM -0700, Joshua Tolley wrote: > Unless, of course, > I'm missing something. Yep, I was missing something. I didn't realize ROLLBACK TO SAVEPOINT didn't destroy the newer savepoint like RELEASE SAVEPOINT does. Adding RELEASE SAVEPOINT calls to

[BUGS] Behavior of identically-named savepoints

2009-02-03 Thread Joshua Tolley
The SAVEPOINT documentation says that a new savepoint created with the same name as an existing savepoint masks but does not destroy the old savepoint, and rolling back to the savepoint will then make the old savepoint available for RELEASE SAVEPOINT and ROLLBACK TO SAVEPOINT calls. 8.3.5 and my 8.

Re: [BUGS] BUG #4601: Data saving and opening problem

2009-01-06 Thread Joshua Tolley
On Mon, Jan 05, 2009 at 07:25:56AM +, V KUMAR wrote: > we are experiencing the following error intermittenly in saving and opening > the data. > > While saving: > > Database error: Error in saving the FMB MAP(Tippan). An I/O error > occured while sending to the backend. > > >

Re: [BUGS] BUG #4482: Segfault error 4

2008-10-21 Thread Joshua Tolley
On Thu, Oct 16, 2008 at 10:33 AM, manish singh <[EMAIL PROTECTED]> wrote: > > The following bug has been logged online: > > Bug reference: 4482 > Logged by: manish singh > Email address: [EMAIL PROTECTED] > PostgreSQL version: 8.3 > Operating system: Centos 64bit > Description:

Re: [BUGS] Incorrect "invalid AM/PM string" error from to_timestamp

2008-09-26 Thread Joshua Tolley
On Fri, Sep 26, 2008 at 8:11 AM, Tom Lane <[EMAIL PROTECTED]> wrote: > "Brendan Jurd" <[EMAIL PROTECTED]> writes: >> I have some thoughts on this and other issues surrounding AM/PM, but >> perhaps they are better reserved for a separate thread. Might I >> suggest we apply Alex's bugfix and hold of

[BUGS] Incorrect "invalid AM/PM string" error from to_timestamp

2008-09-25 Thread Joshua Tolley
I'm running this on 8.4devel built from CVS HEAD as of 9:44 AM Moutain Daylight time today, on a 32-bit Ubuntu 7.04 box. This is a completely new database. [EMAIL PROTECTED]:~/devel/raybo$ psql raybo -f test.sql CREATE TABLE INSERT 0 1 INSERT 0 1 psql:test.sql:21: ERROR: invalid AM/PM string psql