Skip to content

Commit 44d27ad

Browse files
committed
Fix usage of struct in SQLite to Postgres export
1 parent aca6427 commit 44d27ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/src/bin/sqlite-to-postgres.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ impl Table for RuntimePstat {
521521

522522
fn write_postgres_csv_row<W: Write>(writer: &mut csv::Writer<W>, row: &rusqlite::Row) {
523523
writer
524-
.serialize(PstatRow {
524+
.serialize(RuntimePstatRow {
525525
series: row.get(0).unwrap(),
526526
aid: row.get(1).unwrap(),
527527
cid: row.get(2).unwrap(),

0 commit comments

Comments
 (0)