Open hiltontj opened 2 hours ago
See https://github.com/influxdata/influxdb/pull/25495#discussion_r1826188340
That PR changed the validator to produce a QualifiedLine which is basically just a Row that hasn't had the timestamp set yet. This extra abstraction can be removed and just have the validation step produce a row directly.
QualifiedLine
Row
No reason we can't set the timestamp during validation, yeah?
Yes we can just move that step up to the validate part. It is the only special thing that is being done with the QualifiedLine
See https://github.com/influxdata/influxdb/pull/25495#discussion_r1826188340
That PR changed the validator to produce a
QualifiedLine
which is basically just aRow
that hasn't had the timestamp set yet. This extra abstraction can be removed and just have the validation step produce a row directly.