clarify query truncation message

This commit is contained in:
Hazelnoot 2025-05-30 10:31:33 -04:00
parent dd1969c800
commit 4637d4eb3f

View file

@ -115,7 +115,7 @@ function highlightSql(sql: string) {
}
function truncateSql(sql: string) {
return sql.length > 100 ? `${sql.substring(0, 100)}...` : sql;
return sql.length > 100 ? `${sql.substring(0, 100)} [truncated]` : sql;
}
function stringifyParameter(param: any) {