Sets whether or not the server should populate its block cache. @param populate_blockcache if false, the block cache of the server will not be populated as the rows are being scanned. If true (the default), the blocks loaded by the server in order to feed the scanner may be
(final boolean populate_blockcache)
| 468 | * @throws IllegalStateException if scanning already started. |
| 469 | */ |
| 470 | public void setServerBlockCache(final boolean populate_blockcache) { |
| 471 | checkScanningNotStarted(); |
| 472 | this.populate_blockcache = populate_blockcache; |
| 473 | } |
| 474 | |
| 475 | /** |
| 476 | * Sets the maximum number of rows to scan per RPC (for better performance). |
nothing calls this directly
no test coverage detected