You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have encountered another issue with "Format SQL" feature. Consider the following statement with a generated column:
CREATE TABLE products(
name TEXT NOT NULL,
price REAL NOT NULL,
discount REAL NOT NULL,
tax REAL NOT NULL,
net_price REAL GENERATED ALWAYS
AS (price * (1-discount) * (1+tax))
);
Clicking "Format SQL" once surrounds the REAL after net_price with []. Pressing it again surrounds that with "" and so forth (press it 4 times).
I have encountered another issue with "Format SQL" feature. Consider the following statement with a generated column:
Clicking "Format SQL" once surrounds the
REAL
afternet_price
with[]
. Pressing it again surrounds that with""
and so forth (press it 4 times).Why is this quoting done?
Best regards!
Originally posted by @john-black-3k in #5225 (comment)
The text was updated successfully, but these errors were encountered: