Examples of various ways to execute queries using SQL [`query_memtable`]: a simple query against a [`MemTable`] [`query_parquet`]: a simple query against a directory with multiple Parquet files
()
| 36 | /// [`query_memtable`]: a simple query against a [`MemTable`] |
| 37 | /// [`query_parquet`]: a simple query against a directory with multiple Parquet files |
| 38 | pub async fn query() -> Result<()> { |
| 39 | query_memtable().await?; |
| 40 | query_parquet().await?; |
| 41 | Ok(()) |
| 42 | } |
| 43 | |
| 44 | /// Run a simple query against a [`MemTable`] |
| 45 | pub async fn query_memtable() -> Result<()> { |
no test coverage detected
searching dependent graphs…