From 09733a5ec10b8a96607f7c2eb254b152d9b5c6df Mon Sep 17 00:00:00 2001 From: Max Ksyunz <99687200+MaxKsyunz@users.noreply.github.com> Date: Wed, 27 Jul 2022 17:40:22 -0700 Subject: [PATCH 1/2] Update documentation (#93) * Callout distinction between original and current SQL engines. Signed-off-by: Max Ksyunz --- docs/user/beyond/fulltext.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/user/beyond/fulltext.rst b/docs/user/beyond/fulltext.rst index c2edbfa97d6..dede5bd42f1 100644 --- a/docs/user/beyond/fulltext.rst +++ b/docs/user/beyond/fulltext.rst @@ -14,6 +14,9 @@ Introduction Full-text search is for searching a single stored document which is distinguished from regular search based on original texts in database. It tries to match search criteria by examining all of the words in each document. In OpenSearch, full-text queries provided enables you to search text fields analyzed during indexing. +This document describes the original SQL engine. It only applies to queries that cannot be handled by the current SQL engine. Documentation for the current engine can be found `here <../dql/functions.rst#relevance>`_. + + Match Query =========== From 2cc610c3bb6f0c4b31306dde0868fda5ea8925c0 Mon Sep 17 00:00:00 2001 From: Max Ksyunz <99687200+maxksyunz@users.noreply.github.com> Date: Wed, 3 Aug 2022 13:09:13 -0700 Subject: [PATCH 2/2] Address PR feedback. Signed-off-by: MaxKsyunz --- docs/user/beyond/fulltext.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/user/beyond/fulltext.rst b/docs/user/beyond/fulltext.rst index dede5bd42f1..558ddfadbf4 100644 --- a/docs/user/beyond/fulltext.rst +++ b/docs/user/beyond/fulltext.rst @@ -14,8 +14,7 @@ Introduction Full-text search is for searching a single stored document which is distinguished from regular search based on original texts in database. It tries to match search criteria by examining all of the words in each document. In OpenSearch, full-text queries provided enables you to search text fields analyzed during indexing. -This document describes the original SQL engine. It only applies to queries that cannot be handled by the current SQL engine. Documentation for the current engine can be found `here <../dql/functions.rst#relevance>`_. - +This document describes the original SQL engine. It only applies to queries that cannot be handled by `SQL engine V2 <../../dev/NewSQLEngine.md>`. Documentation for full-text search using SQL Engine V2 can be found `here <../dql/functions.rst#relevance>`_. Match Query ===========