Use JSC::Integrity:: auditCellFully in bindings (#22538)

### What does this PR do?

### How did you verify your code works?
This commit is contained in:
Jarred Sumner
2025-09-10 00:31:54 -07:00
committed by GitHub
parent 6611983038
commit e1505b7143
82 changed files with 201 additions and 21 deletions

View File

@@ -1350,7 +1350,7 @@ fn advance(this: *PostgresSQLConnection) void {
}
pub fn getQueriesArray(this: *const PostgresSQLConnection) JSValue {
return js.queriesGetCached(this.js_value) orelse .zero;
return js.queriesGetCached(this.js_value) orelse .js_undefined;
}
pub fn on(this: *PostgresSQLConnection, comptime MessageType: @Type(.enum_literal), comptime Context: type, reader: protocol.NewReader(Context)) AnyPostgresError!void {