Skip to content

Commit

Permalink
Make methods private
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyenv committed Dec 18, 2024
1 parent b71a15a commit dc3bb0e
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions libtiledbsoma/src/soma/managed_query.h
Original file line number Diff line number Diff line change
Expand Up @@ -286,12 +286,6 @@ class ManagedQuery {
std::unique_ptr<ArrowSchema> arrow_schema,
std::unique_ptr<ArrowArray> arrow_array);

/**
* @brief Configure query and allocate result buffers for reads.
*
*/
void setup_read();

std::optional<std::shared_ptr<ArrayBuffers>> read_next();

/**
Expand Down Expand Up @@ -380,19 +374,6 @@ class ManagedQuery {
return buffers_->at(name)->string_view(index);
}

/**
* @brief Submit the query.
*
*/
void submit_read();

/**
* @brief Return results from the query.
*
* @return std::shared_ptr<ArrayBuffers>
*/
std::shared_ptr<ArrayBuffers> results();

/**
* @brief Submit the write query.
*
Expand Down Expand Up @@ -445,6 +426,25 @@ class ManagedQuery {
//= private non-static
//===================================================================

/**
* @brief Configure query and allocate result buffers for reads.
*
*/
void setup_read();

/**
* @brief Submit the query.
*
*/
void submit_read();

/**
* @brief Return results from the query.
*
* @return std::shared_ptr<ArrayBuffers>
*/
std::shared_ptr<ArrayBuffers> results();

/**
* @brief Check if column name is contained in the query results.
*
Expand Down

0 comments on commit dc3bb0e

Please sign in to comment.