tiny.sql.fetchHistoryFile
Defined in sync.
Source
Source: lib/sql/src/sync.zig:1443
zig
pub fn fetchFile(allocator: Allocator, local: *history_mod.History, remote: FileRemote, options: FetchOptions) Error!Stats { var lock = try lockFileRemote(allocator, remote); defer lock.release(); var remote_history = try history_mod.History.open(allocator, remote.dir, .{ .io = remote.io, .path = remote.path, .create = false, .recovery = .reject }); defer remote_history.deinit(); return try fetch(allocator, local, &remote_history, options);}Source: lib/sql/src/root.zig:153
zig
pub const fetchHistoryFile = sync.fetchFile;Audit
| Definitions | 1 |
|---|---|
| Public names | 2 |
| Members | 0 |
| Version | 26.7.0 |
| Revision | daab053ee433 |