sql <ReturnType> SELECT some_function(param);.execute(db) the function is not found because it doesn't exist in the public schema, although db was created with .withSchema('myschema'). SELECT myschema.some_function(param);.execute(db) it still doesn't work, because the function references tables in myschema