Hi Cemo

Thanks for that. I have one problem remaining. This piece of code in Prepare makes no sense:

 // check if suitable for update
        for (Column key : keys) {
            boolean found = false;
            for (Column column : columns) {
                if (column.getColumnId() == key.getColumnId()) {
                    found = true;
                    break;
                }
            }
            if (!found) {
                return;
            }
        }

What exactly is that guarding against, and why is it not throwing an exception?

Thanks, Noel.

On 2013-10-22 10:11, Cemo wrote:

On 22 October 2013 10:56, Noel Grandin <[email protected]
<mailto:[email protected]>> wrote:

    Hi Cemo

    Thanks for the patch, it looks pretty good.

    Do we have a license statement from you on file?
    http://h2database.com/html/__build.html#providing_patches
    <http://h2database.com/html/build.html#providing_patches>

    Thanks, Noel.


Hi,

I forgot to add a statement but just commented on issue as documentation
stated.

Thanks



--
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/h2-database.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to