Minor patch for stacked file writing in HSQLDB

This commit is contained in:
Miroslav Štampar 2026-06-04 20:49:50 +02:00
parent 4f425792e3
commit 244d283198
3 changed files with 4 additions and 4 deletions

View file

@ -47,7 +47,7 @@ class Filesystem(GenericFilesystem):
logger.debug(debugMsg)
# Reference: http://hsqldb.org/doc/guide/sqlroutines-chapt.html#src_jrt_procedures
invokeQuery = "CALL %s('%s', CAST('%s' AS VARBINARY(%s)))" % (func_name, remoteFile, fcEncodedStr, max_bytes)
invokeQuery = "CALL %s('%s', X'%s')" % (func_name, remoteFile, fcEncodedStr)
inject.goStacked(invokeQuery)
logger.debug("cleaning up the database management system")