Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
progress
  • Loading branch information
psteinroe committed Aug 12, 2025
commit e1ba58299578c2a488c9d0ca7f9d7cda2e561b41
2 changes: 1 addition & 1 deletion crates/pgt_workspace/src/workspace/server/pg_query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ mod tests {
let result = convert_to_positional_params(input);
assert_eq!(
result,
"select * from users where id = $1 and name = $2 and email = $3;"
"select * from users where id = $1 and name = $2 and email = $3 ;"
);
}

Expand Down