TenantAtlas/apps/platform/.pnpm-store/v10/files/f0/a86f3205711a48e6a5ac5401a583e7c213dd2be28cc46875f9bb67c73463827922ec599656d5e5b83030001ab85a320e2dfae03be463ece9a38034b69f04a9
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

34 lines
784 B
Plaintext

import { entityKind } from "../../entity.js";
import { GelColumn } from "./common.js";
import { GelIntColumnBaseBuilder } from "./int.common.js";
class GelBigInt64Builder extends GelIntColumnBaseBuilder {
static [entityKind] = "GelBigInt64Builder";
constructor(name) {
super(name, "bigint", "GelBigInt64");
}
/** @internal */
build(table) {
return new GelBigInt64(
table,
this.config
);
}
}
class GelBigInt64 extends GelColumn {
static [entityKind] = "GelBigInt64";
getSQLType() {
return "edgedbt.bigint_t";
}
mapFromDriverValue(value) {
return BigInt(value);
}
}
function bigintT(name) {
return new GelBigInt64Builder(name ?? "");
}
export {
GelBigInt64,
GelBigInt64Builder,
bigintT
};
//# sourceMappingURL=bigintT.js.map