//! One-shot DuckDB extension installation.
use crateOxenError;
/// Install the JSON extension into DuckDB's user extensions directory so subsequent
/// connections load it without triggering the autoload flow.
///
/// Call once at startup before any parallel DuckDB use. Concurrent first-use autoloads
/// race on the extension file's temp→final rename (`Could not move file: Access is
/// denied` on Windows, comparable timing hazards elsewhere); preinstalling closes that
/// window.