You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// start building the sender with the initial required columns
let builder = sender.table('prices').symbol('instrument', 'EURUSD')
.floatColumn('bid', 1.0197);
// conditionally add the ask column
if (includeAsk) {
builder = builder.floatColumn('ask', 1.0224);
}
// finalize the builder with the timestamp
await builder.at(Date.now(), 'ms');
When adding columns to the sender, if we pass a null value, as in
It would be convenient that the column was ignored, rather than raising an error. It would make things easier for programmatic access
The text was updated successfully, but these errors were encountered: