sqlite_smoke: header reflects the #import c unit (no more -L story)

This commit is contained in:
agra
2026-06-12 17:28:23 +03:00
parent 85636feb7b
commit 5a0d6a8aa1

View File

@@ -1,10 +1,11 @@
// Pinned acceptance for P5.1 — the VENDORED SQLite is linked and usable
// through src/db/sqlite.sx.
// Pinned acceptance for P5.1 — the VENDORED SQLite is compiled and
// usable through src/db/sqlite.sx's `#import c` unit.
//
// * version: sqlite3_libversion() equals the vendored amalgamation's
// version (vendor/sqlite/README.md) — a silent fallback to the OS
// libsqlite3 fails here, in both `sx run` (dlopen via -L
// build/vendor/jit) and `sx build` (static link via -L build/vendor).
// libsqlite3 fails here, in both `sx run` (the unit's dylib is a
// priority symbol target ahead of the process images) and
// `sx build` (the unit's objects link into the binary).
// * round trip: create table, INSERT via bound parameters (text +
// int64 + null), SELECT back with WHERE binding, typed columns.
// * persistence: rows survive close + reopen of the same file.