From ebf45d39686e45cf0ffaf8a24d2774362630435e Mon Sep 17 00:00:00 2001 From: Ritvi Bhatt Date: Mon, 13 Apr 2026 11:33:12 -0700 Subject: [PATCH 1/2] update sql docs for querying multiple indexes Signed-off-by: Ritvi Bhatt --- docs/user/general/identifiers.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user/general/identifiers.rst b/docs/user/general/identifiers.rst index f4d455deb5c..8d7069b451a 100644 --- a/docs/user/general/identifiers.rst +++ b/docs/user/general/identifiers.rst @@ -150,7 +150,7 @@ Description To query multiple indices, you could 1. Include ``*`` in index name, this is an index pattern for wildcard match. -2. Delimited multiple indices and seperated them by ``,``. Note: no space allowed between each index. +2. Use multiple indices by separating them with ``,`` and enclosing the entire comma-separated list in backticks. Note: no space allowed between each index. Examples From cb695266cbbebdb410d2ca7651a7335552b6f10d Mon Sep 17 00:00:00 2001 From: Ritvi Bhatt Date: Mon, 13 Apr 2026 11:38:25 -0700 Subject: [PATCH 2/2] fix wording Signed-off-by: Ritvi Bhatt --- docs/user/general/identifiers.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user/general/identifiers.rst b/docs/user/general/identifiers.rst index 8d7069b451a..49921d1fd79 100644 --- a/docs/user/general/identifiers.rst +++ b/docs/user/general/identifiers.rst @@ -150,7 +150,7 @@ Description To query multiple indices, you could 1. Include ``*`` in index name, this is an index pattern for wildcard match. -2. Use multiple indices by separating them with ``,`` and enclosing the entire comma-separated list in backticks. Note: no space allowed between each index. +2. Delimit multiple indices with ``,`` and enclose the entire comma-separated list in backticks. Note: no space allowed between each index. Examples