@@ -83,3 +83,11 @@ postgresql.updateable.afterlastdelete:After end of result set. Can not call dele
83
83
postgresql.updateable.notoninsertrow :Not on insert row.
84
84
postgresql.updateable.inputstream :Input Stream is null.
85
85
postgresql.updateable.ioerror :Input Stream Error.
86
+ postgresql.call.noreturntype :A CallableStatement Function was declared but no call to 'registerOutParameter (1, <some_type>)' was made.
87
+ postgresql.call.noinout :PostgreSQL only supports function return value [@ 1] (no OUT or INOUT arguments)
88
+ postgresql.call.procasfunc :This Statement [{0}] defines a procedure call (needs ?= call <stmt> to be considered a function.
89
+ postgresql.call.malformed :Malformed stmt [{0}] usage : {1}
90
+ postgresql.call.funcover :Cannot execute Query a call to setXXX (1, ..) was made where argument 1 is the return value of a function.
91
+ postgresql.call.wrongget :Parameter of type {0} was registered but call to get{1} (sqltype={2}) was made.
92
+ postgresql.call.noreturnval :A CallableStatement Function was executed with nothing returned.
93
+ postgresql.call.wrongrtntype :A CallableStatement Function was executed and the return was of type ({0}) however type={1} was registered.