Skip to content

Commit

Permalink
Now selecting all columns from table in CassandraRepository
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelkiessling committed Jan 12, 2016
1 parent d77c572 commit a88185c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions api/app/repositories/CassandraRepository.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ abstract class CassandraRepository[M <: Model, I](session: Session, tablename: S
def getOneRowById(id: I): Row = {
val selectStmt =
select()
.column("testresult_id")
.column("number_of_200")
.from(tablename)
.where(QueryBuilder.eq("testcase_id", id))
.limit(1)
Expand Down

0 comments on commit a88185c

Please sign in to comment.