-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
CREATE TABLE t2
(
a DOUBLE,
b INT ENCRYPTED FOR (MULTIPLICATION, ADDITION, RANGE),
c INT,
d VARCHAR(10) ENCRYPTED FOR (STORE, SEARCH),
e VARCHAR(30)
);
Error Statement: 42601: syntax error at or near "ENCRYPTED"
Error is the wrong DATATYPE DOUBLE being used, should be DOUBLE PRECISION, however the error message states the syntax error to be near the word "ENCRYPTED"