(schema: string, table: string)
| 715 | const TS_VECTOR_COL = '_tsv'; |
| 716 | |
| 717 | export const dropTsVectorColumnQuery = (schema: string, table: string): string => |
| 718 | dropColumnQuery(schema, table, TS_VECTOR_COL); |
| 719 | export const createTsVectorColumnQuery = ( |
| 720 | schema: string, |
| 721 | table: string, |
nothing calls this directly
no test coverage detected