Skip to content

Commit 1c5e7cd

Browse files
authored
Remove mut from raw_query (#339)
1 parent c56e458 commit 1c5e7cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/duckdb/src/statement.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ impl Statement<'_> {
448448
/// Note that if the SQL does not return results, [`Statement::raw_execute`]
449449
/// should be used instead.
450450
#[inline]
451-
pub fn raw_query(&mut self) -> Rows<'_> {
451+
pub fn raw_query(&self) -> Rows<'_> {
452452
Rows::new(self)
453453
}
454454

0 commit comments

Comments
 (0)