Skip to content

Commit

Permalink
delete invalid parameters in derby
Browse files Browse the repository at this point in the history
  • Loading branch information
nakagami committed Feb 11, 2024
1 parent 93e6a52 commit bd624f6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions drda/ddm.py
Original file line number Diff line number Diff line change
Expand Up @@ -534,8 +534,9 @@ def packCNTQRY(pkgid, pkgcnstkn, pkgsn, database):
_packPKGNAMCSN(database, pkgid, pkgcnstkn, pkgsn) +
_pack_uint(cp.QRYBLKSZ, 65535, 4) +
_pack_uint(cp.QRYINSID, 0, 8) +
_pack_binary(cp.RTNEXTDTA, bytes([0x02])) +
_pack_binary(cp.FREPRVREF, bytes([0xf0]))
_pack_binary(cp.RTNEXTDTA, bytes([0x02]))
# Parameters that may be valid in Db2 but invalid in Derby
# _pack_binary(cp.FREPRVREF, bytes([0xf0]))
)


Expand Down

0 comments on commit bd624f6

Please sign in to comment.