我正在尝试运行以下 supabase 查询以创建fts
将用于全文搜索的列
alter table
posts
add column
fts tsvector generated always as (to_tsvector('english', name || ' ' || creator.email)) stored;
create index posts_fts on posts using gin (fts);
但是我收到以下错误
表“创建者”缺少 FROM 子句条目
我认为这是由于creator.email
位。creator
是表上的一列posts
,表示与creator
表(用户)的关系。