Re: [BUGS] BUG #8290: broken/unexpected locking behavior

2013-07-10 Thread pg noob
Alvaro, Is there a PostgreSQL bug number that I could refer to for this problem? Thank you. On Tue, Jul 9, 2013 at 4:53 PM, Alvaro Herrera wrote: > Jamey Poirier escribió: > > > > Thank you Alvaro. Yes, this explains it. > > It doesn't help to fix it but at least I know now that it's a known

Re: [BUGS] BUG #8290: broken/unexpected locking behavior

2013-07-09 Thread pg noob
Doing that just moves the problem from the time of the UPDATE to the time of the COMMIT. It is still possible to get a deadlock and I'm not sure how making it deferrable helps in this case. You can still end up with a deadlock like this: CON1: BEGIN; CON1: SELECT * FROM A WHERE id = 1 FOR UPDATE;

[BUGS] BUG #8105: names are transformed to lowercase incorrectly

2013-04-22 Thread pg
The following bug has been logged on the website: Bug reference: 8105 Logged by: András Kolesár Email address: p...@kolesar.hu PostgreSQL version: 9.1.5 Operating system: Windows Description: If I specify an unicode field name without quotes, field name gets lowecase

[BUGS] BUG #7754: Contrib start scipt comment refers to dead URL

2012-12-14 Thread pg-gts
The following bug has been logged on the website: Bug reference: 7754 Logged by: Gavan Schneider Email address: pg-...@snkmail.com PostgreSQL version: 9.2.2 Operating system: OSX Description: FILE: postgresql-9.2.2/contrib/start-scripts/osx/PostgreSQL ; and many

[BUGS] BUG #7651: Superfluous calls to functions used for indexing

2012-11-11 Thread m-pg
The following bug has been logged on the website: Bug reference: 7651 Logged by: Morten Minde Neergaard Email address: m...@8d.no PostgreSQL version: 9.1.6 Operating system: Debian Wheezy Description: Bug: When making an index over a function, then selecting a result

Re: [BUGS] BUG #5372: insert into fails with integer expression type char error

2010-03-12 Thread gray . pg
Ok. I've reproduced this but I now think that it isn't a bug. My schemas initially weren't the symetric when I was using select *. Alas, when I did align my schemas later, I had already switched to specifying a column list which then did not match the column list in the table. An improvement