© 2026 Hedgehog Software, LLC
PostgresError: malformed array literal: "[{"data":"test batch message 1"},{"data":"test batch message 2"}]
const msgs = [ { data: "test batch message 1" }, { data: "test batch message 2" }, ] const result = await this.db.execute<{ send_batch: number }>( sql`SELECT * FROM pgmq.send_batch(${this.queueName}, ${JSON.stringify(msgs)}::jsonb[], ${delay})`, )