Skip to content

Commit

Permalink
typo on column type
Browse files Browse the repository at this point in the history
  • Loading branch information
123joshuawu committed Nov 27, 2020
1 parent 0cc8a01 commit fef1963
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ final class PostgresKgQueryStore @Inject()(configProvider: PostgresStoreConfigPr
private implicit val getKgEdge = GetResult(r => KgEdge(
id = r.rs.getString("id"),
labels = r.rs.getArray("labels").asInstanceOf[Array[Any]].toList.map(_.toString),
`object` = r.rs.getArray("object"),
`object` = r.rs.getString("object"),
predicate = r.rs.getString("predicate"),
sentences = (r.rs.getString("sentences")).split(SentencesDelimChar).toList,
sourceIds = r.rs.getArray("sourceIds").asInstanceOf[Array[Any]].toList.map(_.toString),
Expand Down

0 comments on commit fef1963

Please sign in to comment.