* Gets the definition of a table. * * 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 table definition concurrently, it wil
(keyspaceName, name, callback)
| 506 | * second parameter. |
| 507 | */ |
| 508 | getTable(keyspaceName, name, callback) { |
| 509 | return promiseUtils.optionalCallback(this._getTable(keyspaceName, name), callback); |
| 510 | } |
| 511 | |
| 512 | /** |
| 513 | * @param {String} keyspaceName |