Skip to content

Commit 6faf84d

Browse files
authored
Fix depwarns and tests for 0.5 (#51)
1 parent 57d1e68 commit 6faf84d

File tree

7 files changed

+38
-20
lines changed

7 files changed

+38
-20
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: julia
22
julia:
3-
- 0.3
43
- release
4+
- nightly
55
before_script:
66
- export OLD_PATH=$LD_LIBRARY_PATH
77
- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:`mariadb_config --libs | cut -d ' ' -f1 | sed 's/-L//'`

REQUIRE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
julia 0.3
1+
julia 0.4
22
DataFrames
33
Compat 0.7.20
44
Dates

src/api.jl

+7-1
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,14 @@ function mysql_stmt_init(mysqlptr::Ptr{Void})
150150
mysqlptr)
151151
end
152152

153+
if VERSION < v"0.5-"
154+
_utf8 = utf8
155+
else
156+
_utf8 = String
157+
end
158+
153159
function mysql_stmt_prepare(stmtptr::Ptr{MYSQL_STMT}, sql::AbstractString)
154-
s = utf8(sql)
160+
s = _utf8(sql)
155161
return ccall((:mysql_stmt_prepare, mysql_lib),
156162
Cint,
157163
(Ptr{Void}, Ptr{Cchar}, Culong),

src/results.jl

+10-4
Original file line numberDiff line numberDiff line change
@@ -112,15 +112,21 @@ Load a bytestring from `result` pointer given the field index `idx`.
112112
function mysql_load_string_from_resultptr(result, idx)
113113
deref = unsafe_load(result, idx)
114114
deref == C_NULL && return nothing
115-
strval = bytestring(deref)
115+
strval = _bytestring(deref)
116116
length(strval) == 0 && return nothing
117117
return strval
118118
end
119119

120+
if VERSION < v"0.5-"
121+
_pointer_to_array = pointer_to_array
122+
else
123+
_pointer_to_array(p, d; own=false) = unsafe_wrap(Array, p, d, own)
124+
end
125+
120126
function mysql_metadata(result::MYSQL_RES)
121127
nfields = mysql_num_fields(result)
122128
rawfields = mysql_fetch_fields(result)
123-
return pointer_to_array(rawfields, nfields)
129+
return _pointer_to_array(rawfields, nfields)
124130
end
125131

126132
function mysql_metadata(stmtptr::Ptr{MYSQL_STMT})
@@ -263,7 +269,7 @@ mysql_binary_interpret_field(buf, mysqltype) =
263269
mysql_binary_interpret_field(buf, mysql_get_ctype(mysqltype))
264270

265271
mysql_binary_interpret_field(buf, ::Type{AbstractString}) =
266-
bytestring(convert(Ptr{Cchar}, buf))
272+
_bytestring(convert(Ptr{Cchar}, buf))
267273

268274
function mysql_binary_interpret_field(buf, T::Type)
269275
value = unsafe_load(convert(Ptr{T}, buf), 1)
@@ -342,7 +348,7 @@ Initialize a dataframe for prepared statement results.
342348
mysql_init_dataframe(meta::Array{MYSQL_FIELD}, nrows) =
343349
mysql_init_dataframe(MySQLMetadata(meta), nrows)
344350
mysql_init_dataframe(meta, nrows) =
345-
DataFrame(meta.jtypes, map(symbol, meta.names), @compat Int64(nrows))
351+
DataFrame(meta.jtypes, map(Symbol, meta.names), @compat Int64(nrows))
346352

347353
function mysql_result_to_dataframe(hndl::MySQLHandle)
348354
meta = mysql_metadata(hndl.stmtptr)

src/types.jl

+9-3
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,13 @@ type MySQLInternalError <: MySQLError
193193
end
194194
end
195195

196-
Base.showerror(io::IO, e::MySQLInternalError) = print(io, bytestring(mysql_error(e.con)))
196+
if VERSION < v"0.5-"
197+
_bytestring = bytestring
198+
else
199+
_bytestring = unsafe_string
200+
end
201+
202+
Base.showerror(io::IO, e::MySQLInternalError) = print(io, _bytestring(mysql_error(e.con)))
197203

198204
# Internal errors that happen when using prepared statements
199205
type MySQLStatementError <: MySQLError
@@ -209,7 +215,7 @@ type MySQLStatementError <: MySQLError
209215
end
210216

211217
Base.showerror(io::IO, e::MySQLStatementError) =
212-
print(io, bytestring(mysql_stmt_error(e.stmt)))
218+
print(io, _bytestring(mysql_stmt_error(e.stmt)))
213219

214220
# For errors that happen in MySQL.jl
215221
type MySQLInterfaceError <: MySQLError
@@ -234,7 +240,7 @@ type MySQLMetadata
234240
lens = Array(Int, nfields)
235241
is_nullables = Array(Bool, nfields)
236242
for i in 1:nfields
237-
names[i] = bytestring(fields[i].name)
243+
names[i] = _bytestring(fields[i].name)
238244
mtypes[i] = fields[i].field_type
239245
jtypes[i] = mysql_get_julia_type(fields[i].field_type)
240246
lens[i] = fields[i].field_length

test/test_basic.jl

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,27 @@ end
1010
include("test_common.jl")
1111

1212
@compat const ArrayResults = Array{Any}[
13-
[1, Nullable("John"), Nullable(10000.5f0), Nullable(convert(Date, "2015-08-03")),
13+
Any[1, Nullable("John"), Nullable(10000.5f0), Nullable(convert(Date, "2015-08-03")),
1414
Nullable(convert(DateTime, "2015-09-05 12:31:30")),
1515
Nullable(convert(DateTime, "1970-01-01 12:00:00")),
1616
Nullable(Int8(1)), Nullable("HR"), Nullable(0x01), Nullable(Int16(1301))],
1717

18-
[2, Nullable("Tom"), Nullable(20000.25f0), Nullable(convert(Date, "2015-08-04")),
18+
Any[2, Nullable("Tom"), Nullable(20000.25f0), Nullable(convert(Date, "2015-08-04")),
1919
Nullable(convert(DateTime, "2015-10-12 13:12:14")),
2020
Nullable(convert(DateTime, "1970-01-01 13:00:00")),
2121
Nullable(Int8(12)), Nullable("HR"), Nullable(0x01), Nullable(Int16(1422))],
2222

23-
[3, Nullable("Jim"), Nullable(25000.0f0), Nullable(convert(Date, "2015-06-02")),
23+
Any[3, Nullable("Jim"), Nullable(25000.0f0), Nullable(convert(Date, "2015-06-02")),
2424
Nullable(convert(DateTime, "2015-09-05 10:05:10")),
2525
Nullable(convert(DateTime, "1970-01-01 12:30:00")),
2626
Nullable(Int8(45)), Nullable("Management"), Nullable{UInt8}(), Nullable(Int16(1567))],
2727

28-
[4, Nullable("Tim"), Nullable(25000.0f0), Nullable(convert(Date, "2015-07-25")),
28+
Any[4, Nullable("Tim"), Nullable(25000.0f0), Nullable(convert(Date, "2015-07-25")),
2929
Nullable(convert(DateTime, "2015-10-10 12:12:25")),
3030
Nullable(convert(DateTime, "1970-01-01 12:30:00")),
3131
Nullable(Int8(56)), Nullable("Accounts"), Nullable(0x01), Nullable(Int16(3200))],
3232

33-
[5, Nullable{AbstractString}(), Nullable{Float32}(), Nullable{Date}(),
33+
Any[5, Nullable{AbstractString}(), Nullable{Float32}(), Nullable{Date}(),
3434
Nullable{DateTime}(), Nullable{DateTime}(),
3535
Nullable{Int8}(), Nullable{AbstractString}(), Nullable{UInt8}(), Nullable{Int16}()]]
3636

test/test_prep.jl

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,27 +18,27 @@ const DataFrameResultsPrep = DataFrame(
1818
empno=@data([1301, 1422, 1567, 3200, NA]))
1919

2020
@compat const ArrayResultsPrep = Array{Any}[
21-
[1, Nullable("John"), Nullable(10000.5f0), Nullable(convert(Date, "2015-08-03")),
21+
Any[1, Nullable("John"), Nullable(10000.5f0), Nullable(convert(Date, "2015-08-03")),
2222
Nullable(convert(DateTime, "2015-09-05 12:31:30")),
2323
Nullable(convert(DateTime, "1970-01-01 12:00:00")),
2424
Nullable(Int8(1)), Nullable{AbstractString}(), Nullable{UInt8}(), Nullable(Int16(1301))],
2525

26-
[2, Nullable("Tom"), Nullable(20000.25f0), Nullable(convert(Date, "2015-08-04")),
26+
Any[2, Nullable("Tom"), Nullable(20000.25f0), Nullable(convert(Date, "2015-08-04")),
2727
Nullable(convert(DateTime, "2015-10-12 13:12:14")),
2828
Nullable(convert(DateTime, "1970-01-01 13:00:00")),
2929
Nullable(Int8(12)), Nullable{AbstractString}(), Nullable{UInt8}(), Nullable(Int16(1422))],
3030

31-
[3, Nullable("Jim"), Nullable(25000.0f0), Nullable(convert(Date, "2015-06-02")),
31+
Any[3, Nullable("Jim"), Nullable(25000.0f0), Nullable(convert(Date, "2015-06-02")),
3232
Nullable(convert(DateTime, "2015-09-05 10:05:10")),
3333
Nullable(convert(DateTime, "1970-01-01 12:30:00")),
3434
Nullable(Int8(45)), Nullable{AbstractString}(), Nullable{UInt8}(), Nullable(Int16(1567))],
3535

36-
[4, Nullable("Tim"), Nullable(25000.0f0), Nullable(convert(Date, "2015-07-25")),
36+
Any[4, Nullable("Tim"), Nullable(25000.0f0), Nullable(convert(Date, "2015-07-25")),
3737
Nullable(convert(DateTime, "2015-10-10 12:12:25")),
3838
Nullable(convert(DateTime, "1970-01-01 12:30:00")),
3939
Nullable(Int8(56)), Nullable{AbstractString}(), Nullable{UInt8}(), Nullable(Int16(3200))],
4040

41-
[5, Nullable{AbstractString}(), Nullable{Float32}(), Nullable{Date}(),
41+
Any[5, Nullable{AbstractString}(), Nullable{Float32}(), Nullable{Date}(),
4242
Nullable{DateTime}(), Nullable{DateTime}(),
4343
Nullable{Int8}(), Nullable{AbstractString}(), Nullable{UInt8}(), Nullable{Int16}()]]
4444

0 commit comments

Comments
 (0)