mirror of
https://github.com/oven-sh/bun
synced 2026-02-16 05:42:43 +00:00
[publish images] ci: ensure tests that require docker have it available (#22781)
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user