From c627326ab1c870485fb20d347c65e06bee5c0a7c Mon Sep 17 00:00:00 2001 From: predetermined Date: Mon, 23 Sep 2024 19:59:07 +0200 Subject: [PATCH] fix: add CREATE to CommandType (#489) --- query/query.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/query/query.ts b/query/query.ts index ba02a5d..fa4eae8 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 {