From ca584e2c3cebf3f1172807a69dd2da0146fb1048 Mon Sep 17 00:00:00 2001 From: Affaan Mustafa Date: Thu, 29 Jan 2026 03:18:54 -0800 Subject: [PATCH] fix: escape pipe in markdown table for markdownlint --- agents/database-reviewer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agents/database-reviewer.md b/agents/database-reviewer.md index 9573d35..7325102 100644 --- a/agents/database-reviewer.md +++ b/agents/database-reviewer.md @@ -132,7 +132,7 @@ CREATE INDEX orders_customer_id_idx ON orders (customer_id); | Index Type | Use Case | Operators | |------------|----------|-----------| | **B-tree** (default) | Equality, range | `=`, `<`, `>`, `BETWEEN`, `IN` | -| **GIN** | Arrays, JSONB, full-text | `@>`, `?`, `?&`, `?|`, `@@` | +| **GIN** | Arrays, JSONB, full-text | `@>`, `?`, `?&`, `?\|`, `@@` | | **BRIN** | Large time-series tables | Range queries on sorted data | | **Hash** | Equality only | `=` (marginally faster than B-tree) |