* Sets a post-operation to run after the query is run. This is often used for revoking temporary * permissions granted to access source tables. * * Example: * * ```js * // definitions/file.js * publish("example") * .preOps(ctx => `GRANT \`roles/bigquery.dataViewer\` ON TABL
(posts: Contextable<ITableContext, string | string[]>)
| 317 | * ``` |
| 318 | */ |
| 319 | public postOps(posts: Contextable<ITableContext, string | string[]>) { |
| 320 | this.contextablePostOps.push(posts); |
| 321 | return this; |
| 322 | } |
| 323 | |
| 324 | /** |
| 325 | * @deprecated Deprecated in favor of |
no test coverage detected