Re: [GENERAL] call pl/pgsql function from main pl/pgsql function

2014-09-28 Thread Jov
Plain pg function is synchronization,the main function must wait for the sub function over. I rember dblink can send asynchronous query,maybe you can wrap your sub function with dblink.but transition behavior should be careful thought. 2014年9月28日 8:25 PM于 "Mehdi Ravanbakhsh" 写道: > Hi All > > I hav

Re: [GENERAL] call pl/pgsql function from main pl/pgsql function

2014-09-28 Thread David G Johnston
Mehdi Ravanbakhsh wrote > Hi All > > I have one main function in pl/pgsql and one subset function in pl/pgsql > . > > i need to call Subset Function From main function and i do not need to > wait for subset Function return. I just need to send parameter to subset > function and do not need any

[GENERAL] call pl/pgsql function from main pl/pgsql function

2014-09-28 Thread Mehdi Ravanbakhsh
Hi All I have one main function in pl/pgsql and one subset function in pl/pgsql . i need to call Subset Function From main function and i do not need to wait for subset Function return. I just need to send parameter to subset function and do not need any thing in return. So i can call multiply