UpdateNode/DeleteNode and SYNONYM

2005-11-17 Thread Daniel John Debrunner
I was fixing some code in the bind() for UpdateNode and DeleteNode for DERBY-571 and noticed that the methods are very similar and possibly could be combined. One thing that stood out is that UpdateNode has this code at the beginning of bind() related to SYNONYMs // check if

Re: UpdateNode/DeleteNode and SYNONYM

2005-11-17 Thread Satheesh Bandaram
It may be possible to differ this synonym resolution to verifyTargetTable(), but this is currently called after some cursor bind checking that expects correct target table name. If verifyTargetTable() can be performed before this cursor checking, which resolves synonyms correctly, the following