Per docs:
Streams are dynamic data sources. Stream updates are read in one tuple at a time as data becomes available, and query views are updated after every update to a stream
...but I see my test C++ program finishing without waiting for any new records(tuples) appended at the end of CSV 'stream'.
Debugging dbt_file_source::read_source_events(...), I see it reads in the entire file all at once ..and that's it ...?
Per docs:
...but I see my test C++ program finishing without waiting for any new records(tuples) appended at the end of CSV 'stream'.
Debugging dbt_file_source::read_source_events(...), I see it reads in the entire file all at once ..and that's it ...?