0

我正在尝试运行以下 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表(用户)的关系。

4

0 回答 0