(mode: &str)
| 2737 | } |
| 2738 | |
| 2739 | fn prepared_update_limit_micros(mode: &str) -> Option<u128> { |
| 2740 | if mode.starts_with("native_") { |
| 2741 | return None; |
| 2742 | } |
| 2743 | if mode.contains("pipelined") { |
| 2744 | Some(1_500_000) |
| 2745 | } else { |
| 2746 | Some(5_000_000) |
| 2747 | } |
| 2748 | } |
| 2749 | |
| 2750 | fn run_pglite_sqlx_prepared_update_tests( |
| 2751 | numeric_updates: &[(i32, i32)], |
no outgoing calls
no test coverage detected