From b4d5f5619237aff31f60473ee288279db2131796 Mon Sep 17 00:00:00 2001 From: predetermined Date: Tue, 3 Sep 2024 14:25:09 +0200 Subject: [PATCH] fix: add CREATE to CommandType --- query/query.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/query/query.ts b/query/query.ts index 5897745..9671f71 100644 --- a/query/query.ts +++ b/query/query.ts @@ -38,7 +38,8 @@ export type CommandType = | "SELECT" | "MOVE" | "FETCH" - | "COPY"; + | "COPY" + | "CREATE"; /** Type of a query result */ export enum ResultType {