Skip to content

Commit

Permalink
Fix column name in sync-control table for real
Browse files Browse the repository at this point in the history
  • Loading branch information
dmgaldi committed Jan 22, 2024
1 parent a821c6d commit 9c48076
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class RecordIterator(val rs: ResultSet,
name = rs.getString("type_name"),
version = rs.getString("type_version")
),
owner = UserID(rs.getLong("owner")),
owner = UserID(rs.getLong("owner_id")),
syncControlRecord = VDISyncControlRecord(
datasetID = DatasetID(rs.getString("dataset_id")),
sharesUpdated = rs.getObject("shares_update_time", OffsetDateTime::class.java),
Expand Down

0 comments on commit 9c48076

Please sign in to comment.