Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,6 @@ internal class ColumnAccessorImpl<T>(val path: ColumnPath) : ColumnAccessor<T> {
override fun getValue(row: AnyRow) = path.getValue(row) as T

override fun getValueOrNull(row: AnyRow) = path.getValueOrNull(row) as T

override fun toString(): String = path().toString()
}
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ class GetTests {
shouldThrow<IllegalArgumentException> { row.getValue(c) }
shouldThrow<IllegalArgumentException> { row.getValue(A::c) }

val throwable = shouldThrow<IllegalArgumentException> { df[column<Int>("c")] }
throwable.message shouldContain "Column not found: '[c]'"

val added = df.add(A::c) { "3" }[0]

shouldThrow<ClassCastException> { added.getValue(c) + 1 }
Expand Down
Loading