diff --git a/CHANGELOG.md b/CHANGELOG.md
index 69ff2d9d15..cbd9adea4e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -31,9 +31,11 @@
`Column` datatypes are properly visualized. Scatter Plot can display points of
different color, shape and size, all as defined by the data within the
`Table`.
-- [`onHide callback for visualizations][1383]. JavaScript visualizations can now
- implement a method `onHide()` that will be called whenever the visualization
- is hidden or closed on screen.
+- [`onHide` callback for visualizations][1383]. JavaScript visualizations can
+ now implement a method `onHide()` that will be called whenever the
+ visualization is hidden or closed on screen.
+- [Tooltip for SQL Visualization][1414]. The tooltip for SQL Visualization is
+ now correctly displayed over other nodes.

diff --git a/src/rust/ide/view/graph-editor/src/builtin/visualization/java_script/sql.js b/src/rust/ide/view/graph-editor/src/builtin/visualization/java_script/sql.js
index ecf5ea4992..abddf37eb3 100644
--- a/src/rust/ide/view/graph-editor/src/builtin/visualization/java_script/sql.js
+++ b/src/rust/ide/view/graph-editor/src/builtin/visualization/java_script/sql.js
@@ -13,6 +13,9 @@ const customSqlTypePrefix = 'Standard.Database.Data.Sql.Sql_Type.'
/** Specifies opacity of interpolation background color. */
const interpolationBacgroundOpacity = 0.3
+/** A regular expression for parsing CSS transforms. */
+const matrixRegex = /matrix(3d)?\(.*?\)/
+
/** The CSS styles for the visualization. */
const visualizationStyle = `