TablePlus-Windows
TablePlus-Windows copied to clipboard
Brackets within a function, within an array breaks the current query highlighting
Please answer the questions below, it helps us to track the issue.
-
Which driver are you using and version of it (Ex: PostgreSQL 10.0): PostgreSQL 14.0
-
Which TablePlus build number are you using (the number on the welcome screen, Ex: build 81): 4.10.5 (202)
-
The steps to reproduce this issue: The following query will break the current query highlighting, causing TablePlus to run any queries below it as well.
SELECT ARRAY[
(regexp_match('testing', '[A-z]+'))[1]
];
SELECT 1234; -- This will be executed as well
Another example,
SELECT ARRAY[REPLACE('something', 'some', '[BIG] ')];
SELECT 1234; -- This will be executed as well