Fixed an issue where EXPLAIN and EXPLAIN ANALYZE failed when blank lines separate clauses in the SQL query. (#9875)

getQueryAt now uses the syntax tree as the primary check for whether a
blank-line boundary cut through a SQL statement. It is split into two
helpers: _findQueryBoundaries (the original scan, parameterized by
stopAtBlankLine) and _needsExpansion, which detects when a Statement
node straddles the extracted range and re-scans ignoring blank lines.

A STATEMENT_STARTERS keyword list guards the case where the parser
merges semicolon-less queries into one Statement, and WRAPPER_STARTERS
(EXPLAIN, ANALYZE, WITH) force expansion when the Statement extends past
the range. Also fixes a Lezer boundary bug (tree.iterate is inclusive at
boundaries) with a node.to > startPos check. Adds 21 tests covering
EXPLAIN, negative no-merge cases, comments, and boundary edge cases.
This commit is contained in:
Ashesh Vashi
2026-06-09 15:10:07 +01:00
committed by Dave Page
parent 0223e8a026
commit 397be4e70e
3 changed files with 416 additions and 120 deletions
@@ -10,6 +10,7 @@
import { withTheme } from '../fake_theme';
import CodeMirror from 'sources/components/ReactCodeMirror';
import { syntaxTree } from '@codemirror/language';
import { render } from '@testing-library/react';
@@ -115,4 +116,208 @@ describe('CodeMirrorCustomEditorView', ()=>{
expect(editor.getQueryAt(29)).toEqual({'value': 'select * from public.actor;', 'from': 0, 'to': 27});
});
it('cursor on WHERE clause with blank lines between SELECT and FROM and WHERE',()=>{
// Query with blank lines between clauses: SELECT *\n\nFROM pg_class\n\nWHERE id = 1;
cmRerender({value: 'SELECT *\n\nFROM pg_class\n\nWHERE id = 1;'});
// Cursor at WHERE clause (position 25), should return full query
expect(editor.getQueryAt(25)).toEqual({'value': 'SELECT *\n\nFROM pg_class\n\nWHERE id = 1;', 'from': 0, 'to': 38});
});
it('cursor on FROM clause with blank lines in query',()=>{
// Query with blank lines between clauses
cmRerender({value: 'SELECT *\n\nFROM pg_class\n\nWHERE id = 1;'});
// Cursor at FROM clause (position 10), should return full query
expect(editor.getQueryAt(10)).toEqual({'value': 'SELECT *\n\nFROM pg_class\n\nWHERE id = 1;', 'from': 0, 'to': 38});
});
it('cursor on condition line with WHERE on separate line',()=>{
// Query: select *\n\nfrom pg_attribute\n\nWHERE\n\nattrelid > 3000;
const query = 'select *\n\nfrom pg_attribute\n\nWHERE\n\nattrelid > 3000;';
cmRerender({value: query});
// Cursor at 'attrelid' condition (position 38), should return full query
expect(editor.getQueryAt(38)).toEqual({'value': query, 'from': 0, 'to': query.length});
});
it('cursor on WHERE keyword with blank lines around it',()=>{
// Query: select *\n\nfrom pg_attribute\n\nWHERE\n\nattrelid > 3000;
const query = 'select *\n\nfrom pg_attribute\n\nWHERE\n\nattrelid > 3000;';
cmRerender({value: query});
// Cursor at WHERE keyword (position 30), should return full query
expect(editor.getQueryAt(30)).toEqual({'value': query, 'from': 0, 'to': query.length});
});
it('EXPLAIN ANALYZE with blank lines, cursor on WHERE',()=>{
const query = 'EXPLAIN ANALYZE SELECT *\n\nFROM pg_class\n\nWHERE oid > 1000;';
cmRerender({value: query});
expect(editor.getQueryAt(42)).toEqual({'value': query, 'from': 0, 'to': query.length});
});
it('EXPLAIN with cursor on FROM clause',()=>{
const query = 'EXPLAIN SELECT *\n\nFROM pg_class\n\nWHERE oid > 1000;';
cmRerender({value: query});
expect(editor.getQueryAt(18)).toEqual({'value': query, 'from': 0, 'to': query.length});
});
it('EXPLAIN with cursor on EXPLAIN keyword returns full query across blank lines',()=>{
const query = 'EXPLAIN SELECT *\n\nFROM pg_class\n\nWHERE oid > 1000;';
cmRerender({value: query});
// Cursor on EXPLAIN (position 4) — must expand past blank lines
expect(editor.getQueryAt(4)).toEqual({'value': query, 'from': 0, 'to': query.length});
});
it('EXPLAIN ANALYZE with cursor on SELECT returns full query',()=>{
const query = 'EXPLAIN ANALYZE SELECT *\n\nFROM pg_class\n\nWHERE oid > 1000;';
cmRerender({value: query});
// Cursor on SELECT (position 16) — before any blank line
expect(editor.getQueryAt(16)).toEqual({'value': query, 'from': 0, 'to': query.length});
});
it('two separate queries with semicolons and blank line are not merged',()=>{
const text = 'SELECT * FROM users;\n\nSELECT * FROM orders;';
cmRerender({value: text});
// Cursor on second query (position 22), should return only the second query
expect(editor.getQueryAt(22)).toEqual({'value': 'SELECT * FROM orders;', 'from': 22, 'to': 43});
});
it('two separate queries without semicolons and blank line are not merged',()=>{
const text = 'SELECT * FROM users\n\nSELECT * FROM orders';
cmRerender({value: text});
// Cursor on second query, should return only the second query
expect(editor.getQueryAt(21)).toEqual({'value': 'SELECT * FROM orders', 'from': 21, 'to': 41});
});
it('comment block between queries does not expand into adjacent query',()=>{
const text = 'SELECT 1;\n\n-- This is a comment\n\nSELECT 2;';
cmRerender({value: text});
// Cursor on comment (position 12), should return only the comment
expect(editor.getQueryAt(12)).toEqual({'value': '-- This is a comment', 'from': 11, 'to': 32});
});
it('first query is not expanded into second when cursor on first',()=>{
const text = 'SELECT * FROM users;\n\nSELECT * FROM orders;';
cmRerender({value: text});
// Cursor on first query, should return only the first query
expect(editor.getQueryAt(5)).toEqual({'value': 'SELECT * FROM users;', 'from': 0, 'to': 20});
});
it('cursor on blank line between clauses returns nearest query above',()=>{
// Cursor exactly on the blank line (position 9 = second \n).
// Blank line is a separator — returns the clause above it.
const text = 'SELECT *\n\nFROM pg_class\n\nWHERE id = 1;';
cmRerender({value: text});
expect(editor.getQueryAt(9)).toEqual({'value': 'SELECT *', 'from': 0, 'to': 9});
});
it('single-line EXPLAIN without blank lines',()=>{
// Regression guard: simple EXPLAIN must still work
const query = 'EXPLAIN SELECT * FROM pg_class;';
cmRerender({value: query});
expect(editor.getQueryAt(10)).toEqual({'value': query, 'from': 0, 'to': query.length});
});
it('multiple consecutive blank lines between clauses',()=>{
// 3 blank lines between SELECT and FROM
const query = 'SELECT *\n\n\n\nFROM pg_class;';
cmRerender({value: query});
expect(editor.getQueryAt(12)).toEqual({'value': query, 'from': 0, 'to': query.length});
});
// ----------------------------------------------------------------
// Diagnostic: verify Lezer Statement node boundaries for key cases
// ----------------------------------------------------------------
function getStatementNodes(editorView) {
const tree = syntaxTree(editorView.state);
const stmts = [];
tree.iterate({
enter: (node) => {
if (node.type.name === 'Statement') {
stmts.push({ from: node.from, to: node.to });
}
}
});
return stmts;
}
it('parser: single query with blank lines between clauses is one Statement',()=>{
cmRerender({value: 'SELECT *\n\nFROM pg_class\n\nWHERE id = 1;'});
const stmts = getStatementNodes(editor);
// Must be a single Statement spanning the entire query
expect(stmts.length).toBe(1);
expect(stmts[0].from).toBe(0);
expect(stmts[0].to).toBe(38);
});
it('parser: two queries with semicolons are separate Statements',()=>{
cmRerender({value: 'SELECT 1;\n\nSELECT 2;'});
const stmts = getStatementNodes(editor);
// Must be two separate Statements
expect(stmts.length).toBe(2);
// Statement 1 must NOT extend into Statement 2's range
expect(stmts[0].to).toBeLessThanOrEqual(stmts[1].from);
});
it('parser: two queries without semicolons — verify Statement layout',()=>{
cmRerender({value: 'SELECT * FROM users\n\nSELECT * FROM orders'});
const stmts = getStatementNodes(editor);
// Parser may merge (1 Statement) or separate (2 Statements) — both
// are handled by _needsExpansion. Pin down the exact current behavior
// so a parser update is noticed.
expect([1, 2]).toContain(stmts.length);
if (stmts.length === 1) {
expect(stmts[0].from).toBe(0);
expect(stmts[0].to).toBe(41);
}
});
it('parser: EXPLAIN SELECT is one Statement',()=>{
cmRerender({value: 'EXPLAIN ANALYZE SELECT *\n\nFROM pg_class\n\nWHERE oid > 1000;'});
const stmts = getStatementNodes(editor);
expect(stmts.length).toBe(1);
expect(stmts[0].from).toBe(0);
});
it('parser: Lezer iterate is inclusive at Statement boundary',()=>{
// Verify: tree.iterate({from: stmt1End}) DOES visit Statement 1
// (Lezer boundaries are inclusive). Our _needsExpansion guards
// against this with an additional node.to > startPos check.
cmRerender({value: 'SELECT 1;\n\nSELECT 2;'});
const tree = syntaxTree(editor.state);
const stmts = getStatementNodes(editor);
const stmt1End = stmts[0].to;
// Raw iterate at stmt1End DOES see Statement 1 (Lezer is inclusive)
let seenStmt1AtBoundary = false;
tree.iterate({
from: stmt1End,
to: stmt1End + 10,
enter: (node) => {
if (node.type.name === 'Statement' && node.from === stmts[0].from) {
seenStmt1AtBoundary = true;
}
}
});
expect(seenStmt1AtBoundary).toBe(true); // Lezer IS inclusive
// But _needsExpansion must NOT treat this as needing expansion.
// The query at Statement 2's position should return only Statement 2.
const stmt2Start = stmts[1].from;
const result = editor.getQueryAt(stmt2Start);
expect(result.value).toBe('SELECT 2;');
});
it('query starting exactly at previous Statement boundary is not expanded',()=>{
// Edge case: cursor right after the previous Statement.
// _needsExpansion must not fire because the previous Statement
// does not straddle (contain) startPos.
cmRerender({value: 'SELECT 1;\nSELECT 2;'});
const stmts = getStatementNodes(editor);
expect(stmts.length).toBe(2);
// Cursor on second query — must return only the second query
const result = editor.getQueryAt(stmts[1].from);
expect(result.value).toBe('SELECT 2;');
// from may include the preceding newline (trimmed from value)
expect(result.to).toBe(stmts[1].to);
});
});