You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let writer = BinaryCopyInWriter::new(sink,&[Type::VARCHAR,Type::TIMESTAMPTZ,Type::VARCHAR,Type::INT8,Type::INT8,Type::VARCHAR]);
150
+
let writer = BinaryCopyInWriter::new(sink,&[Type::VARCHAR,Type::TIMESTAMPTZ,Type::VARCHAR,Type::VARCHAR,Type::VARCHAR,Type::VARCHAR]);
152
151
pin_mut!(writer);
153
152
for item in data {
154
-
ifletErr(e) = writer.as_mut().write(&[&item.id,&item.created,&item.event_type,&item.event_count.to_i64().expect("should have i64"),&item.event_payout.to_i64().expect("should have i64"),&item.earner]).await{
0 commit comments