Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sql plugin #5679

Merged
merged 30 commits into from
Jan 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
fc4bf39
doc: remove unused offerout schema.
rustyrussell Jan 30, 2023
7962de7
wallet: remove unused TX_ANNOTATION type in transaction_annotations t…
rustyrussell Jan 30, 2023
0edd183
listtransactions: get rid of per-tx type annotations.
rustyrussell Jan 30, 2023
a880b60
plugins/topology: add direction field to listchannels.
rustyrussell Jan 30, 2023
90bb11d
lightningd: fix type of listhtlcs payment_hash.
rustyrussell Jan 30, 2023
c74bc54
doc: fix listsendpays man page.
rustyrussell Jan 30, 2023
c826513
common/gossip_store: clean up header.
rustyrussell Jan 30, 2023
22afc18
common/gossip_store: expose routine to read one header.
rustyrussell Jan 30, 2023
71c033b
common/gossip_store: move subdaemon-only routines to connectd.
rustyrussell Jan 30, 2023
abb0564
tools/fromschema.py: don't try to handle more complex cases.
rustyrussell Jan 30, 2023
4418172
common: add routine to get double from JSON.
rustyrussell Jan 30, 2023
1f2f1b7
doc/schemas: remove unnecessary length restrictions.
rustyrussell Jan 30, 2023
f1efb65
doc: use specific types in schema rather than "hex".
rustyrussell Jan 30, 2023
c8a173b
plugins/sql: initial commit of new plugin.
rustyrussell Jan 30, 2023
f98d1a8
plugins/sql: create `struct column` to encode column details.
rustyrussell Jan 30, 2023
bea8bab
plugins/sql: rework to parse schemas.
rustyrussell Jan 30, 2023
1897b3d
plugins/sql: make tables for non-object arrays.
rustyrussell Jan 30, 2023
1b58d37
plugins/sql: add listpeerchannels support.
rustyrussell Jan 30, 2023
b0c2560
pytest: perform more thorough testing.
rustyrussell Jan 30, 2023
4bf9d21
plugins/sql: include the obvious indexes.
rustyrussell Jan 30, 2023
0a6cd62
plugins/sql: refresh listnodes and listchannels by monitoring the gos…
rustyrussell Jan 30, 2023
e531904
doc/schemas: fix old deprecations.
rustyrussell Jan 30, 2023
4885ef6
plugins/sql: pay attention to `deprecated` in schema.
rustyrussell Jan 30, 2023
472d1b2
plugins/sql: print out part of man page referring to schemas.
rustyrussell Jan 30, 2023
224383b
doc: document the sql command.
rustyrussell Jan 30, 2023
212c859
plugins/sql: allow some simple functions.
rustyrussell Jan 30, 2023
8d60994
plugins/sql: add bkpr-listaccountevents and bkpr-listincome support.
rustyrussell Jan 30, 2023
28cf990
plugins/sql: listsqlschemas command to retrieve schemas.
rustyrussell Jan 30, 2023
cf3f295
doc: add examples for sql plugin.
rustyrussell Jan 30, 2023
c2face4
typo fixes found by @niftynei
rustyrussell Jan 30, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .msggen.json
Original file line number Diff line number Diff line change
Expand Up @@ -545,6 +545,7 @@
"ListChannels.channels[].channel_flags": 7,
"ListChannels.channels[].delay": 12,
"ListChannels.channels[].destination": 2,
"ListChannels.channels[].direction": 16,
"ListChannels.channels[].features": 15,
"ListChannels.channels[].fee_per_millionth": 11,
"ListChannels.channels[].htlc_maximum_msat": 14,
Expand Down Expand Up @@ -818,6 +819,7 @@
"ListSendPays.payments[].groupid": 2,
"ListSendPays.payments[].id": 1,
"ListSendPays.payments[].label": 9,
"ListSendPays.payments[].partid": 15,
"ListSendPays.payments[].payment_hash": 3,
"ListSendPays.payments[].payment_preimage": 12,
"ListSendPays.payments[].status": 4
Expand Down
3 changes: 2 additions & 1 deletion cln-grpc/proto/node.proto

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions cln-grpc/src/convert.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 6 additions & 5 deletions cln-rpc/src/model.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading