1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-21 09:00:59 +03:00

New tokens ALWAYS, GENERATED, and STORED used by generated columns should

all be fallback tokens.

FossilOrigin-Name: 13fe6978b7de208d2e27460d824f7fc778cf6ea0aabfe566b32bb410b8816f63
This commit is contained in:
drh
2019-10-30 13:00:23 +00:00
parent 66c48907a2
commit 9ee94147f0
3 changed files with 10 additions and 7 deletions

View File

@@ -220,6 +220,9 @@ columnname(A) ::= nm(A) typetoken(Y). {sqlite3AddColumn(pParse,&A,&Y);}
CURRENT FOLLOWING PARTITION PRECEDING RANGE UNBOUNDED
EXCLUDE GROUPS OTHERS TIES
%endif SQLITE_OMIT_WINDOWFUNC
%ifndef SQLITE_OMIT_GENERATED_COLUMNS
GENERATED ALWAYS STORED
%endif
REINDEX RENAME CTIME_KW IF
.
%wildcard ANY.