Skip to content

Commit

Permalink
fix generation code
Browse files Browse the repository at this point in the history
  • Loading branch information
TristenHarr committed Nov 5, 2024
1 parent c30109d commit a06845e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ndc-duckduckapi/src/generate-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const determineType = (t: string): string => {
case "DOUBLE":
return "Float";
case "HUGEINT":
return "BigInt";
return "HugeInt";
case "INTEGER":
return "Int";
case "INTERVAL":
Expand All @@ -50,9 +50,9 @@ const determineType = (t: string): string => {
case "TINYINT":
return "Int";
case "UBIGINT":
return "BigInt";
return "UBigInt";
case "UHUGEINT":
return "BigInt";
return "UHugeInt";
case "UINTEGER":
return "Int";
case "USMALLINT":
Expand Down

0 comments on commit a06845e

Please sign in to comment.