From a2baf4077a77ad654dcb1a25d57fb5dd19a51e55 Mon Sep 17 00:00:00 2001 From: aniketfuryrocks Date: Tue, 21 Mar 2023 16:18:50 +0530 Subject: [PATCH] sql type mismatch fix --- src/workers/postgres.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/workers/postgres.rs b/src/workers/postgres.rs index 55581219..7d6e453c 100644 --- a/src/workers/postgres.rs +++ b/src/workers/postgres.rs @@ -151,10 +151,10 @@ impl PostgresSession { (signature, recent_slot, forwarded_slot, processed_slot, cu_consumed, cu_requested, quic_response) VALUES ($1, $2, $3, $4, $5, $6, $7), - ($8, $10, $11, $12, $13, $14, $15), - ($16, $17, $18, $19, $20, $21, $22), - ($23, $24, $25, $26, $27, $28, $29), - ($30, $31, $32, $33, $34, $36, $36) + ($8, $9, $10, $11, $12, $13, $14), + ($15, $16, $17, $18, $19, $20, $21), + ($22 ,$23, $24, $25, $26, $27, $28), + ($29 ,$30, $31, $32, $33, $34, $35) "#, ).await?;