Skip to content

Commit

Permalink
Fix operation types
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubknejzlik committed Feb 8, 2024
1 parent 5c23e12 commit 8f72571
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ export interface ISerializable {
}

export enum MetadataOperationType {
SELECT = "Select",
INSERT = "Insert",
UPDATE = "Update",
DELETE = "Delete",
CREATE_TABLE_AS = "CTAS",
CREATE_VIEW_AS = "CVAS",
SELECT = "select",
INSERT = "insert",
UPDATE = "update",
DELETE = "delete",
CREATE_TABLE_AS = "ctas",
CREATE_VIEW_AS = "cvas",
}

export interface IMetadata {
Expand Down

0 comments on commit 8f72571

Please sign in to comment.