[publish images] ci: ensure tests that require docker have it available (#22781)

This commit is contained in:
Meghan Denny
2025-09-25 18:03:22 -08:00
committed by GitHub
parent 14b62e6904
commit 51ce3bc269
31 changed files with 135 additions and 119 deletions

View File

@@ -906,7 +906,7 @@ pub const Putter = struct {
count: usize = 0,
globalObject: *jsc.JSGlobalObject,
pub fn toJS(this: *Putter, globalObject: *jsc.JSGlobalObject, array: JSValue, structure: JSValue, flags: SQLDataCell.Flags, result_mode: PostgresSQLQueryResultMode, cached_structure: ?PostgresCachedStructure) JSValue {
pub fn toJS(this: *Putter, globalObject: *jsc.JSGlobalObject, array: JSValue, structure: JSValue, flags: SQLDataCell.Flags, result_mode: PostgresSQLQueryResultMode, cached_structure: ?PostgresCachedStructure) !JSValue {
var names: ?[*]jsc.JSObject.ExternColumnIdentifier = null;
var names_count: u32 = 0;
if (cached_structure) |c| {
@@ -916,7 +916,7 @@ pub const Putter = struct {
}
}
return SQLDataCell.JSC__constructObjectFromDataCell(
return SQLDataCell.constructObjectFromDataCell(
globalObject,
array,
structure,

View File

@@ -1429,7 +1429,7 @@ pub fn on(this: *PostgresSQLConnection, comptime MessageType: @Type(.enum_litera
};
const pending_value = PostgresSQLQuery.js.pendingValueGetCached(thisValue) orelse .zero;
pending_value.ensureStillAlive();
const result = putter.toJS(
const result = try putter.toJS(
this.globalObject,
pending_value,
structure,