We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9b3695 commit 3f15c07Copy full SHA for 3f15c07
test/runtests.jl
@@ -234,8 +234,8 @@ Data.stream!(dt, sink)
234
Data.close!(sink)
235
dt2 = SQLite.query(db, "Select * from temp")
236
#There might be a better way to check this
237
-@test dt.columns[1][1].value==dt2.columns[1][1].value
238
-@test dt.columns[1][2].isnull==dt2.columns[1][2].isnull
+@test get(dt.columns[1][1]) == get(dt2.columns[1][1])
+@test isnull(dt.columns[1][2]) == isnull(dt2.columns[1][2])
239
240
#Test removeduplicates!
241
db = SQLite.DB() #In case the order of tests is changed
0 commit comments