nodejs-questdb-client
nodejs-questdb-client copied to clipboard
Client should skip columns if value is null
When adding columns to the sender, if we pass a null value, as in
sender.table('prices').symbol('instrument', 'EURUSD')
.floatColumn('bid', null).at(Date.now(), 'ms');
It would be convenient that the column was ignored, rather than raising an error. It would make things easier for programmatic access