Skip to content

Commit 7736667

Browse files
committed
fix: suggestions from code review
1 parent c5c3b77 commit 7736667

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

libs/@local/hashql/eval/src/postgres/parameters.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ id::newtype!(
2424

2525
impl From<ParameterIndex> for Expression {
2626
fn from(value: ParameterIndex) -> Self {
27-
Self::Parameter(value.as_usize())
27+
Self::Parameter(value.as_usize() + 1)
2828
}
2929
}
3030

0 commit comments

Comments
 (0)