Skip to content

Commit ee26206

Browse files
vasilev-alexigorlukanin
authored andcommitted
fix(client-core): CubeSqlSchemaColumn type
1 parent 4f8b64b commit ee26206

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/cubejs-client-core/src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@ export type CubeSqlOptions = LoadMethodOptions & {
111111

112112
export type CubeSqlSchemaColumn = {
113113
name: string;
114-
columnType: string;
114+
// eslint-disable-next-line camelcase
115+
column_type: string;
115116
};
116117

117118
export type CubeSqlResult = {

0 commit comments

Comments
 (0)