Clarify that the submodules of rusqlite::vtab are ports (#672)

This commit is contained in:
Thom Chiovoloni 2020-04-06 11:04:45 -07:00 committed by GitHub
parent 0c0d45f714
commit 3196989f0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 6 deletions

View File

@ -1,9 +1,10 @@
//! `feature = "array"` Array Virtual Table: https://www.sqlite.org/carray.html
//! `feature = "array"` Array Virtual Table.
//!
//! Note: `rarray`, not `carray` is the name of the table valued function we
//! define.
//!
//! Port of [carray](http://www.sqlite.org/cgi/src/finfo?name=ext/misc/carray.c) C extension.
//! Port of [carray](http://www.sqlite.org/cgi/src/finfo?name=ext/misc/carray.c)
//! C extension: https://www.sqlite.org/carray.html
//!
//! # Example
//!

View File

@ -1,6 +1,7 @@
//! `feature = "csvtab"` CSV Virtual Table: https://www.sqlite.org/csv.html
//! `feature = "csvtab"` CSV Virtual Table.
//!
//! Port of [csv](http://www.sqlite.org/cgi/src/finfo?name=ext/misc/csv.c) C extension.
//! Port of [csv](http://www.sqlite.org/cgi/src/finfo?name=ext/misc/csv.c) C
//! extension: https://www.sqlite.org/csv.html
//!
//! # Example
//!

View File

@ -1,6 +1,8 @@
//! `feature = "series"` Generate series virtual table: https://www.sqlite.org/series.html
//! `feature = "series"` Generate series virtual table.
//!
//! Port of C [generate series "function"](http://www.sqlite.org/cgi/src/finfo?name=ext/misc/series.c).
//! Port of C [generate series
//! "function"](http://www.sqlite.org/cgi/src/finfo?name=ext/misc/series.c):
//! https://www.sqlite.org/series.html
use std::default::Default;
use std::os::raw::c_int;