Skip to content

Commit e9d65e0

Browse files
committed
Fix DBInterface.close!
1 parent 0427a2c commit e9d65e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dbinterface.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ DBInterface.execute(conn::DBConnection, args...; kws...) = execute(conn.conn, ar
88
DBInterface.execute(conn::DBConnection, str::AbstractString; kws...) = execute(conn.conn, str; kws...)
99
DBInterface.execute(conn::DBConnection, str::AbstractString, params; kws...) = execute(conn.conn, str, params; kws...)
1010
DBInterface.execute(stmt::Statement, args...; kws...) = execute(stmt, args...; kws...)
11-
DBInterface.close!(conn::DBConnection) = close(conn)
11+
DBInterface.close!(conn::DBConnection) = close(conn.conn)

0 commit comments

Comments
 (0)