sql type mismatch fix
This commit is contained in:
parent
3ff986ccce
commit
a2baf4077a
|
@ -151,10 +151,10 @@ impl PostgresSession {
|
||||||
(signature, recent_slot, forwarded_slot, processed_slot, cu_consumed, cu_requested, quic_response)
|
(signature, recent_slot, forwarded_slot, processed_slot, cu_consumed, cu_requested, quic_response)
|
||||||
VALUES
|
VALUES
|
||||||
($1, $2, $3, $4, $5, $6, $7),
|
($1, $2, $3, $4, $5, $6, $7),
|
||||||
($8, $10, $11, $12, $13, $14, $15),
|
($8, $9, $10, $11, $12, $13, $14),
|
||||||
($16, $17, $18, $19, $20, $21, $22),
|
($15, $16, $17, $18, $19, $20, $21),
|
||||||
($23, $24, $25, $26, $27, $28, $29),
|
($22 ,$23, $24, $25, $26, $27, $28),
|
||||||
($30, $31, $32, $33, $34, $36, $36)
|
($29 ,$30, $31, $32, $33, $34, $35)
|
||||||
"#,
|
"#,
|
||||||
).await?;
|
).await?;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue