core-lightning/doc/schemas/lightning-sql-template.json
Rusty Russell 7f2aedc76f common: BOLT update: option_anchors_zero_fee_htlc_tx is now simply "option_anchors".
This is a difficult transition for us: this string appears in channel
types.  We make the transition now in the understanding that it will
be more difficult in future.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>

Changelog-Deprecated: JSON-RPC: `listpeers` `features` array string "option_anchors_zero_fee_htlc_tx": use "option_anchors" (spec renamed it).
Changelog-Added: JSON-RPC: `listpeers` `features` array string uses "option_anchors" for feature 22/23, following renaming in BOLT 9.
Changelog-Changed: JSON-RPC: `listclosedchannels`, `listpeerchannels`, `openchannel_update`, `openchannel_init`, `fundchannel`, `fundchannel_start` and `multifundchannel`: `channel_type` array `names` now contains "anchors" instead of "anchors_zero_fee_htlc_tx".
Changelog-Changed: lightningd: `--list-features-only` now lists "option_anchors" instead of "option_anchors_zero_fee_htlc_tx".
2024-06-19 15:54:24 +09:30

268 lines
7.8 KiB
JSON

{
"$schema": "../rpc-schema-draft.json",
"type": "object",
"additionalProperties": false,
"added": "v23.02",
"rpc": "sql",
"title": "Command to do complex queries on list commands",
"description": [
"The **sql** RPC command runs the given query across a sqlite3 database created from various list commands.",
"",
"When tables are accessed, it calls the below commands, so it's no faster than any other local access (though it goes to great length to cache `listnodes` and `listchannels`) which then processes the results.",
"",
"It is, however faster for remote access if the result of the query is much smaller than the list commands would be."
],
"request": {
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": [
"The standard sqlite3 query to run.",
"Note that queries like \"SELECT *\" are fragile, as columns will change across releases; see lightning-listsqlschemas(7)."
]
}
}
},
"response": {
"required": [
"rows"
],
"properties": {
"rows": {
"type": "array",
"items": {
"type": "array"
}
},
"warning_db_failure": {
"type": "string",
"description": [
"A message if the database encounters an error partway through."
]
}
},
"pre_return_value_notes": [
"On success, an object containing **rows** is returned. It is an array. Each array entry contains an array of values, each an integer, real number, string or *null*, depending on the sqlite3 type.",
"",
"The object may contain **warning_db_failure** if the database fails partway through its operation."
]
},
"treatment_of_types": [
"The following types are supported in schemas, and this shows how they are presented in the database. This matters: a JSON boolean is represented as an integer in the database, so a query will return 0 or 1, not true or false.",
"",
"* *hex*. A hex string.",
" * JSON: a string",
" * sqlite3: BLOB",
"",
"* *hash*/*secret*/*pubkey*/*txid*: just like *hex*.",
"",
"* *msat*/*integer*/*u64*/*u32*/*u16*/*u8*. Normal numbers.",
" * JSON: an unsigned integer",
" * sqlite3: INTEGER",
"",
"* *boolean*. True or false.",
" * JSON: literal **true** or **false**",
" * sqlite3: INTEGER",
"",
"* *number*. A floating point number (used for times in some places).",
" * JSON: number",
" * sqlite3: REAL",
"",
"* *string*. Text.",
" * JSON: string",
" * sqlite3: TEXT",
"",
"* *short_channel_id*. A short-channel-id of form 1x2x3.",
" * JSON: string",
" * sqlite3: TEXT"
],
"permitted_sqlite3_functions": [
"Writing to the database is not permitted, and limits are placed on various other query parameters.",
"",
"Additionally, only the following functions are allowed:",
"",
"* abs",
"* avg",
"* coalesce",
"* count",
"* hex",
"* quote",
"* length",
"* like",
"* lower",
"* upper",
"* min",
"* max",
"* sum",
"* total"
],
"tables": [
"Note that the first column of every table is a unique integer called `rowid`: this is used for related tables to refer to specific rows in their parent. sqlite3 usually has this as an implicit column, but we make it explicit as the implicit version is not allowed to be used as a foreign key.",
""
],
"errors": [
"On failure, an error is returned."
],
"example_usage": [
"Here are some example using lightning-cli. Note that you may need to use `-o` if you use queries which contain `=` (which make lightning-cli(1) default to keyword style):",
"",
"A simple peer selection query:",
"",
"```shell",
"$ lightning-cli sql \"SELECT id FROM peers\"",
"{",
" \"rows\": [",
" [",
" \"02ba9965e3db660385bd1dd2c09dd032e0f2179a94fc5db8917b60adf0b363da00\"",
" ]",
" ]",
"}",
"```",
"",
"A statement containing using `=` needs `-o`:",
"",
"```shell",
"$ lightning-cli sql -o \"SELECT node_id,last_timestamp FROM nodes WHERE last_timestamp>=1669578892\"",
"{",
" \"rows\": [",
" [",
" \"02ba9965e3db660385bd1dd2c09dd032e0f2179a94fc5db8917b60adf0b363da00\",",
" 1669601603",
" ]",
" ]",
"}",
"```",
"",
"If you want to compare a BLOB column, `x'hex'` or `X'hex'` are needed:",
"",
"```shell",
"$ lightning-cli sql -o \"SELECT nodeid FROM nodes WHERE nodeid != x'03c9d25b6c0ce4bde5ad97d7ab83f00ae8bd3800a98ccbee36f3c3205315147de1';\"",
"{",
" \"rows\": [",
" [",
" \"0214739d625944f8fdc0da9d2ef44dbd7af58443685e494117b51410c5c3ff973a\"",
" ],",
" [",
" \"02ba9965e3db660385bd1dd2c09dd032e0f2179a94fc5db8917b60adf0b363da00\"",
" ]",
" ]",
"}",
"$ lightning-cli sql -o \"SELECT nodeid FROM nodes WHERE nodeid IN (x'03c9d25b6c0ce4bde5ad97d7ab83f00ae8bd3800a98ccbee36f3c3205315147de1', x'02ba9965e3db660385bd1dd2c09dd032e0f2179a94fc5db8917b60adf0b363da00')\"",
"{",
" \"rows\": [",
" [",
" \"02ba9965e3db660385bd1dd2c09dd032e0f2179a94fc5db8917b60adf0b363da00\"",
" ],",
" [",
" \"03c9d25b6c0ce4bde5ad97d7ab83f00ae8bd3800a98ccbee36f3c3205315147de1\"",
" ]",
" ]",
"}",
"```",
"",
"Related tables are usually referenced by JOIN:",
"",
"```shell",
"$ lightning-cli sql -o \"SELECT nodeid, alias, nodes_addresses.type, nodes_addresses.port, nodes_addresses.address FROM nodes INNER JOIN nodes_addresses ON nodes_addresses.row = nodes.rowid\"",
"{",
" \"rows\": [",
" [",
" \"02ba9965e3db660385bd1dd2c09dd032e0f2179a94fc5db8917b60adf0b363da00\",",
" \"YELLOWWATCH-22.11rc2-31-gcd7593b\",",
" \"dns\",",
" 7272,",
" \"localhost\"",
" ],",
" [",
" \"0214739d625944f8fdc0da9d2ef44dbd7af58443685e494117b51410c5c3ff973a\",",
" \"HOPPINGSQUIRREL-1rc2-31-gcd7593b\",",
" \"dns\",",
" 7171,",
" \"localhost\"",
" ]",
" ]",
"}",
"```",
"",
"Simple function usage, in this case COUNT. Strings inside arrays need \", and ' to protect them from the shell:",
"",
"```shell",
"$ lightning-cli sql 'SELECT COUNT(*) FROM nodes\"",
"{",
" \"rows\": [",
" [",
" 3",
" ]",
" ]",
"}",
"```"
],
"json_example": [
{
"request": {
"id": "example:sql#1",
"method": "sql",
"params": [
"SELECT * FROM forwards;"
]
},
"response": {
"rows": []
}
},
{
"request": {
"id": "example:sql#2",
"method": "sql",
"params": [
"SELECT * from peerchannels_features"
]
},
"response": {
"rows": [
[
6,
1,
0,
"option_static_remotekey"
],
[
7,
1,
1,
"option_anchors"
],
[
16,
11,
0,
"option_static_remotekey"
],
[
17,
11,
1,
"option_anchors"
]
]
}
}
],
"author": [
"Rusty Russell <<rusty@rustcorp.com.au>> is mainly responsible."
],
"see_also": [
"lightning-listtransactions(7)",
"lightning-listchannels(7)",
"lightning-listpeers(7)",
"lightning-listnodes(7)",
"lightning-listforwards(7)"
],
"resources": [
"Main web site: <https://github.com/ElementsProject/lightning>"
]
}