OSDN Git Service

add sqlite vendor (#48)
authorwz <mars@bytom.io>
Thu, 25 Apr 2019 08:43:36 +0000 (16:43 +0800)
committerPaladz <yzhu101@uottawa.ca>
Thu, 25 Apr 2019 08:43:36 +0000 (16:43 +0800)
commit069119567369774d3b4bd21475107393fc475a3e
tree259219325204a95a16465655850f83a2b5d19c9d
parenta610137f74935d5c162b5da86ab28c3cb71cdba5
add sqlite vendor (#48)
68 files changed:
vendor/github.com/mattn/go-sqlite3/.gitignore [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/.travis.yml [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/LICENSE [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/README.md [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/_example/custom_func/main.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/_example/hook/hook.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/_example/limit/limit.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/_example/mod_regexp/Makefile [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/_example/mod_regexp/extension.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/_example/mod_regexp/sqlite3_mod_regexp.c [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/_example/mod_vtable/Makefile [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/_example/mod_vtable/extension.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/_example/mod_vtable/picojson.h [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/_example/mod_vtable/sqlite3_mod_vtable.cc [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/_example/simple/simple.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/_example/trace/main.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/_example/vtable/main.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/_example/vtable/vtable.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/backup.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/backup_test.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/callback.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/callback_test.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/doc.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/error.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/error_test.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3-binding.c [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3-binding.h [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_context.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_func_crypt.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_func_crypt_test.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_go18.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_go18_test.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_libsqlite3.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_load_extension.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_load_extension_omit.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_opt_allow_uri_authority.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_opt_app_armor.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_opt_foreign_keys.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_opt_fts3_test.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_opt_fts5.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_opt_icu.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_opt_introspect.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_opt_json1.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_opt_secure_delete.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_opt_secure_delete_fast.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_opt_stat4.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_opt_unlock_notify.c [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_opt_unlock_notify.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_opt_unlock_notify_test.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_opt_userauth.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_opt_userauth_omit.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_opt_userauth_test.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_opt_vacuum_full.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_opt_vacuum_incr.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_opt_vtable.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_opt_vtable_test.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_other.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_solaris.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_test.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_trace.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_type.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_usleep_windows.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3_windows.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/sqlite3ext.h [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/static_mock.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/upgrade/package.go [new file with mode: 0644]
vendor/github.com/mattn/go-sqlite3/upgrade/upgrade.go [new file with mode: 0644]