(schema: string, table: string)
| 739 | createIndexQuery({using: 'gist', fields: [TS_VECTOR_COL], name: tsVectorIndexName(schema, table)}, table, schema); |
| 740 | |
| 741 | const searchFunctionName = (schema: string, table: string): string => hashName(schema, 'search', table); |
| 742 | export const dropSearchFunctionQuery = (schema: string, table: string): string => |
| 743 | dropFunction(schema, searchFunctionName(schema, table)); |
| 744 | export const createSearchFunctionQuery = (schema: string, table: string): string => { |
no test coverage detected