mirror of
				https://github.com/isar/rusqlite.git
				synced 2025-10-31 22:08:55 +08:00 
			
		
		
		
	Clarify that the submodules of rusqlite::vtab are ports (#672)
				
					
				
			This commit is contained in:
		| @@ -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 | ||||
| //! | ||||
|   | ||||
| @@ -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 | ||||
| //! | ||||
|   | ||||
| @@ -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; | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user