We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ac5410 commit 4411cd7Copy full SHA for 4411cd7
1 file changed
src/components/gui/tabs/query-tab.tsx
@@ -96,16 +96,13 @@ export default function QueryWindow({
96
const editorState = editorRef.current?.view?.state;
97
98
if (!editorState) return;
99
- console.log(editorState);
100
101
if (all) {
102
finalStatements = splitSqlQuery(editorState).map((q) => q.text);
103
} else {
104
const segment = resolveToNearestStatement(editorState);
105
if (!segment) return;
106
107
- console.log(segment);
108
-
109
const statement = editorState.doc.sliceString(segment.from, segment.to);
110
111
if (statement) {
0 commit comments