Skip to content

Commit

Permalink
Merge pull request #176 from davidanthoff/fix-indexedtables
Browse files Browse the repository at this point in the history
Fix IndexedTables tests
  • Loading branch information
davidanthoff authored Apr 17, 2018
2 parents 85b5360 + 40703b6 commit f7deda6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions test/test_indexedtables.jl
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
using IndexedTables

source_indexedtable = IndexedTable(Columns(city = [fill("New York",3); fill("Boston",3)],
date = repmat(Date(2016,7,6):Date(2016,7,8), 2)),
Columns(value=[91,89,91,95,83,76]))
source_indexedtable = table([fill("New York",3); fill("Boston",3)],
repmat(Date(2016,7,6):Date(2016,7,8), 2),[91,89,91,95,83,76], names=[:city, :date, :value])

q = @from i in source_indexedtable begin
@where i.city=="New York"
Expand Down

0 comments on commit f7deda6

Please sign in to comment.