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
The reason we need foreign table scan is to accelerate debug queries against big data set. Currently we have to load the whole data set into memory, collect stats, then run the query. This is slow when the data set is big (but good for batch of queries run).
To solve this problem, we need the following:
DDL to persists/read back stats: basic function is already there. See statis.cs.
The reason we need foreign table scan is to accelerate debug queries against big data set. Currently we have to load the whole data set into memory, collect stats, then run the query. This is slow when the data set is big (but good for batch of queries run).
To solve this problem, we need the following:
Note that we have PhysicScanFile can read from csv.
With above, we can:
The text was updated successfully, but these errors were encountered: