Consider the following class / method:

// Java
package org.jooq.test.utils.h2;

public class F {
    public static Integer fOne() {
        return 1;
    }
}

-- SQL
CREATE ALIAS f_one FOR "org.jooq.test.utils.h2.F.fOne";

Now consider the following queries:

-- Version 1.3.176
SELECT pos
FROM information_schema.function_columns
WHERE UPPER(alias_name) = 'F_ONE'

+----+
| POS|
+----+

-- Version 1.4.186
SELECT pos
FROM information_schema.function_columns
WHERE UPPER(alias_name) = 'F_ONE'

+----+
| POS|
+----+
|   0|
+----+

Am I right assuming that somewhere in between, the return value of a stored 
function has now become a row in the function_columns table with position 
zero?

I couldn't find any reference to such a change in the changelog... (
http://www.h2database.com/html/changelog.html)

Cheers,
Lukas

-- 
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/d/optout.

Reply via email to