[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

@@ -667,7 +667,7 @@ pub fn onConnectionEstabilished(this: *@This()) void {
pub fn onQueryResult(this: *@This(), request: *JSMySQLQuery, result: MySQLQueryResult) void {
request.resolve(this.getQueriesArray(), result);
}
pub fn onResultRow(this: *@This(), request: *JSMySQLQuery, statement: *MySQLStatement, Context: type, reader: NewReader(Context)) error{ShortRead}!void {
pub fn onResultRow(this: *@This(), request: *JSMySQLQuery, statement: *MySQLStatement, Context: type, reader: NewReader(Context)) (error{ ShortRead, JSError })!void {
const result_mode = request.getResultMode();
var stack_fallback = std.heap.stackFallback(4096, bun.default_allocator);
const allocator = stack_fallback.get();
@@ -700,7 +700,7 @@ pub fn onResultRow(this: *@This(), request: *JSMySQLQuery, statement: *MySQLStat
};
const pending_value = request.getPendingValue() orelse .js_undefined;
// Process row data
const row_value = row.toJS(
const row_value = try row.toJS(
this.#globalObject,
pending_value,
structure,