(proc)
| 340 | }, |
| 341 | |
| 342 | functionQueryName(proc) { |
| 343 | return this.camelCase( |
| 344 | this._functionName(proc) + |
| 345 | (proc.returnsSet ? connectionSuffix(proc) : "") |
| 346 | ); |
| 347 | }, |
| 348 | functionQueryNameList(proc) { |
| 349 | return this.camelCase(this._functionName(proc) + listSuffix(proc)); |
| 350 | }, |
nothing calls this directly
no test coverage detected
searching dependent graphs…