Skip to content

Commit 14e47d9

Browse files
committed
Bump Clang.jl version and regenerate bindings
1 parent 49bcb3d commit 14e47d9

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

gen/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ Clang = "40e3b903-d033-50b4-a0cc-940c62c95e31"
33
SQLite_jll = "76ed43ae-9a5d-5a62-8c75-30186b810ce8"
44

55
[compat]
6-
Clang = "0.15"
6+
Clang = "0.16"
77
SQLite_jll = "3"

src/capi.jl

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1291,6 +1291,10 @@ function sqlite3_db_handle(arg1)
12911291
@ccall libsqlite.sqlite3_db_handle(arg1::Ptr{sqlite3_stmt})::Ptr{sqlite3}
12921292
end
12931293

1294+
function sqlite3_db_name(db, N)
1295+
@ccall libsqlite.sqlite3_db_name(db::Ptr{sqlite3}, N::Cint)::Ptr{Cchar}
1296+
end
1297+
12941298
function sqlite3_db_filename(db, zDbName)
12951299
@ccall libsqlite.sqlite3_db_filename(
12961300
db::Ptr{sqlite3},
@@ -2119,11 +2123,11 @@ end
21192123

21202124
# Skipping MacroDefinition: SQLITE_EXTERN extern
21212125

2122-
const SQLITE_VERSION = "3.38.4"
2126+
const SQLITE_VERSION = "3.39.2"
21232127

2124-
const SQLITE_VERSION_NUMBER = 3038004
2128+
const SQLITE_VERSION_NUMBER = 3039002
21252129

2126-
const SQLITE_SOURCE_ID = "2022-05-04 15:45:55 d402f49871152670a62f4f28cacb15d814f2c1644e9347ad7d258e562978e45e"
2130+
const SQLITE_SOURCE_ID = "2022-07-21 15:24:47 698edb77537b67c41adc68f9b892db56bcf9a55e00371a61420f3ddd668e6603"
21272131

21282132
const SQLITE_OK = 0
21292133

0 commit comments

Comments
 (0)