From 427c36e004054cb6faba7b90ea15f7dbc11a5191 Mon Sep 17 00:00:00 2001 From: Eric Long Date: Wed, 2 Aug 2023 13:30:10 -0400 Subject: [PATCH] 0005937: SymmetricDS User Guide Incorrectly Referencing Table Column Name Which Dropped From 3.14 Release Already --- symmetric-assemble/src/asciidoc/manage/outgoing-batches.ad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/symmetric-assemble/src/asciidoc/manage/outgoing-batches.ad b/symmetric-assemble/src/asciidoc/manage/outgoing-batches.ad index c2131eb74e..68331793e1 100644 --- a/symmetric-assemble/src/asciidoc/manage/outgoing-batches.ad +++ b/symmetric-assemble/src/asciidoc/manage/outgoing-batches.ad @@ -30,7 +30,7 @@ The following query will show the number of data rows that have *not* been deliv [source, sql] ---- -select sum(data_event_count), node_id from sym_outgoing_batch +select sum(data_row_count), node_id from sym_outgoing_batch where status != 'OK' group by node_id; ----