Skip to content

Commit

Permalink
Fix column names for new view
Browse files Browse the repository at this point in the history
  • Loading branch information
dmgaldi committed Jan 30, 2024
1 parent 691ef6c commit 81a6483
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ private VDIDatasetReference datasetFromResultSet(ResultSet resultSet) throws SQL
VDIDatasetReference row = new VDIDatasetReference();
row.setDescription(resultSet.getString("description"));
row.setId(resultSet.getString("user_dataset_id"));
row.setType(resultSet.getString("type_name"));
row.setType(resultSet.getString("type"));
row.setDescription(resultSet.getString("description"));
row.setName(resultSet.getString("name"));
return row;
Expand Down

0 comments on commit 81a6483

Please sign in to comment.