Files
klz-cables.com/.pnpm-store/v10/files/73/12f6df47cbae6f46220fd223795f537b6da40176994eeba7502b66f43a5f7c8975fd90cfc843d4d94496fe39a15b414e7e8941e6677192ff22b5acbae04da1
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

11 lines
332 B
Plaintext

import { sql } from 'drizzle-orm';
export const execute = function execute({ db, drizzle, raw, sql: statement }) {
const executeFrom = db ?? drizzle;
if (raw) {
return executeFrom.execute(sql.raw(raw));
} else {
return executeFrom.execute(sql`${statement}`);
}
};
//# sourceMappingURL=execute.js.map