This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch fix/CAMEL-23862 in repository https://gitbox.apache.org/repos/asf/camel.git
commit 343124bf2f54953177dc04cce074c308551dced6 Author: Claus Ibsen <[email protected]> AuthorDate: Tue Jun 30 19:38:12 2026 +0200 CAMEL-23862: SQL Trace - rename CAT column header to TYPE Co-Authored-By: Claude Opus 4.6 <[email protected]> Signed-off-by: Claus Ibsen <[email protected]> --- .../org/apache/camel/dsl/jbang/core/commands/tui/SqlTraceTab.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dsl/camel-jbang/camel-jbang-plugin-tui/src/main/java/org/apache/camel/dsl/jbang/core/commands/tui/SqlTraceTab.java b/dsl/camel-jbang/camel-jbang-plugin-tui/src/main/java/org/apache/camel/dsl/jbang/core/commands/tui/SqlTraceTab.java index 15bddc9e9af3..8bc6a6cd0cab 100644 --- a/dsl/camel-jbang/camel-jbang-plugin-tui/src/main/java/org/apache/camel/dsl/jbang/core/commands/tui/SqlTraceTab.java +++ b/dsl/camel-jbang/camel-jbang-plugin-tui/src/main/java/org/apache/camel/dsl/jbang/core/commands/tui/SqlTraceTab.java @@ -268,7 +268,7 @@ class SqlTraceTab implements MonitorTab { .rows(rows) .header(Row.from( Cell.from(Span.styled(sortLabel("TIME", "time"), sortStyle("time"))), - Cell.from(Span.styled(sortLabel("CAT", "category"), sortStyle("category"))), + Cell.from(Span.styled(sortLabel("TYPE", "category"), sortStyle("category"))), Cell.from(Span.styled(sortLabel("SQL", "sql"), sortStyle("sql"))), Cell.from(Span.styled(sortLabel("ROUTE", "route"), sortStyle("route"))), rightCell(sortLabel("DURATION", "duration"), 10, sortStyle("duration")), @@ -438,7 +438,7 @@ class SqlTraceTab implements MonitorTab { ## Table Columns - **TIME** — Timestamp of the execution - - **CAT** — SQL category: SELECT, INSERT, UPDATE, DELETE, CALL, or OTHER + - **TYPE** — SQL type: SELECT, INSERT, UPDATE, DELETE, CALL, or OTHER - **SQL** — The SQL query text - **ROUTE** — The Camel route ID that executed the query - **DURATION** — Execution time in ms (yellow when >= 100ms)
