Executes a query and writes the results to a partitioned JSON file.
(
&self,
plan: Arc<dyn ExecutionPlan>,
path: impl AsRef<str>,
)
| 63 | |
| 64 | /// Executes a query and writes the results to a partitioned JSON file. |
| 65 | pub async fn write_json( |
| 66 | &self, |
| 67 | plan: Arc<dyn ExecutionPlan>, |
| 68 | path: impl AsRef<str>, |
| 69 | ) -> Result<()> { |
| 70 | plan_to_json(self.task_ctx(), plan, path).await |
| 71 | } |
| 72 | } |
nothing calls this directly
no test coverage detected