Skip to content

Commit 4af0270

Browse files
committed
wikis created
1 parent 7f3b0f3 commit 4af0270

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ function createTable(nam, cols, opt={}, z='') {
2222
* @param {string} tab table name
2323
* @param {string} exp index expression
2424
* @param {object} opt options {method}
25-
* @param {string} opt.method index method (btree)
25+
* @param {string} opt.method index method (null => btree)
2626
* @param {string} z please dont use
27-
* @returns {string} SQL query
27+
* @returns {string} SQL command
2828
*/
2929
function createIndex(nam, tab, exp, opt={}, z='') {
3030
z += `CREATE INDEX IF NOT EXISTS "${nam}" ON "${tab}" `;
@@ -64,7 +64,7 @@ function addRow(val, z='', i=0) {
6464
/**
6565
* Generates SQL command for INSERT INTO.
6666
* @param {string} tab table name
67-
* @param {Stream<object>} strm a readable stream with row objects {column: value}
67+
* @param {Stream<object>} strm readable stream with row objects {column: value}
6868
* @param {object} opt options {pk}
6969
* @param {string} opt.pk primary key, on conflict (null => none)
7070
* @param {string} z please dont use

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "extra-sql",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "SQL is designed for managing or stream processing data in an RDBMS.",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)