File tree 1 file changed +19
-19
lines changed
1 file changed +19
-19
lines changed Original file line number Diff line number Diff line change @@ -286,12 +286,6 @@ class ManagedQuery {
286
286
std::unique_ptr<ArrowSchema> arrow_schema,
287
287
std::unique_ptr<ArrowArray> arrow_array);
288
288
289
- /* *
290
- * @brief Configure query and allocate result buffers for reads.
291
- *
292
- */
293
- void setup_read ();
294
-
295
289
std::optional<std::shared_ptr<ArrayBuffers>> read_next ();
296
290
297
291
/* *
@@ -380,19 +374,6 @@ class ManagedQuery {
380
374
return buffers_->at (name)->string_view (index );
381
375
}
382
376
383
- /* *
384
- * @brief Submit the query.
385
- *
386
- */
387
- void submit_read ();
388
-
389
- /* *
390
- * @brief Return results from the query.
391
- *
392
- * @return std::shared_ptr<ArrayBuffers>
393
- */
394
- std::shared_ptr<ArrayBuffers> results ();
395
-
396
377
/* *
397
378
* @brief Submit the write query.
398
379
*
@@ -445,6 +426,25 @@ class ManagedQuery {
445
426
// = private non-static
446
427
// ===================================================================
447
428
429
+ /* *
430
+ * @brief Configure query and allocate result buffers for reads.
431
+ *
432
+ */
433
+ void setup_read ();
434
+
435
+ /* *
436
+ * @brief Submit the query.
437
+ *
438
+ */
439
+ void submit_read ();
440
+
441
+ /* *
442
+ * @brief Return results from the query.
443
+ *
444
+ * @return std::shared_ptr<ArrayBuffers>
445
+ */
446
+ std::shared_ptr<ArrayBuffers> results ();
447
+
448
448
/* *
449
449
* @brief Check if column name is contained in the query results.
450
450
*
You can’t perform that action at this time.
0 commit comments