Initial commit - Event Planner application
This commit is contained in:
14
node_modules/kysely/dist/esm/query-compiler/compiled-query.js
generated
vendored
Normal file
14
node_modules/kysely/dist/esm/query-compiler/compiled-query.js
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
/// <reference types="./compiled-query.d.ts" />
|
||||
import { RawNode } from '../operation-node/raw-node.js';
|
||||
import { freeze } from '../util/object-utils.js';
|
||||
import { createQueryId } from '../util/query-id.js';
|
||||
export const CompiledQuery = freeze({
|
||||
raw(sql, parameters = []) {
|
||||
return freeze({
|
||||
sql,
|
||||
query: RawNode.createWithSql(sql),
|
||||
parameters: freeze(parameters),
|
||||
queryId: createQueryId(),
|
||||
});
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user