|
For the interested parties... I have resolved the issue. Hmm, I would say I found the reason and how to fight it. All my queries were in a hash like
qname => qq (
QUERY;
),
That last new line int the query definition was killing everything. For some reason parser was treating it as a blank query and my return status was from executing it. Changing the above to:
qname => qq (
QUERY; ),
Made things work.
Beware :)
|