* Gets the definition of a CQL materialized view for a given name. * * If a callback is provided, the callback is invoked when the metadata retrieval completes. * Otherwise, it returns a Promise . * * * Note that, unlike the rest of the {
(keyspaceName, name, callback)
| 651 | * second parameter. |
| 652 | */ |
| 653 | getMaterializedView(keyspaceName, name, callback) { |
| 654 | return promiseUtils.optionalCallback(this._getMaterializedView(keyspaceName, name), callback); |
| 655 | } |
| 656 | |
| 657 | /** |
| 658 | * @param {String} keyspaceName |
nothing calls this directly
no test coverage detected