TenantAtlas/apps/platform/.pnpm-store/v10/files/2d/fe12f664dd197f85b08501c7a88df9bf78424c52dc6a32caa682a207c5cdbcdedd0a16d3912c9152bda4467a0947eaf6153d6c84d6623229d5246d2ed2b5a7
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

48 lines
1.3 KiB
Plaintext

import { entityKind } from "../../entity.js";
import { SQL, sql } from "../../sql/sql.js";
class SQLiteCountBuilder extends SQL {
constructor(params) {
super(SQLiteCountBuilder.buildEmbeddedCount(params.source, params.filters).queryChunks);
this.params = params;
this.session = params.session;
this.sql = SQLiteCountBuilder.buildCount(
params.source,
params.filters
);
}
sql;
static [entityKind] = "SQLiteCountBuilderAsync";
[Symbol.toStringTag] = "SQLiteCountBuilderAsync";
session;
static buildEmbeddedCount(source, filters) {
return sql`(select count(*) from ${source}${sql.raw(" where ").if(filters)}${filters})`;
}
static buildCount(source, filters) {
return sql`select count(*) from ${source}${sql.raw(" where ").if(filters)}${filters}`;
}
then(onfulfilled, onrejected) {
return Promise.resolve(this.session.count(this.sql)).then(
onfulfilled,
onrejected
);
}
catch(onRejected) {
return this.then(void 0, onRejected);
}
finally(onFinally) {
return this.then(
(value) => {
onFinally?.();
return value;
},
(reason) => {
onFinally?.();
throw reason;
}
);
}
}
export {
SQLiteCountBuilder
};
//# sourceMappingURL=count.js.map