Thu, 20 Feb 2025 01:42:21 UTC | login

Information for build sqlite-3.47.2-2.fc42

ID347158
Package Namesqlite
Version3.47.2
Release2.fc42
Epoch
Sourcegit+https://src.fedoraproject.org/rpms/sqlite.git#08f77f0cd43e59c4caeb7f2ca369e757cc669867
SummaryLibrary that implements an embeddable SQL database engine
DescriptionSQLite is a C library that implements an SQL database engine. A large subset of SQL92 is supported. A complete database is stored in a single disk file. The API is designed for convenience and ease of use. Applications that link against SQLite can enjoy the power and flexibility of an SQL database without the administrative hassles of supporting a separate database server. Version 2 and version 3 binaries are named to permit each to be installed on a single host SQLite is built with some non-default settings: - Additional APIs for table's and query's metadata are enabled (SQLITE_ENABLE_COLUMN_METADATA) - Directory syncs are disabled (SQLITE_DISABLE_DIRSYNC) - `secure_delete` defaults to 'on', so deleted content is overwritten with zeros (SQLITE_SECURE_DELETE) - `sqlite3_unlock_notify()` is enabled - this feature allows to register a callback that's invoked when lock is removed (SQLITE_ENABLE_UNLOCK_NOTIFY) - `dbstat` virtual table with disk space usage is enabled - `dbpage` virtual table providing direct access to underlying database file is enabled (SQLITE_ENABLE_DBPAGE_VTAB) - Threadsafe mode is set to 1 - Serialized, so it is safe to use in a multithreaded environment (SQLITE_THREADSAFE=1) - FTS3, FTS4 and FTS5 are enabled so versions 3 to 5 of the full-text search engine are available (SQLITE_ENABLE_FTS3, SQLITE_ENABLE_FTS4, SQLITE_ENABLE_FTS5) - Pattern parser in FTS3 extension supports nested parenthesis and operators `AND`, `OR` (SQLITE_ENABLE_FTS3_PARENTHESIS) - R*Tree index extension is enabled (SQLITE_ENABLE_RTREE) - Extension loading is enabled - Sessions (sqlite-session feature) is enabled - Preupdate hook is enabled It is also important to note that shell has some extensions as its dependencies, so some extensions are enabled by default in SQLite shell, but not in the system libraries. Only the aforementioned extensions are available in the libraries: FTS3, FTS4, FTS5, R*Tree
Built bydavidlt
State complete
Volume DEFAULT
StartedWed, 22 Jan 2025 09:26:41 UTC
CompletedWed, 22 Jan 2025 12:38:22 UTC
Taskbuild (f42, /rpms/sqlite.git:08f77f0cd43e59c4caeb7f2ca369e757cc669867)
Extra{'source': {'original_url': 'git+https://src.fedoraproject.org/rpms/sqlite.git#08f77f0cd43e59c4caeb7f2ca369e757cc669867'}}
Tags
f42
RPMs
src
sqlite-3.47.2-2.fc42.src.rpm (info) (download)
noarch
sqlite-doc-3.47.2-2.fc42.noarch.rpm (info) (download)
riscv64
lemon-3.47.2-2.fc42.riscv64.rpm (info) (download)
sqlite-3.47.2-2.fc42.riscv64.rpm (info) (download)
sqlite-analyzer-3.47.2-2.fc42.riscv64.rpm (info) (download)
sqlite-debug-3.47.2-2.fc42.riscv64.rpm (info) (download)
sqlite-devel-3.47.2-2.fc42.riscv64.rpm (info) (download)
sqlite-libs-3.47.2-2.fc42.riscv64.rpm (info) (download)
sqlite-tcl-3.47.2-2.fc42.riscv64.rpm (info) (download)
sqlite-tools-3.47.2-2.fc42.riscv64.rpm (info) (download)
lemon-debuginfo-3.47.2-2.fc42.riscv64.rpm (info) (download)
sqlite-analyzer-debuginfo-3.47.2-2.fc42.riscv64.rpm (info) (download)
sqlite-debug-debuginfo-3.47.2-2.fc42.riscv64.rpm (info) (download)
sqlite-debuginfo-3.47.2-2.fc42.riscv64.rpm (info) (download)
sqlite-debugsource-3.47.2-2.fc42.riscv64.rpm (info) (download)
sqlite-libs-debuginfo-3.47.2-2.fc42.riscv64.rpm (info) (download)
sqlite-tcl-debuginfo-3.47.2-2.fc42.riscv64.rpm (info) (download)
sqlite-tools-debuginfo-3.47.2-2.fc42.riscv64.rpm (info) (download)
Logs
riscv64
hw_info.log
root.log
build.log
state.log
mock_output.log
noarch_rpmdiff.json
Changelog * Tue Jan 16 2024 Ales Nezbeda <anezbeda@redhat.com> - 3.47.2-2 - Enabled sqlite-session feature