Skip to content

Commit 2e0307f

Browse files
committed
Fix tests and 0.6/0.7 compat
1 parent 132860c commit 2e0307f

File tree

2 files changed

+20
-9
lines changed

2 files changed

+20
-9
lines changed

src/SQLite.jl

+8-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ module SQLite
44
using Missings, DataStreams, WeakRefStrings, LegacyStrings, DataFrames
55
import LegacyStrings: UTF16String
66

7+
if VERSION < v"0.7.0-DEV.2562"
8+
import Base: finalizer
9+
finalizer(f::Function, o) = finalizer(o, f)
10+
end
11+
712
export Data, DataFrame
813

914
struct SQLiteException <: Exception
@@ -38,7 +43,7 @@ mutable struct DB
3843
f = isempty(f) ? f : expanduser(f)
3944
if @OK sqliteopen(f, handle)
4045
db = new(f, handle[], 0)
41-
finalizer(db, _close)
46+
finalizer(_close, db)
4247
return db
4348
else # error
4449
sqlite3_close(handle[])
@@ -67,7 +72,7 @@ mutable struct Stmt
6772
handle = Ref{Ptr{Void}}()
6873
sqliteprepare(db, sql, handle, Ref{Ptr{Void}}())
6974
stmt = new(db, handle[])
70-
finalizer(stmt, _close)
75+
finalizer(_close, stmt)
7176
return stmt
7277
end
7378
end
@@ -182,7 +187,7 @@ end
182187

183188
# magic bytes that indicate that a value is in fact a serialized julia value, instead of just a byte vector
184189
# const SERIALIZATION = UInt8[0x11,0x01,0x02,0x0d,0x53,0x65,0x72,0x69,0x61,0x6c,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x23]
185-
if VERSION < v"0.7-dev"
190+
if VERSION < v"0.7.0-DEV.1833"
186191
const SERIALIZATION = UInt8[0x34,0x10,0x01,0x0d,0x53,0x65,0x72,0x69,0x61,0x6c,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x1f]
187192
else
188193
const SERIALIZATION = UInt8[0x37,0x4a,0x4c,0x07,0x04,0x00,0x00,0x00,0x34,0x10,0x01,0x0d,0x53,0x65,0x72,0x69,0x61,0x6c]

test/runtests.jl

+12-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
using SQLite
22
using Base.Test, Missings, WeakRefStrings, DataStreams, DataFrames
33

4+
if Base.VERSION < v"0.7.0-DEV.2575"
5+
const Dates = Base.Dates
6+
else
7+
import Dates
8+
end
9+
410
import Base: +, ==
511

612
dbfile = joinpath(dirname(@__FILE__),"Chinook_Sqlite.sqlite")
@@ -45,17 +51,17 @@ r = SQLite.query(db,"select * from temp limit 10")
4551
@test all(Bool[x == 2014 for x in r[4]])
4652
@test length(SQLite.query(db,"alter table temp add column dates blob")) == 0
4753
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))
4955
SQLite.execute!(stmt)
5056
finalize(stmt); stmt = nothing; gc()
5157
r = SQLite.query(db,"select * from temp limit 10")
5258
@test length(r) == 5
5359
@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]])
5662
@test length(SQLite.query(db,"drop table temp")) == 0
5763

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])
5965
sink = SQLite.Sink(db, "temp", Data.schema(dt))
6066
SQLite.load(sink, dt)
6167
r = SQLite.query(db,"select * from $(sink.tablename)")
@@ -92,14 +98,14 @@ r = SQLite.query(db, "select * from $(sink.tablename)")
9298
@test all([typeof(i) for i in r[1]] .== Float64)
9399
SQLite.drop!(db, "$(sink.tablename)")
94100

95-
rng = Date(2013):Dates.Day(1):Date(2013,1,5)
101+
rng = Dates.Date(2013):Dates.Day(1):Dates.Date(2013,1,5)
96102
dt = DataFrame(i=collect(rng), j=collect(rng))
97103
sink = SQLite.Sink(db, "temp", Data.schema(dt))
98104
SQLite.load(sink, dt)
99105
r = SQLite.query(db, "select * from $(sink.tablename)")
100106
@test size(Data.schema(r)) == (5,2)
101107
@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)
103109
SQLite.drop!(db, "$(sink.tablename)")
104110

105111
SQLite.query(db, "CREATE TABLE temp AS SELECT * FROM Album")

0 commit comments

Comments
 (0)