Skip to content

Commit 2df3eb1

Browse files
committed
Fix DuckDBType enum values to match duckdb.h
1 parent 769e774 commit 2df3eb1

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

DuckDB.ExtensionKit/Native/NativeObjects.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ public enum DuckDBType : uint
6262
Bit = 29,
6363
TimeTz = 30,
6464
TimestampTz = 31,
65-
VarInt = 34,
66-
SqlNull = 35,
67-
Any = 36
65+
Any = 34,
66+
VarInt = 35,
67+
SqlNull = 36
6868
}
6969

7070
public enum DuckDBStatementType : int

0 commit comments

Comments
 (0)