()
| 48 | const getJoins = () => |
| 49 | Object.keys(sb.joins).length ? join(sb.joins, ' ') : ''; |
| 50 | const getFill = () => (sb.fill ? `WITH FILL ${sb.fill}` : ''); |
| 51 | const getWith = () => { |
| 52 | const cteEntries = Object.entries(sb.ctes); |
| 53 | if (cteEntries.length === 0) return ''; |
no outgoing calls
no test coverage detected