From fa8d2df1cc44eefc173ea9810ec78d05755382bd Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Wed, 8 May 2024 08:36:24 -0700 Subject: [PATCH] Added note about ascending order to troubleshooting docs - #548 [skip ci] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index abf63bf..82b8052 100644 --- a/README.md +++ b/README.md @@ -790,7 +790,7 @@ SELECT pg_size_pretty(pg_relation_size('index_name')); #### Why isn’t a query using an index? -The query needs to have an `ORDER BY` and `LIMIT`, and the `ORDER BY` must be the result of a distance operator, not an expression. +The query needs to have an `ORDER BY` and `LIMIT`, and the `ORDER BY` must be the result of a distance operator (not an expression) in ascending order. ```sql -- index