Returns the layout of the query. */
| 252 | |
| 253 | /** Returns the layout of the query. */ |
| 254 | tiledb_layout_t query_layout() const { |
| 255 | auto& ctx = ctx_.get(); |
| 256 | tiledb_layout_t query_layout; |
| 257 | ctx.handle_error( |
| 258 | tiledb_query_get_layout(ctx.ptr().get(), query_.get(), &query_layout)); |
| 259 | return query_layout; |
| 260 | } |
| 261 | |
| 262 | /** |
| 263 | * Sets the read query condition. |
no test coverage detected