From e1f17fdf997f57c37bbf788c5df42513b5a7603c Mon Sep 17 00:00:00 2001 From: Kat Batuigas Date: Tue, 16 Jun 2026 14:19:05 -0700 Subject: [PATCH 1/6] Add SQL editor doc --- modules/ROOT/nav.adoc | 1 + .../pages/get-started/deploy-sql-cluster.adoc | 1 + .../sql/pages/get-started/sql-quickstart.adoc | 10 +- modules/sql/pages/index.adoc | 1 + modules/sql/pages/query-data/sql-editor.adoc | 122 ++++++++++++++++++ 5 files changed, 131 insertions(+), 4 deletions(-) create mode 100644 modules/sql/pages/query-data/sql-editor.adoc diff --git a/modules/ROOT/nav.adoc b/modules/ROOT/nav.adoc index fe305c72c..000375a20 100644 --- a/modules/ROOT/nav.adoc +++ b/modules/ROOT/nav.adoc @@ -343,6 +343,7 @@ *** xref:sql:connect-to-sql/language-clients/php-pdo.adoc[] *** xref:sql:connect-to-sql/language-clients/dotnet-dapper.adoc[] ** xref:sql:query-data/index.adoc[Query Data] +*** xref:sql:query-data/sql-editor.adoc[SQL Editor] *** xref:sql:query-data/redpanda-catalogs.adoc[Redpanda Catalogs] *** xref:sql:query-data/query-streaming-topics.adoc[Query Streaming Topics] *** xref:sql:query-data/query-iceberg-topics.adoc[Query Iceberg-enabled Topics] diff --git a/modules/sql/pages/get-started/deploy-sql-cluster.adoc b/modules/sql/pages/get-started/deploy-sql-cluster.adoc index fa4ba47f4..b229b0fb9 100644 --- a/modules/sql/pages/get-started/deploy-sql-cluster.adoc +++ b/modules/sql/pages/get-started/deploy-sql-cluster.adoc @@ -265,5 +265,6 @@ The request returns the ID of a long-running operation. Poll link:/api/doc/cloud == Next steps * xref:sql:get-started/sql-quickstart.adoc[Quickstart]: Connect to Redpanda SQL with `psql` and run your first query. +* xref:sql:query-data/sql-editor.adoc[SQL editor]: Write and run queries directly in the Cloud Console without a separate SQL client. * xref:sql:connect-to-sql/authenticate.adoc[Authenticate to Redpanda SQL]: Connect with an OIDC bearer token, OIDC client credentials, or a SCRAM password for clients that don't support OIDC. * xref:reference:sql/index.adoc[Redpanda SQL reference]: Explore the full SQL syntax, data types, functions, and clauses. diff --git a/modules/sql/pages/get-started/sql-quickstart.adoc b/modules/sql/pages/get-started/sql-quickstart.adoc index 6e69af8d8..29131a30d 100644 --- a/modules/sql/pages/get-started/sql-quickstart.adoc +++ b/modules/sql/pages/get-started/sql-quickstart.adoc @@ -100,6 +100,8 @@ Click *Save* to register the schema. == Connect to Redpanda SQL +TIP: You can also query data directly in the Cloud Console using the built-in xref:sql:query-data/sql-editor.adoc[SQL editor], with no separate client required. + SQL connection details are available on your cluster's *SQL* tab in the https://cloud.redpanda.com/[Cloud Console]. To connect using `psql`: . Log in to Redpanda Cloud with `rpk`. This opens a browser window for SSO sign-in: @@ -201,8 +203,8 @@ The user can now connect to Redpanda SQL and run `SELECT` against the tables the == Next steps -// TODO: Uncomment once DOC-1990, DOC-1999, and DOC-2006 merge (target pages are on those branches). -// * xref:sql:query-data/query-streaming-topics.adoc[Query streaming topics]: Map a Redpanda topic to a SQL table and run analytical queries against live streaming data. -// * xref:sql:query-data/query-iceberg-topics.adoc[Query Iceberg-enabled Topics]: Run a single SQL query that spans live records and the Iceberg history of a topic. -// * xref:sql:connect-to-sql/authenticate.adoc[Authenticate to Redpanda SQL]: Connect with an OIDC bearer token, OIDC client credentials, or a SCRAM password for clients that don't support OIDC (for example, Power BI). +* xref:sql:query-data/sql-editor.adoc[SQL editor]: Write and run queries directly in the Cloud Console without a separate SQL client. +* xref:sql:query-data/query-streaming-topics.adoc[Query streaming topics]: Map a Redpanda topic to a SQL table and run analytical queries against live streaming data. +* xref:sql:query-data/query-iceberg-topics.adoc[Query Iceberg-enabled Topics]: Run a single SQL query that spans live records and the Iceberg history of a topic. +* xref:sql:connect-to-sql/authenticate.adoc[Authenticate to Redpanda SQL]: Connect with an OIDC bearer token, OIDC client credentials, or a SCRAM password for clients that don't support OIDC (for example, Power BI). * xref:reference:sql/index.adoc[Redpanda SQL reference]: Explore the full SQL syntax, data types, functions, and clauses. diff --git a/modules/sql/pages/index.adoc b/modules/sql/pages/index.adoc index 22a17c910..11ab512db 100644 --- a/modules/sql/pages/index.adoc +++ b/modules/sql/pages/index.adoc @@ -13,4 +13,5 @@ Get started: * xref:sql:get-started/overview.adoc[Redpanda SQL overview] * xref:sql:get-started/sql-quickstart.adoc[Redpanda SQL quickstart] +* xref:sql:query-data/sql-editor.adoc[SQL editor]: Write and run SQL queries directly in the Cloud Console. * xref:reference:sql/index.adoc[Redpanda SQL reference] diff --git a/modules/sql/pages/query-data/sql-editor.adoc b/modules/sql/pages/query-data/sql-editor.adoc new file mode 100644 index 000000000..98e58721d --- /dev/null +++ b/modules/sql/pages/query-data/sql-editor.adoc @@ -0,0 +1,122 @@ += Use the SQL Editor +:description: Write and run SQL queries against your Redpanda topics directly from Redpanda Cloud Console without a separate SQL client. +:page-topic-type: how-to +:personas: app_developer, data_engineer, platform_admin +:learning-objective-1: Browse Redpanda SQL catalogs and tables from the Console SQL editor +:learning-objective-2: Write and run a SELECT query and view the results +:learning-objective-3: Export query results to CSV or JSON + +The Redpanda Cloud Console includes a built-in SQL editor. You can write and run queries against your Redpanda topics without installing a separate PostgreSQL client. The editor connects to your cluster's SQL engine using your existing Console session, so no separate credentials are required. + +After reading this page, you will be able to: + +* [ ] {learning-objective-1} +* [ ] {learning-objective-2} +* [ ] {learning-objective-3} + +== Prerequisites + +* A Redpanda BYOC cluster with the SQL engine enabled. See xref:sql:get-started/deploy-sql-cluster.adoc[Enable Redpanda SQL]. +* A Redpanda Cloud user with the *SQL: Access* or *SQL: Manage* RBAC permission. Users with *SQL: Access* also need a `GRANT SELECT` on each table to run queries against it. See xref:sql:manage/manage-access.adoc[Manage access to Redpanda SQL]. +* At least one topic mapped to a SQL table in the catalog. See xref:sql:query-data/query-streaming-topics.adoc[Query Streaming Topics], or use the <> in the editor. + +== Open the SQL editor + +In Redpanda Cloud Console, navigate to your cluster and select *SQL* in the left sidebar. The SQL workspace opens with the catalog panel on the left and the editor and results panels on the right. + +== Browse the catalog tree + +The catalog panel lists every SQL catalog attached to your cluster. + +Each catalog is labeled by type: + +* Redpanda: Tables backed by Redpanda topics in the `default_redpanda_catalog`. +* Iceberg: Tables backed by an external Iceberg catalog. + +Click a catalog to expand it, then expand a namespace to see its tables and their row counts. To view a table's columns and data types, click the chevron (>) next to the table name. + +Within the Redpanda catalog, tables backed by Iceberg-enabled topics display an *Iceberg* badge. When you query one of these tables, the SQL engine automatically bridges live topic data with the Iceberg history. See <>. + +To filter tables by name, type in the *Search tables* box at the top of the catalog panel. The filter applies across all catalogs and namespaces. + +To open a `SELECT *` query for a table in the editor, click the run button (▶) beside the table name. + +If a table displays a lock icon, your account lacks a `SELECT` grant on it. Ask an admin to grant you access. See xref:sql:manage/manage-access.adoc[Manage access to Redpanda SQL]. + +== Write and run a query + +=== Query tabs + +The editor supports multiple independent query tabs. To add a tab, click *+* in the tab bar. To close a tab, click the *×* on the tab. + +=== Syntax highlighting and autocomplete + +SQL keywords, functions, and string literals are highlighted as you type. Begin typing an identifier to see autocomplete suggestions for table names, column names, and SQL keywords. Use the arrow keys to navigate the suggestion list and press Tab or Enter to accept a suggestion. Press Escape to dismiss the list. + +=== Format and history + +Click *Format* to reformat the query in the active tab with consistent keyword casing and clause line breaks. + +Click *History* to see the last 40 queries run in this browser. Your browser stores query history locally. History does not sync across devices or user sessions. + +=== Run a query + +To run the query in the active tab, click *Run* or press kbd:[Cmd+Enter] (macOS) or kbd:[Ctrl+Enter] (Windows and Linux). + +To run a portion of the query, select the text you want to run, then click *Run selection*. + +The SQL editor supports only `SELECT` statements. `CREATE TABLE` and permission statements (`GRANT`, `REVOKE`) are not available in the editor. Use the <> to create tables and xref:sql:manage/manage-access.adoc[Manage access] to manage grants. + +== View and sort results + +After a successful query, the results panel shows: + +* A status bar with a success indicator, the total row count, and the elapsed query time. +* A results grid with one column per returned field. + +Each column header shows the column name and its data type. Click a column header to sort by that column. Click it again to reverse the sort order, or click it a third time to clear the sort. + +`NULL` values render as a distinct `NULL` label in each cell. + +Results load 100 rows at a time in the grid. To load the next batch, click *Load 100 more* at the bottom of the results. A single query returns a maximum of 10,000 rows. + +=== Query Iceberg topics + +When a query reads from an Iceberg-enabled topic in the Redpanda catalog, a *Bridge query* chip appears in the results status bar. This means the query returned data from both the live Redpanda topic and its Iceberg committed history. + +Click the chip to expand a timeline showing the Iceberg watermark and the approximate offset lag between the live topic and the Iceberg tier at the time the query ran. + +For details on querying across live and Iceberg-tiered data, see xref:sql:query-data/query-iceberg-topics.adoc[Query Iceberg-enabled Topics]. + +== Export results + +To download the current result set, click the export buttons in the results status bar: + +* CSV: Downloads a comma-separated file named `query_result.csv`. +* JSON: Downloads a JSON array named `query_result.json`. + +The download includes all rows loaded in the grid, up to the query's row cap. + +[#add-topic] +== Add a topic to the catalog + +NOTE: This task requires the Admin role. + +To make a Redpanda topic queryable from the editor, add it to the `default_redpanda_catalog` with the *Add a topic* wizard: + +. In the catalog panel, click *+ Add a topic* at the bottom of the Redpanda catalog namespace. +. In the *Choose a topic* step, select the Redpanda topic to expose as a SQL table. Topics with Iceberg tiering enabled show an *Iceberg* badge. +. Click *Continue*. +. In the *Name the table* step, confirm or edit the table name. Table names must start with a letter or underscore and can contain only lowercase letters, numbers, and underscores. The catalog and source topic are fixed. +. Review the `CREATE TABLE` statement that will run, then click *Create table*. + +The table appears in the catalog panel immediately and is ready to query. + +To remove a table from the catalog, hover over the table name and click the trash icon. Dropping a table removes it from the SQL catalog only. The underlying Redpanda topic and its data are not affected. + +== Suggested reading + +* xref:sql:query-data/query-streaming-topics.adoc[Query Streaming Topics]: Map topics to SQL tables and run queries from a `psql` client. +* xref:sql:query-data/query-iceberg-topics.adoc[Query Iceberg-enabled Topics]: How bridge queries mesh live and Iceberg-tiered data. +* xref:sql:manage/manage-access.adoc[Manage access to Redpanda SQL]: Grant users `SELECT` access to tables. +* xref:reference:sql/index.adoc[Redpanda SQL Reference]: Supported statements, clauses, functions, data types, and operators. From 75092ce4c25f9b54ebd3facc0179d35e4585f43d Mon Sep 17 00:00:00 2001 From: Kat Batuigas Date: Tue, 16 Jun 2026 14:25:56 -0700 Subject: [PATCH 2/6] Add gloss terms --- modules/sql/pages/query-data/sql-editor.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/sql/pages/query-data/sql-editor.adoc b/modules/sql/pages/query-data/sql-editor.adoc index 98e58721d..c5146eafe 100644 --- a/modules/sql/pages/query-data/sql-editor.adoc +++ b/modules/sql/pages/query-data/sql-editor.adoc @@ -17,7 +17,7 @@ After reading this page, you will be able to: == Prerequisites * A Redpanda BYOC cluster with the SQL engine enabled. See xref:sql:get-started/deploy-sql-cluster.adoc[Enable Redpanda SQL]. -* A Redpanda Cloud user with the *SQL: Access* or *SQL: Manage* RBAC permission. Users with *SQL: Access* also need a `GRANT SELECT` on each table to run queries against it. See xref:sql:manage/manage-access.adoc[Manage access to Redpanda SQL]. +* A Redpanda Cloud user with the *SQL: Access* or *SQL: Manage* glossterm:RBAC[] permission. Users with *SQL: Access* also need a `GRANT SELECT` on each table to run queries against it. See xref:sql:manage/manage-access.adoc[Manage access to Redpanda SQL]. * At least one topic mapped to a SQL table in the catalog. See xref:sql:query-data/query-streaming-topics.adoc[Query Streaming Topics], or use the <> in the editor. == Open the SQL editor @@ -35,7 +35,7 @@ Each catalog is labeled by type: Click a catalog to expand it, then expand a namespace to see its tables and their row counts. To view a table's columns and data types, click the chevron (>) next to the table name. -Within the Redpanda catalog, tables backed by Iceberg-enabled topics display an *Iceberg* badge. When you query one of these tables, the SQL engine automatically bridges live topic data with the Iceberg history. See <>. +Within the Redpanda catalog, tables backed by glossterm:Iceberg topic[,Iceberg-enabled topics] display an *Iceberg* badge. When you query one of these tables, the SQL engine automatically bridges live topic data with the Iceberg history. See <>. To filter tables by name, type in the *Search tables* box at the top of the catalog panel. The filter applies across all catalogs and namespaces. From 9e7d31a2b80799df879895ae1c086d0abcafe3e8 Mon Sep 17 00:00:00 2001 From: Kat Batuigas Date: Tue, 16 Jun 2026 14:30:16 -0700 Subject: [PATCH 3/6] Keyboard macro --- modules/sql/pages/query-data/sql-editor.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/sql/pages/query-data/sql-editor.adoc b/modules/sql/pages/query-data/sql-editor.adoc index c5146eafe..a9607ec95 100644 --- a/modules/sql/pages/query-data/sql-editor.adoc +++ b/modules/sql/pages/query-data/sql-editor.adoc @@ -51,7 +51,7 @@ The editor supports multiple independent query tabs. To add a tab, click *+* in === Syntax highlighting and autocomplete -SQL keywords, functions, and string literals are highlighted as you type. Begin typing an identifier to see autocomplete suggestions for table names, column names, and SQL keywords. Use the arrow keys to navigate the suggestion list and press Tab or Enter to accept a suggestion. Press Escape to dismiss the list. +SQL keywords, functions, and string literals are highlighted as you type. Begin typing an identifier to see autocomplete suggestions for table names, column names, and SQL keywords. Use the arrow keys to navigate the suggestion list and press kbd:[Tab] or kbd:[Enter] to accept a suggestion. Press kbd:[Escape] to dismiss the list. === Format and history From ba740aa151cd7a9cd958b6084a7c482e1ab2bdd3 Mon Sep 17 00:00:00 2001 From: Kat Batuigas Date: Tue, 16 Jun 2026 15:56:02 -0700 Subject: [PATCH 4/6] Add cluster overview updates --- modules/sql/pages/get-started/deploy-sql-cluster.adoc | 9 +++------ modules/sql/pages/get-started/sql-quickstart.adoc | 2 +- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/modules/sql/pages/get-started/deploy-sql-cluster.adoc b/modules/sql/pages/get-started/deploy-sql-cluster.adoc index b229b0fb9..07caf29cc 100644 --- a/modules/sql/pages/get-started/deploy-sql-cluster.adoc +++ b/modules/sql/pages/get-started/deploy-sql-cluster.adoc @@ -178,14 +178,11 @@ When the operation is complete, the response shows `"state": "STATE_COMPLETED"`. == Verify the SQL engine is running -After you enable Redpanda SQL, the cluster overview page in the Cloud Console shows the *SQL* tab and the *Details* pane displays the number of SQL nodes deployed with the cluster. +After you enable Redpanda SQL, a *Redpanda SQL* tile appears in the cluster overview under *Products*. The tile shows the engine status, active sessions, queries per minute, and node count. When the *Nodes* indicator shows all nodes as ready (for example, *1/1*), the engine is provisioned and accepting connections. Provisioning can take up to 30 minutes. -// TODO: Confirm UI changes for SQL engine ready indicator -The *SQL* tab appears as soon as you enable SQL, but you can't connect until the engine is fully provisioned. Provisioning can take up to 30 minutes. +For the API flow, poll the long-running operation until it returns `STATE_COMPLETED`. -Wait for the node-ready status indicator on the overview page to show the engine is ready. For the API flow, poll the long-running operation until it returns `STATE_COMPLETED`. - -To verify the SQL engine is running, use the connection details on the *SQL* tab to connect with a PostgreSQL client, such as `psql` (v16 or later required). +To verify the SQL engine is running, use the connection details on the *SQL* tab under *Connection details* to connect with a PostgreSQL client, such as `psql` (v16 or later required). You can also query data directly using the xref:sql:query-data/sql-editor.adoc[SQL editor] in the left navigation. To connect using a bearer token (xref:manage:rpk/rpk-install.adoc[`rpk` v26.1.6+] required): diff --git a/modules/sql/pages/get-started/sql-quickstart.adoc b/modules/sql/pages/get-started/sql-quickstart.adoc index 29131a30d..989b2807d 100644 --- a/modules/sql/pages/get-started/sql-quickstart.adoc +++ b/modules/sql/pages/get-started/sql-quickstart.adoc @@ -102,7 +102,7 @@ Click *Save* to register the schema. TIP: You can also query data directly in the Cloud Console using the built-in xref:sql:query-data/sql-editor.adoc[SQL editor], with no separate client required. -SQL connection details are available on your cluster's *SQL* tab in the https://cloud.redpanda.com/[Cloud Console]. To connect using `psql`: +SQL connection details are available on the *SQL* tab under *Connection details* in the https://cloud.redpanda.com/[Cloud Console]. To connect using `psql`: . Log in to Redpanda Cloud with `rpk`. This opens a browser window for SSO sign-in: + From 3e17fa6da9a0fa3e90a247fb7b7289cdfad2e8a7 Mon Sep 17 00:00:00 2001 From: Kat Batuigas Date: Mon, 22 Jun 2026 15:10:47 -0700 Subject: [PATCH 5/6] Apply edits from SME review --- modules/sql/pages/query-data/sql-editor.adoc | 27 ++++++++------------ 1 file changed, 11 insertions(+), 16 deletions(-) diff --git a/modules/sql/pages/query-data/sql-editor.adoc b/modules/sql/pages/query-data/sql-editor.adoc index a9607ec95..b273855aa 100644 --- a/modules/sql/pages/query-data/sql-editor.adoc +++ b/modules/sql/pages/query-data/sql-editor.adoc @@ -2,9 +2,9 @@ :description: Write and run SQL queries against your Redpanda topics directly from Redpanda Cloud Console without a separate SQL client. :page-topic-type: how-to :personas: app_developer, data_engineer, platform_admin -:learning-objective-1: Browse Redpanda SQL catalogs and tables from the Console SQL editor -:learning-objective-2: Write and run a SELECT query and view the results -:learning-objective-3: Export query results to CSV or JSON +:learning-objective-1: Add a topic to the SQL catalog using the wizard in the SQL editor +:learning-objective-2: Navigate SQL catalogs and inspect table schemas from the Console SQL editor +:learning-objective-3: Write and run a SELECT query and view the results The Redpanda Cloud Console includes a built-in SQL editor. You can write and run queries against your Redpanda topics without installing a separate PostgreSQL client. The editor connects to your cluster's SQL engine using your existing Console session, so no separate credentials are required. @@ -22,17 +22,12 @@ After reading this page, you will be able to: == Open the SQL editor -In Redpanda Cloud Console, navigate to your cluster and select *SQL* in the left sidebar. The SQL workspace opens with the catalog panel on the left and the editor and results panels on the right. +In Redpanda Cloud Console, navigate to your cluster and select *SQL* in the left navigation menu. The SQL workspace opens with the catalog panel on the left and the editor and results panels on the right. == Browse the catalog tree The catalog panel lists every SQL catalog attached to your cluster. -Each catalog is labeled by type: - -* Redpanda: Tables backed by Redpanda topics in the `default_redpanda_catalog`. -* Iceberg: Tables backed by an external Iceberg catalog. - Click a catalog to expand it, then expand a namespace to see its tables and their row counts. To view a table's columns and data types, click the chevron (>) next to the table name. Within the Redpanda catalog, tables backed by glossterm:Iceberg topic[,Iceberg-enabled topics] display an *Iceberg* badge. When you query one of these tables, the SQL engine automatically bridges live topic data with the Iceberg history. See <>. @@ -41,8 +36,6 @@ To filter tables by name, type in the *Search tables* box at the top of the cata To open a `SELECT *` query for a table in the editor, click the run button (▶) beside the table name. -If a table displays a lock icon, your account lacks a `SELECT` grant on it. Ask an admin to grant you access. See xref:sql:manage/manage-access.adoc[Manage access to Redpanda SQL]. - == Write and run a query === Query tabs @@ -67,24 +60,26 @@ To run a portion of the query, select the text you want to run, then click *Run The SQL editor supports only `SELECT` statements. `CREATE TABLE` and permission statements (`GRANT`, `REVOKE`) are not available in the editor. Use the <> to create tables and xref:sql:manage/manage-access.adoc[Manage access] to manage grants. -== View and sort results +== View results After a successful query, the results panel shows: * A status bar with a success indicator, the total row count, and the elapsed query time. * A results grid with one column per returned field. -Each column header shows the column name and its data type. Click a column header to sort by that column. Click it again to reverse the sort order, or click it a third time to clear the sort. +Each column header shows the column name and its data type. To sort results, use `ORDER BY` in your query. The results grid does not support column sorting. `NULL` values render as a distinct `NULL` label in each cell. -Results load 100 rows at a time in the grid. To load the next batch, click *Load 100 more* at the bottom of the results. A single query returns a maximum of 10,000 rows. +To view structured data in full, click a cell that contains JSON or a nested value. The results panel displays the value formatted for readability. + +Scroll the results grid to view all rows. If the server's row limit is reached, a *Truncated* badge appears in the status bar. === Query Iceberg topics When a query reads from an Iceberg-enabled topic in the Redpanda catalog, a *Bridge query* chip appears in the results status bar. This means the query returned data from both the live Redpanda topic and its Iceberg committed history. -Click the chip to expand a timeline showing the Iceberg watermark and the approximate offset lag between the live topic and the Iceberg tier at the time the query ran. +If there are messages not yet committed to Iceberg, a message below the status bar shows the approximate offset lag at the time the query ran. For details on querying across live and Iceberg-tiered data, see xref:sql:query-data/query-iceberg-topics.adoc[Query Iceberg-enabled Topics]. @@ -95,7 +90,7 @@ To download the current result set, click the export buttons in the results stat * CSV: Downloads a comma-separated file named `query_result.csv`. * JSON: Downloads a JSON array named `query_result.json`. -The download includes all rows loaded in the grid, up to the query's row cap. +The download includes all returned rows. [#add-topic] == Add a topic to the catalog From 0bd2e4b35eb69b67c4daf849cd2aac5a26f7b966 Mon Sep 17 00:00:00 2001 From: Kat Batuigas Date: Mon, 22 Jun 2026 15:13:14 -0700 Subject: [PATCH 6/6] Add SQL Editor to What's New in Cloud --- modules/get-started/pages/whats-new-cloud.adoc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/get-started/pages/whats-new-cloud.adoc b/modules/get-started/pages/whats-new-cloud.adoc index ccedee6ac..92acbcf5f 100644 --- a/modules/get-started/pages/whats-new-cloud.adoc +++ b/modules/get-started/pages/whats-new-cloud.adoc @@ -8,6 +8,10 @@ This page lists new features added to Redpanda Cloud. == June 2026 +=== SQL editor in Redpanda Cloud Console + +Redpanda Cloud Console now includes a built-in SQL editor. You can write and run `SELECT` queries against your Redpanda topics directly in the Console without installing a separate PostgreSQL client. The editor supports syntax highlighting, autocomplete, query history, and CSV and JSON export. For Iceberg-enabled topics, an indicator shows when results span both live topic data and Iceberg-committed history. See xref:sql:query-data/sql-editor.adoc[Use the SQL Editor]. + === GCP Lakehouse catalog for Iceberg topics BYOC clusters on GCP can now use GCP Lakehouse as an Iceberg REST catalog. See xref:manage:iceberg/iceberg-topics-gcp-biglake.adoc[].