From 9c48076263b4386ddc77c3e1dfd4d4aef50d86e4 Mon Sep 17 00:00:00 2001 From: Dan Galdi Date: Mon, 22 Jan 2024 15:21:54 -0500 Subject: [PATCH] Fix column name in sync-control table for real --- .../vdi/lib/db/cache/sql/select/select-all-sync-control.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/cache-db/src/main/kotlin/org/veupathdb/vdi/lib/db/cache/sql/select/select-all-sync-control.kt b/components/cache-db/src/main/kotlin/org/veupathdb/vdi/lib/db/cache/sql/select/select-all-sync-control.kt index b30c7c83..952d1c6f 100644 --- a/components/cache-db/src/main/kotlin/org/veupathdb/vdi/lib/db/cache/sql/select/select-all-sync-control.kt +++ b/components/cache-db/src/main/kotlin/org/veupathdb/vdi/lib/db/cache/sql/select/select-all-sync-control.kt @@ -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),