mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-26 11:31:37 +08:00
Clarify that the submodules of rusqlite::vtab
are ports (#672)
This commit is contained in:
parent
0c0d45f714
commit
3196989f0d
@ -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
|
//! Note: `rarray`, not `carray` is the name of the table valued function we
|
||||||
//! define.
|
//! 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
|
//! # Example
|
||||||
//!
|
//!
|
||||||
|
@ -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
|
//! # Example
|
||||||
//!
|
//!
|
||||||
|
@ -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::default::Default;
|
||||||
use std::os::raw::c_int;
|
use std::os::raw::c_int;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user