LogicalType DECIMAL is not a LogicalTypeSimple

This commit is contained in:
Kenny Daniel 2025-04-11 00:11:51 -07:00
parent f5274904b7
commit 11c7d8174a
No known key found for this signature in database
GPG Key ID: 90AB653A8CAD7E45
4 changed files with 6 additions and 23 deletions

@ -7,20 +7,20 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: npm i
- run: npm run lint
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: npm i
- run: npx tsc
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: npm i
- run: npm run coverage

@ -5,8 +5,11 @@
"author": "Hyperparam",
"homepage": "https://hyperparam.app",
"keywords": [
"ai",
"data",
"hyperparam",
"hyparquet",
"ml",
"parquet",
"parquetjs",
"parser",

@ -57,25 +57,6 @@ export const ConvertedType = [
'INTERVAL',
]
/** @type {import('../src/types.d.ts').LogicalTypeType[]} */
export const logicalTypeType = [
'NULL',
'STRING',
'MAP',
'LIST',
'ENUM',
'DECIMAL',
'DATE',
'TIME',
'TIMESTAMP',
'INTERVAL',
'INTEGER',
'NULL',
'JSON',
'BSON',
'UUID',
]
/** @type {import('../src/types.d.ts').CompressionCodec[]} */
export const CompressionCodec = [
'UNCOMPRESSED',

1
src/types.d.ts vendored

@ -170,7 +170,6 @@ type LogicalTypeSimple =
'MAP' |
'LIST' |
'ENUM' |
'DECIMAL' |
'DATE' |
'INTERVAL' |
'NULL' |