Skip to content

Commit

Permalink
Make get_prepared_metadata() public
Browse files Browse the repository at this point in the history
It is used by cpp-rust-driver
  • Loading branch information
Lorak-mmk committed May 14, 2024
1 parent 370b00a commit 2199bda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scylla/src/statement/prepared_statement.rs
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ impl PreparedStatement {
}

/// Access metadata about the bind variables of this statement as returned by the database
pub(crate) fn get_prepared_metadata(&self) -> &PreparedMetadata {
pub fn get_prepared_metadata(&self) -> &PreparedMetadata {
&self.shared.metadata
}

Expand Down

0 comments on commit 2199bda

Please sign in to comment.