Skip to content

Commit

Permalink
fix a clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
imor committed Sep 5, 2023
1 parent 7a3b024 commit b1b7dfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion supabase-wrappers/src/scan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ unsafe fn assign_paramenter_value<W: ForeignDataWrapper>(
state: &mut FdwState<W>,
) {
// get parameter list in execution state
let estate = (*node).ss.ps.state as *mut pg_sys::EState;
let estate = (*node).ss.ps.state;
let plist_info = (*estate).es_param_list_info;
if plist_info.is_null() {
return;
Expand Down

0 comments on commit b1b7dfd

Please sign in to comment.