* Gets the definition of CQL functions for a given name. * * 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 function defin
(keyspaceName, name, callback)
| 547 | * as second parameter. |
| 548 | */ |
| 549 | getFunctions(keyspaceName, name, callback) { |
| 550 | return promiseUtils.optionalCallback(this._getFunctionsWrapper(keyspaceName, name), callback); |
| 551 | } |
| 552 | |
| 553 | /** |
| 554 | * @param {String} keyspaceName |
nothing calls this directly
no test coverage detected