* Gets a definition of CQL function for a given name and signature. * * If a callback is provided, the callback is invoked when the metadata retrieval completes. * Otherwise, it returns a Promise . * * * When trying to retrieve the same fun
(keyspaceName, name, signature, callback)
| 580 | * parameter. |
| 581 | */ |
| 582 | getFunction(keyspaceName, name, signature, callback) { |
| 583 | return promiseUtils.optionalCallback(this._getSingleFunction(keyspaceName, name, signature, false), callback); |
| 584 | } |
| 585 | |
| 586 | /** |
| 587 | * Gets the definition of CQL aggregate for a given name. |
nothing calls this directly
no test coverage detected