Skip to content

Commit ba06788

Browse files
committed
Fix a type in the new deserialize code
1 parent eddc82f commit ba06788

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SQLite.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,10 +175,10 @@ function sqldeserialize(r)
175175
if ret == 0
176176
try
177177
v = deserialize(IOBuffer(r))
178+
return v.object
178179
catch e
179180
throw(SerializeError("Error deserializing non-primitive value out of database; this is probably due to using SQLite.jl with a different Julia version than was used to originally serialize the database values. The same Julia version that was used to serialize should be used to extract the database values into a different format (csv file, feather file, etc.) and then loaded back into the sqlite database with the current Julia version."))
180181
end
181-
return v.object
182182
else
183183
return r
184184
end

0 commit comments

Comments
 (0)