We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 229a9a9 commit b5cc5b5Copy full SHA for b5cc5b5
packages/cubejs-firebolt-driver/src/FireboltDriver.ts
@@ -176,7 +176,7 @@ export class FireboltDriver extends BaseDriver implements DriverInterface {
176
177
private getHydratedValue(value: unknown, meta: Meta) {
178
const { type } = meta;
179
- if (isNumberType(type)) {
+ if (isNumberType(type) && value !== null) {
180
return `${value}`;
181
}
182
return value;
0 commit comments