Skip to content

Commit c2e8ea3

Browse files
committed
Remove NaN values from string series results that contain nulls
1 parent 2f2d220 commit c2e8ea3

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

influxdb-client/SeriesResult.m

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,11 @@
163163
end
164164
else
165165
% Convert to a nested char cell
166+
for j = 1:N
167+
if ~ischar(column{j})
168+
column{j} = [];
169+
end
170+
end
166171
value = {column};
167172
end
168173
props(i) = struct('field', field, 'value', value);

0 commit comments

Comments
 (0)