Skip to content

Commit e6baa32

Browse files
committed
bindings/rust: fix genomicsqlite_vacuum_sql
1 parent 215b312 commit e6baa32

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

bindings/rust/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ pub struct RefSeq {
169169
pub meta_json: Object,
170170
}
171171

172-
/// Methods for GenomicSQLite [rusqlite::Connection]s; see [Programming Guide](https://mlin.github.io/GenomicSQLite/guide/#tuning-options)
172+
/// Methods for GenomicSQLite [rusqlite::Connection]s; see [Programming Guide](https://mlin.github.io/GenomicSQLite/guide/)
173173
/// for each method's semantics. The methods can also be invoked on an open
174174
/// [rusqlite::Transaction], via its implicit `Deref<Target=Connection>`.
175175
pub trait ConnectionMethods {
@@ -255,7 +255,7 @@ impl ConnectionMethods for Connection {
255255
) -> Result<String> {
256256
query1str(
257257
self,
258-
"SELECT genomicsqlite_version(?,?,?)",
258+
"SELECT genomicsqlite_attach_sql(?,?,?)",
259259
params![path.as_ref().to_str(), schema_name, config.dump()],
260260
)
261261
}

0 commit comments

Comments
 (0)