()
| 709 | } |
| 710 | |
| 711 | public database(): string { |
| 712 | if (!this.view.getTarget().database) { |
| 713 | this.view.session.compileError(new Error(`Warehouse does not support multiple databases`)); |
| 714 | return ""; |
| 715 | } |
| 716 | |
| 717 | return this.view.session.finalizeDatabase(this.view.getTarget().database); |
| 718 | } |
| 719 | |
| 720 | public where(where: Contextable<ITableContext, string>) { |
| 721 | this.view.where(where); |
nothing calls this directly
no test coverage detected