diff --git a/common/gossip_store.h b/common/gossip_store.h index 5b95f052a4f1..222873bb5feb 100644 --- a/common/gossip_store.h +++ b/common/gossip_store.h @@ -44,7 +44,7 @@ struct gossip_rcvd_filter; */ struct gossip_hdr { beint16_t flags; /* Length of message after header. */ - beint16_t len; /* Length of message after header. */ + beint16_t len; /* GOSSIP_STORE_xxx_BIT flags. */ beint32_t crc; /* crc of message of timestamp, after header. */ beint32_t timestamp; /* timestamp of msg. */ }; diff --git a/doc/lightning-listsqlschemas.7.md b/doc/lightning-listsqlschemas.7.md index 13e725fce47f..52a4480191b6 100644 --- a/doc/lightning-listsqlschemas.7.md +++ b/doc/lightning-listsqlschemas.7.md @@ -84,7 +84,7 @@ On success, an object containing **schemas** is returned. It is an array of obj - **tablename** (string): the name of the table - **columns** (array of objects): the columns, in database order: - - **name** (string): the name the column + - **name** (string): the name of the column - **type** (string): the SQL type of the column (one of "INTEGER", "BLOB", "TEXT", "REAL") - **indices** (array of arrays, optional): Any index we created to speed lookups: - The columns for this index: @@ -106,4 +106,4 @@ RESOURCES --------- Main web site: -[comment]: # ( SHA256STAMP:3ac985dd8ef6959b327e6e6a79079db3ad51423bc4e469799a12ae74b2e75697) +[comment]: # ( SHA256STAMP:29ce2ff3f7cab8a4a90d09fa02fa8176008413272d46c0fe7faa6216f11bb2c6) diff --git a/doc/schemas/listsqlschemas.request.json b/doc/schemas/listsqlschemas.request.json index f12785b1b74c..a1b83e4d867e 100644 --- a/doc/schemas/listsqlschemas.request.json +++ b/doc/schemas/listsqlschemas.request.json @@ -2,6 +2,7 @@ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "required": [], + "added": "v23.02", "properties": { "table": { "type": "string" diff --git a/doc/schemas/listsqlschemas.schema.json b/doc/schemas/listsqlschemas.schema.json index 01143f1b8554..def50479caac 100644 --- a/doc/schemas/listsqlschemas.schema.json +++ b/doc/schemas/listsqlschemas.schema.json @@ -33,7 +33,7 @@ "properties": { "name": { "type": "string", - "description": "the name the column" + "description": "the name of the column" }, "type": { "type": "string", diff --git a/doc/schemas/sql.request.json b/doc/schemas/sql.request.json index 8664d15115f6..97c6dd25eee7 100644 --- a/doc/schemas/sql.request.json +++ b/doc/schemas/sql.request.json @@ -4,6 +4,7 @@ "required": [ "query" ], + "added": "v23.02", "properties": { "query": { "type": "string"