* Returns raw fragment representation of this QueryBuilder.
()
| 2306 | * Returns raw fragment representation of this QueryBuilder. |
| 2307 | */ |
| 2308 | toRaw(): RawQueryFragment { |
| 2309 | const { sql, params } = this.toQuery(); |
| 2310 | return raw(sql, params); |
| 2311 | } |
| 2312 | |
| 2313 | toQuery(): { sql: string; params: readonly unknown[] } { |
| 2314 | if (this.#state.unionQuery) { |
no test coverage detected