I'm trying to do ad-hoc exploration/analysis over multiple files without having to concatenate them. New files show up on a regular basis, and creating large, redundant concatenated files seems inelegant for data exploration. I've tried the obvious (... from dfs.`/dir/*.csv` but that only returns lines from the first file it finds, and then an error for the next file.
Is there any current way to do this? Thanks
