Hi Horiguchi-san, Kuroda-san
Horiguchi-san, thank you for your comment.
I have a question.
A bug of StatementCache is occurred in previous versions.
Should a patch be separated?
> Horiguchi-san wrote:
> It seems like a local cache of server-side data, which is similar
> to catcache on server side for each process.
I agree.
I will fix it with using pthread_setspecific like descriptor.c.
> I don't think
> prepared statements is in that category. A prepared statement is
> bonded to a connection, not to a thread. Different threads can
> execute the same prepared statement on the same connection.
A namespace of declared statement is not connection independent.
Therefore, we must manage the namespce in global and consider about race condition.
For example, ecpglib must refer the information of (A) when ecpglib executes (B)
in order to occur "double declare" error.
(A) exec sql at conn1 declare st1 statement;
(B) exec sql at conn2 declare st1 statement;
// If ecpglib didn't reject the above, ecpglib cannot judge
// which connection the followings should be executed on.
exec sql prepare st1 from "select 1";
exec sql execute st1;
Kuroda-san, is it right?
If it's right, I will fix it with using pthread_lock.
Regards
Ryo Matsumura