Some checks failed
Main Confidence / confidence (push) Failing after 45s
## Summary - introduce surface-aware compressed governance outcomes and reuse the shared truth/explanation seams for operator-first summaries - apply the compressed outcome hierarchy across baseline, evidence, review, review-pack, canonical review/evidence, and artifact-oriented operation-run surfaces - expand spec 214 fixtures and Pest coverage, and fix tenant-panel route assertions by generating explicit tenant-panel URLs in the affected Filament tests ## Validation - `cd apps/platform && ./vendor/bin/sail bin pint --dirty --format agent` - focused governance compression suite from `specs/214-governance-outcome-compression/quickstart.md` passed (`68` tests, `445` assertions) - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/Filament/InventoryItemResourceTest.php tests/Feature/Filament/BackupSetUiEnforcementTest.php tests/Feature/Filament/RestoreRunUiEnforcementTest.php` passed (`18` tests, `81` assertions) Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #253
151 lines
5.2 KiB
Plaintext
151 lines
5.2 KiB
Plaintext
"use strict";
|
|
var __defProp = Object.defineProperty;
|
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
var __export = (target, all) => {
|
|
for (var name in all)
|
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
};
|
|
var __copyProps = (to, from, except, desc) => {
|
|
if (from && typeof from === "object" || typeof from === "function") {
|
|
for (let key of __getOwnPropNames(from))
|
|
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
}
|
|
return to;
|
|
};
|
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
var insert_exports = {};
|
|
__export(insert_exports, {
|
|
SingleStoreInsertBase: () => SingleStoreInsertBase,
|
|
SingleStoreInsertBuilder: () => SingleStoreInsertBuilder
|
|
});
|
|
module.exports = __toCommonJS(insert_exports);
|
|
var import_entity = require("../../entity.cjs");
|
|
var import_query_promise = require("../../query-promise.cjs");
|
|
var import_sql = require("../../sql/sql.cjs");
|
|
var import_table = require("../../table.cjs");
|
|
var import_utils = require("../../utils.cjs");
|
|
var import_utils2 = require("../utils.cjs");
|
|
class SingleStoreInsertBuilder {
|
|
constructor(table, session, dialect) {
|
|
this.table = table;
|
|
this.session = session;
|
|
this.dialect = dialect;
|
|
}
|
|
static [import_entity.entityKind] = "SingleStoreInsertBuilder";
|
|
shouldIgnore = false;
|
|
ignore() {
|
|
this.shouldIgnore = true;
|
|
return this;
|
|
}
|
|
values(values) {
|
|
values = Array.isArray(values) ? values : [values];
|
|
if (values.length === 0) {
|
|
throw new Error("values() must be called with at least one value");
|
|
}
|
|
const mappedValues = values.map((entry) => {
|
|
const result = {};
|
|
const cols = this.table[import_table.Table.Symbol.Columns];
|
|
for (const colKey of Object.keys(entry)) {
|
|
const colValue = entry[colKey];
|
|
result[colKey] = (0, import_entity.is)(colValue, import_sql.SQL) ? colValue : new import_sql.Param(colValue, cols[colKey]);
|
|
}
|
|
return result;
|
|
});
|
|
return new SingleStoreInsertBase(this.table, mappedValues, this.shouldIgnore, this.session, this.dialect);
|
|
}
|
|
}
|
|
class SingleStoreInsertBase extends import_query_promise.QueryPromise {
|
|
constructor(table, values, ignore, session, dialect) {
|
|
super();
|
|
this.session = session;
|
|
this.dialect = dialect;
|
|
this.config = { table, values, ignore };
|
|
}
|
|
static [import_entity.entityKind] = "SingleStoreInsert";
|
|
config;
|
|
/**
|
|
* Adds an `on duplicate key update` clause to the query.
|
|
*
|
|
* Calling this method will update update the row if any unique index conflicts. MySQL will automatically determine the conflict target based on the primary key and unique indexes.
|
|
*
|
|
* See docs: {@link https://orm.drizzle.team/docs/insert#on-duplicate-key-update}
|
|
*
|
|
* @param config The `set` clause
|
|
*
|
|
* @example
|
|
* ```ts
|
|
* await db.insert(cars)
|
|
* .values({ id: 1, brand: 'BMW'})
|
|
* .onDuplicateKeyUpdate({ set: { brand: 'Porsche' }});
|
|
* ```
|
|
*
|
|
* While MySQL does not directly support doing nothing on conflict, you can perform a no-op by setting any column's value to itself and achieve the same effect:
|
|
*
|
|
* ```ts
|
|
* import { sql } from 'drizzle-orm';
|
|
*
|
|
* await db.insert(cars)
|
|
* .values({ id: 1, brand: 'BMW' })
|
|
* .onDuplicateKeyUpdate({ set: { id: sql`id` } });
|
|
* ```
|
|
*/
|
|
onDuplicateKeyUpdate(config) {
|
|
const setSql = this.dialect.buildUpdateSet(this.config.table, (0, import_utils.mapUpdateSet)(this.config.table, config.set));
|
|
this.config.onConflict = import_sql.sql`update ${setSql}`;
|
|
return this;
|
|
}
|
|
$returningId() {
|
|
const returning = [];
|
|
for (const [key, value] of Object.entries(this.config.table[import_table.Table.Symbol.Columns])) {
|
|
if (value.primary) {
|
|
returning.push({ field: value, path: [key] });
|
|
}
|
|
}
|
|
this.config.returning = (0, import_utils.orderSelectedFields)(this.config.table[import_table.Table.Symbol.Columns]);
|
|
return this;
|
|
}
|
|
/** @internal */
|
|
getSQL() {
|
|
return this.dialect.buildInsertQuery(this.config).sql;
|
|
}
|
|
toSQL() {
|
|
const { typings: _typings, ...rest } = this.dialect.sqlToQuery(this.getSQL());
|
|
return rest;
|
|
}
|
|
prepare() {
|
|
const { sql: sql2, generatedIds } = this.dialect.buildInsertQuery(this.config);
|
|
return this.session.prepareQuery(
|
|
this.dialect.sqlToQuery(sql2),
|
|
void 0,
|
|
void 0,
|
|
generatedIds,
|
|
this.config.returning,
|
|
{
|
|
type: "delete",
|
|
tables: (0, import_utils2.extractUsedTable)(this.config.table)
|
|
}
|
|
);
|
|
}
|
|
execute = (placeholderValues) => {
|
|
return this.prepare().execute(placeholderValues);
|
|
};
|
|
createIterator = () => {
|
|
const self = this;
|
|
return async function* (placeholderValues) {
|
|
yield* self.prepare().iterator(placeholderValues);
|
|
};
|
|
};
|
|
iterator = this.createIterator();
|
|
$dynamic() {
|
|
return this;
|
|
}
|
|
}
|
|
// Annotate the CommonJS export names for ESM import in node:
|
|
0 && (module.exports = {
|
|
SingleStoreInsertBase,
|
|
SingleStoreInsertBuilder
|
|
});
|
|
//# sourceMappingURL=insert.cjs.map |