@@ -32,9 +32,6 @@ var Transaction = require('./transaction.js');
3232 * @extends Transaction
3333 *
3434 * @param {TransactionOptions } [options] [Transaction options](https://cloud.google.com/spanner/docs/timestamp-bounds).
35- *
36- * @example <caption>include:samples/batch.js</caption>
37- * region_tag:create_batch_transaction
3835 */
3936function BatchTransaction ( session ) {
4037 Transaction . call ( this , session , { readOnly : true } ) ;
@@ -117,7 +114,7 @@ BatchTransaction.prototype.close = function(callback) {
117114 * @returns {Promise<CreateQueryPartitionsResponse> }
118115 *
119116 * @example <caption>include:samples/batch.js</caption>
120- * region_tag:create_query_partitions
117+ * region_tag:spanner_batch_client
121118 */
122119BatchTransaction . prototype . createQueryPartitions = function ( query , callback ) {
123120 if ( is . string ( query ) ) {
@@ -210,9 +207,6 @@ BatchTransaction.prototype.createPartitions_ = function(config, callback) {
210207 * read from.
211208 * @param {CreateReadPartitionsCallback } [callback] Callback function.
212209 * @returns {Promise<CreateReadPartitionsResponse> }
213- *
214- * @example <caption>include:samples/batch.js</caption>
215- * region_tag:create_read_partitions
216210 */
217211BatchTransaction . prototype . createReadPartitions = function ( options , callback ) {
218212 var reqOpts = codec . encodeRead ( options ) ;
@@ -247,7 +241,7 @@ BatchTransaction.prototype.createReadPartitions = function(options, callback) {
247241 * @returns {Promise<RunResponse>|Promise<TransactionRequestReadResponse> }
248242 *
249243 * @example <caption>include:samples/batch.js</caption>
250- * region_tag:execute_partition
244+ * region_tag:spanner_batch_execute_partitions
251245 */
252246BatchTransaction . prototype . execute = function ( partition , callback ) {
253247 if ( is . string ( partition . table ) ) {
0 commit comments