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'm using the latest 1.5.25 version and I get the following error with this setup:
CREATETABLET (
Id STRING(20),
Text STRING(MAX),
Text_Tokens TOKENLIST AS (TOKENIZE_FULLTEXT(Text)) HIDDEN,
) PRIMARY KEY(Id);
CREATETABLEC (
Id STRING(20),
count INT64
) PRIMARY KEY(Id);
INSERT INTO T (id, text) VALUES ('1', 'Hello, World!');
INSERT INTO C (id, count) VALUES ('1',0);
The following statement
UPDATE C set count=(SELECTcount(*) from T) WHERE id='1';
I'm using the latest
1.5.25
version and I get the following error with this setup:The following statement
errors with
The text was updated successfully, but these errors were encountered: