Re: postgres subfunction return error
От | David Johnston |
---|---|
Тема | Re: postgres subfunction return error |
Дата | |
Msg-id | 1380303751878-5772627.post@n5.nabble.com обсуждение исходный текст |
Ответ на | Re: postgres subfunction return error (jonathansfl <jonathanbrinkman@yahoo.com>) |
Ответы |
Re: postgres subfunction return error
|
Список | pgsql-sql |
jonathansfl wrote > SELECT * INTO v_outvar1, v_outvar2, v_outvar3 FROM > custom.pr_test_subfunction(SWV_Action); > OPEN swv_refcur for SELECT v_outvar1; > OPEN swv_refcur2 for SELECT v_outvar2; > OPEN swv_refcur3 for SELECT v_outvar3; > RETURN; I've never used cursors in this way so my help is more theory but: The called-function already created the cursors. In the parent function you should simply be able to pass them through unaltered: SELECT * INTO v_outvar1, ...; swv_refcur := v_outvar1; ... ... RETURN; You can possible simply the above and toss the temporary variables but that should not impact the semantics. David J. -- View this message in context: http://postgresql.1045698.n5.nabble.com/postgres-subfunction-return-error-tp5772407p5772627.html Sent from the PostgreSQL - sql mailing list archive at Nabble.com.
В списке pgsql-sql по дате отправления: