Skip to content

Commit

Permalink
session: get_default_execution_profile_handle made pub
Browse files Browse the repository at this point in the history
  • Loading branch information
wprzytula committed Apr 3, 2023
1 parent 28d1e93 commit a352b89
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scylla/src/transport/session.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1815,7 +1815,9 @@ impl Session {
}
}

fn get_default_execution_profile_handle(&self) -> &ExecutionProfileHandle {
/// Retrieves the handle to execution profile that is used by this session
/// by default, i.e. when an executed statement does not define its own handle.
pub fn get_default_execution_profile_handle(&self) -> &ExecutionProfileHandle {
&self.default_execution_profile_handle
}
}
Expand Down

0 comments on commit a352b89

Please sign in to comment.