From 10a939de4330c52dfccbb21c4a27ea363cbae4c6 Mon Sep 17 00:00:00 2001 From: Nicholas Chiang Date: Fri, 21 Aug 2026 12:34:50 -0600 Subject: [PATCH] docs: swap incorrectly placed descriptions I believe the descriptions should be swapped. --- integrations/supabase/connector-performance.mdx | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/integrations/supabase/connector-performance.mdx b/integrations/supabase/connector-performance.mdx index d2cc0c75..37d80337 100644 --- a/integrations/supabase/connector-performance.mdx +++ b/integrations/supabase/connector-performance.mdx @@ -218,8 +218,9 @@ The two batching strategies that will be implemented are: const MERGE_BATCH_LIMIT = 100; let batchedOps: CrudEntry[] = []; ``` - - Pre-sorts all operations by type and table - - Processes each type in bulk after grouping + - Processes operations sequentially + - Merges consecutive operations of the same type up to a batch limit + - More dynamic/streaming approach ### Pre-sorted batch strategy ```typescript @@ -227,9 +228,9 @@ The two batching strategies that will be implemented are: const deleteOps: { [table: string]: string[] } = {}; let patchOps: CrudEntry[] = []; ``` - - Processes operations sequentially - - Merges consecutive operations of the same type up to a batch limit - - More dynamic/streaming approach + - Pre-sorts all operations by type and table + - Processes each type in bulk after grouping + ### Sequential merge strategy @@ -292,4 +293,4 @@ The two batching strategies that will be implemented are:
**Trade-off**: Higher memory usage - \ No newline at end of file +