Skip to content

Commit b5cc5b5

Browse files
authored
fix(firebolt-driver): numeric null value (#6284)
1 parent 229a9a9 commit b5cc5b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cubejs-firebolt-driver/src/FireboltDriver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ export class FireboltDriver extends BaseDriver implements DriverInterface {
176176

177177
private getHydratedValue(value: unknown, meta: Meta) {
178178
const { type } = meta;
179-
if (isNumberType(type)) {
179+
if (isNumberType(type) && value !== null) {
180180
return `${value}`;
181181
}
182182
return value;

0 commit comments

Comments
 (0)