Re: [rt-users] make upgrade-database error

2013-06-17 Thread Kai Storbeck
Hi Kevin, Thanks for coming back on this. I only saw today that you responded. For the search archive I'm including the DBD::Pg error again: DBD::Pg::st execute failed: ERROR: more than one row returned by a subquery used as an expression On 5/28/13 9:44 PM, Kevin Falcone wrote: On Fri, May

Re: [rt-users] make upgrade-database error

2013-05-28 Thread Kevin Falcone
On Fri, May 03, 2013 at 02:47:24PM +0200, Kai Storbeck wrote: I dug this thread up from the archives, as I ran into the same error while doing a test upgrade. IIUC, every CustomFieldValue needs to be updated to contain a category field from the old attributes table. Since this doesn't break

[rt-users] make upgrade-database error

2012-03-08 Thread Joe Harris
I am going from 3.8.8 to 4.0.4 and am running into an issue during the upgrade-database part. When it goes from 3.8.8 to 3.8.9 there is an error that shows: [Thu Mar 8 12:09:37 2012] [warning]: Use of uninitialized value in string eq at /usr/local/src/rt-4.0.4/sbin/../lib/RT/Template.pm line

Re: [rt-users] make upgrade-database error

2012-03-08 Thread Ruslan Zakirov
Hi, Probably the following select returns more than one row per custom field. You should delete incorrect records and re-run upgrade: SELECT ObjectId, Content FROM Attributes WHERE Name = 'Category' AND ObjectType = 'RT::CustomFieldValue'; On Thu, Mar 8, 2012 at 16:28, Joe Harris