|
1 | 1 | using SQLite
|
2 | 2 | using Base.Test, Missings, WeakRefStrings, DataStreams, DataFrames
|
3 | 3 |
|
| 4 | +if Base.VERSION < v"0.7.0-DEV.2575" |
| 5 | + const Dates = Base.Dates |
| 6 | +else |
| 7 | + import Dates |
| 8 | +end |
| 9 | + |
4 | 10 | import Base: +, ==
|
5 | 11 |
|
6 | 12 | dbfile = joinpath(dirname(@__FILE__),"Chinook_Sqlite.sqlite")
|
@@ -45,17 +51,17 @@ r = SQLite.query(db,"select * from temp limit 10")
|
45 | 51 | @test all(Bool[x == 2014 for x in r[4]])
|
46 | 52 | @test length(SQLite.query(db,"alter table temp add column dates blob")) == 0
|
47 | 53 | stmt = SQLite.Stmt(db,"update temp set dates = ?")
|
48 |
| -SQLite.bind!(stmt,1,Date(2014,1,1)) |
| 54 | +SQLite.bind!(stmt,1,Dates.Date(2014,1,1)) |
49 | 55 | SQLite.execute!(stmt)
|
50 | 56 | finalize(stmt); stmt = nothing; gc()
|
51 | 57 | r = SQLite.query(db,"select * from temp limit 10")
|
52 | 58 | @test length(r) == 5
|
53 | 59 | @test size(Data.schema(r)) == (10,5)
|
54 |
| -@test typeof(r[5][1]) == Date |
55 |
| -@test all(Bool[x == Date(2014,1,1) for x in r[5]]) |
| 60 | +@test typeof(r[5][1]) == Dates.Date |
| 61 | +@test all(Bool[x == Dates.Date(2014,1,1) for x in r[5]]) |
56 | 62 | @test length(SQLite.query(db,"drop table temp")) == 0
|
57 | 63 |
|
58 |
| -dt = DataFrame(eye(5)) |
| 64 | +dt = DataFrame([1.0 0.0 0.0 0.0 0.0; 0.0 1.0 0.0 0.0 0.0; 0.0 0.0 1.0 0.0 0.0; 0.0 0.0 0.0 1.0 0.0; 0.0 0.0 0.0 0.0 1.0]) |
59 | 65 | sink = SQLite.Sink(db, "temp", Data.schema(dt))
|
60 | 66 | SQLite.load(sink, dt)
|
61 | 67 | r = SQLite.query(db,"select * from $(sink.tablename)")
|
@@ -92,14 +98,14 @@ r = SQLite.query(db, "select * from $(sink.tablename)")
|
92 | 98 | @test all([typeof(i) for i in r[1]] .== Float64)
|
93 | 99 | SQLite.drop!(db, "$(sink.tablename)")
|
94 | 100 |
|
95 |
| -rng = Date(2013):Dates.Day(1):Date(2013,1,5) |
| 101 | +rng = Dates.Date(2013):Dates.Day(1):Dates.Date(2013,1,5) |
96 | 102 | dt = DataFrame(i=collect(rng), j=collect(rng))
|
97 | 103 | sink = SQLite.Sink(db, "temp", Data.schema(dt))
|
98 | 104 | SQLite.load(sink, dt)
|
99 | 105 | r = SQLite.query(db, "select * from $(sink.tablename)")
|
100 | 106 | @test size(Data.schema(r)) == (5,2)
|
101 | 107 | @test all([i for i in r[1]] .== rng)
|
102 |
| -@test all([typeof(i) for i in r[1]] .== Date) |
| 108 | +@test all([typeof(i) for i in r[1]] .== Dates.Date) |
103 | 109 | SQLite.drop!(db, "$(sink.tablename)")
|
104 | 110 |
|
105 | 111 | SQLite.query(db, "CREATE TABLE temp AS SELECT * FROM Album")
|
|
0 commit comments