支持索引并行创建
set max_parallel_workers=64;
set max_parallel_maintenance_workers=64;
drop index idx_file_name;
CREATE INDEX idx_file_name ON big_search_doc_new_ic USING btree (filename);
GIN索引不支持并行执行
CREATE INDEX big_search_doc_new_ic_tsvector_content_idx ON big_search_doc_new_ic USING gin (tsvector_content);
并行执行不支持insert select,create table as select。