[jOOQ/jOOQ#18559] Informix stored functions containing DML cannot be called from SELECT statement

This commit is contained in:
Lukas Eder 2025-06-05 12:56:12 +02:00
parent d01797fb1d
commit 4c271b83cc

View File

@ -500,6 +500,15 @@ implements
else {
switch (family) {
// [#852] Some RDBMS don't allow for using JDBC procedure escape
// syntax for functions. Select functions from DUAL instead
case HSQLDB:
@ -531,7 +540,6 @@ implements
return executeSelect();
// [#773] If JDBC escape syntax is available for functions, use
@ -574,6 +582,13 @@ implements