From 3a9e3a2a5ee7183d627d3d71d562f94874b8f333 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yoshioka=20Tsuneo=20=28=E5=90=89=E5=B2=A1=20=E6=81=92?= =?UTF-8?q?=E5=A4=AB=29?= Date: Thu, 16 Oct 2025 01:39:31 +0900 Subject: [PATCH 1/2] Add a user guide page for Searching Queries --- .../user-guide/querying/searching-queries.md | 52 +++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 src/pages/kb/user-guide/querying/searching-queries.md diff --git a/src/pages/kb/user-guide/querying/searching-queries.md b/src/pages/kb/user-guide/querying/searching-queries.md new file mode 100644 index 00000000..468ac552 --- /dev/null +++ b/src/pages/kb/user-guide/querying/searching-queries.md @@ -0,0 +1,52 @@ +--- +category: querying +parent_category: user-guide +helpscout_url: https://help.redash.io/article/153-searching-queries +title: Search Queries +slug: searching-queries +toc: true +order: 1 +--- + +To search queries, click `Queries` in the navbar then use the Search Queries input form. + +# Search Queries + +Redash uses different search logic depending on the **Enable multi-byte** feature flag. The **Enable multi-byte** feature flag can be set on General tab under Settings page. + +## When "Enable multi-byte" is disabled (default) + +When **Enable multi-byte** is disabled, Redash uses [PostgreSQL full-text search](https://www.postgresql.org/docs/current/textsearch.html) to search queries. + + +## When "Enable multi-byte" is enabled + +When **Enable multi-byte** is enabled, Redash uses a custom search syntax. + +The search logic is as follows: + +- Search is case-insensitive. +- Search terms are separated by spaces. +- Each search term is searched in the following fields: + - Query name + - Query description + - Query text +- The query may contain qualifiers to specify the field to search: + - `name:`: Search in query name. + - `description:`: Search in query description. + - `query:`: Search in query text. + +### Search Examples +| Query Name | Description | +|------------------|---------------------------| +| term | find queries containing 'term' in the query name or description | +| term1 term2 | find queries containing both term1 and term2 | +| "exact phrase" | find queries containing the exact phrase | +| query:term | find queries containing 'term' in the query text | +| term1 query:term2 | find queries containing 'term' in the query name/description and 'term2' in the query text | +| query:"exact phrase" | find queries containing the exact phrase in the query text | + + + + + From 53ced880d981c58e45825cab076dbb90c11aa7b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yoshioka=20Tsuneo=20=28=E5=90=89=E5=B2=A1=20=E6=81=92?= =?UTF-8?q?=E5=A4=AB=29?= Date: Mon, 2 Mar 2026 23:33:33 +0900 Subject: [PATCH 2/2] List 26.3.0 release on upgrade page --- src/pages/kb/open-source/admin-guide/how-to-upgrade.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pages/kb/open-source/admin-guide/how-to-upgrade.md b/src/pages/kb/open-source/admin-guide/how-to-upgrade.md index 9acc6330..39e05627 100644 --- a/src/pages/kb/open-source/admin-guide/how-to-upgrade.md +++ b/src/pages/kb/open-source/admin-guide/how-to-upgrade.md @@ -21,7 +21,8 @@ During each migration, check the [releases page](https://github.com/getredash/re Below is a table of recent docker release images for your reference: | released_at | version | docker_image | -| ----------- | ------- | --------------------------- | +|-------------|---------|-----------------------------| +| 2026-03-02 | 26.3.0 | redash/redash:26.3.0 | | 2025-08-01 | 25.8.0 | redash/redash:25.8.0 | | 2025-01-08 | 25.1.0 | redash/redash:25.1.0 | | 2021-12-24 | 10.1.0 | redash/redash:10.1.0.b50633 |