Skip to content

Commit dc3bb0e

Browse files
committed
Make methods private
1 parent b71a15a commit dc3bb0e

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

Diff for: libtiledbsoma/src/soma/managed_query.h

+19-19
Original file line numberDiff line numberDiff line change
@@ -286,12 +286,6 @@ class ManagedQuery {
286286
std::unique_ptr<ArrowSchema> arrow_schema,
287287
std::unique_ptr<ArrowArray> arrow_array);
288288

289-
/**
290-
* @brief Configure query and allocate result buffers for reads.
291-
*
292-
*/
293-
void setup_read();
294-
295289
std::optional<std::shared_ptr<ArrayBuffers>> read_next();
296290

297291
/**
@@ -380,19 +374,6 @@ class ManagedQuery {
380374
return buffers_->at(name)->string_view(index);
381375
}
382376

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-
396377
/**
397378
* @brief Submit the write query.
398379
*
@@ -445,6 +426,25 @@ class ManagedQuery {
445426
//= private non-static
446427
//===================================================================
447428

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+
448448
/**
449449
* @brief Check if column name is contained in the query results.
450450
*

0 commit comments

Comments
 (0)