chore: ⬆️ updated deps

This commit is contained in:
2026-05-20 22:52:20 +02:00
parent d9f27c1775
commit 43f4680176
374 changed files with 295527 additions and 301467 deletions
+4 -4
View File
@@ -182,7 +182,7 @@ func (d *SQLitePreUpdateData) value(ppValue uintptr, i int, new bool) (any, erro
return src, nil
}
func preUpdateHookTrampoline(tls *libc.TLS, handle uintptr, pCsr uintptr, op int32, zDb uintptr, pTab uintptr, iKey1 int64, iReg int32, iBlobWrite int32) {
func preUpdateHookTrampoline(tls *libc.TLS, handle uintptr, pCsr uintptr, op int32, zDb uintptr, pTab uintptr, iKey1 int64, iKey2 int64) {
xPreUpdateHandlers.mu.RLock()
xPreUpdateHandler := xPreUpdateHandlers.m[handle]
xPreUpdateHandlers.mu.RUnlock()
@@ -197,12 +197,12 @@ func preUpdateHookTrampoline(tls *libc.TLS, handle uintptr, pCsr uintptr, op int
DatabaseName: libc.GoString(zDb),
TableName: libc.GoString(pTab),
OldRowID: iKey1,
NewRowID: int64(iReg),
NewRowID: iKey2,
}
xPreUpdateHandler(data)
}
func commitHookTrampoline(tls *libc.TLS, handle uintptr, pCsr uintptr) int32 {
func commitHookTrampoline(tls *libc.TLS, handle uintptr) int32 {
xCommitHandlers.mu.RLock()
xCommitHandler := xCommitHandlers.m[handle]
xCommitHandlers.mu.RUnlock()
@@ -214,7 +214,7 @@ func commitHookTrampoline(tls *libc.TLS, handle uintptr, pCsr uintptr) int32 {
return xCommitHandler()
}
func rollbackHookTrampoline(tls *libc.TLS, handle uintptr, pCsr uintptr) {
func rollbackHookTrampoline(tls *libc.TLS, handle uintptr) {
xRollbackHandlers.mu.RLock()
xRollbackHandler := xRollbackHandlers.m[handle]
xRollbackHandlers.mu.RUnlock()