sql type mismatch fix

This commit is contained in:
aniketfuryrocks 2023-03-21 16:18:50 +05:30
parent 3ff986ccce
commit a2baf4077a
No known key found for this signature in database
GPG Key ID: FA6BFCFAA7D4B764
1 changed files with 4 additions and 4 deletions

View File

@ -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?;