* Adds index hint to the FROM clause.
(sql: string | undefined)
| 2071 | * Adds index hint to the FROM clause. |
| 2072 | */ |
| 2073 | indexHint(sql: string | undefined): this { |
| 2074 | this.ensureNotFinalized(); |
| 2075 | this.#state.indexHint = sql; |
| 2076 | return this; |
| 2077 | } |
| 2078 | |
| 2079 | /** |
| 2080 | * Adds COLLATE clause to ORDER BY expressions. |
no test coverage detected