@@ -61,8 +61,7 @@ RowStream Client::Read(std::string table, KeySet keys,
6161 std::move (table), std::move (keys), std::move (columns),
6262 ToReadOptions (internal::CurrentOptions ()), absl::nullopt ,
6363 false , std::move (directed_read_option),
64- std::move (order_by),
65- std::move (lock_hint)});
64+ std::move (order_by), std::move (lock_hint)});
6665}
6766
6867RowStream Client::Read (Transaction::SingleUseOptions transaction_options,
@@ -78,7 +77,7 @@ RowStream Client::Read(Transaction::SingleUseOptions transaction_options,
7877 std::move (table), std::move (keys), std::move (columns),
7978 ToReadOptions (internal::CurrentOptions ()), absl::nullopt ,
8079 false , std::move (directed_read_option),
81- std::move (order_by),std::move (lock_hint)});
80+ std::move (order_by), std::move (lock_hint)});
8281}
8382
8483RowStream Client::Read (Transaction transaction, std::string table, KeySet keys,
@@ -92,7 +91,7 @@ RowStream Client::Read(Transaction transaction, std::string table, KeySet keys,
9291 std::move (columns),
9392 ToReadOptions (internal::CurrentOptions ()), absl::nullopt ,
9493 false , std::move (directed_read_option),
95- std::move (order_by),std::move (lock_hint)});
94+ std::move (order_by), std::move (lock_hint)});
9695}
9796
9897RowStream Client::Read (ReadPartition const & read_partition, Options opts) {
@@ -102,7 +101,8 @@ RowStream Client::Read(ReadPartition const& read_partition, Options opts) {
102101 auto lock_hint = ExtractOpt<LockHintOption>(opts);
103102 internal::OptionsSpan span (std::move (opts));
104103 return conn_->Read (spanner_internal::MakeReadParams (
105- read_partition, std::move (directed_read_option), std::move (order_by), std::move (lock_hint)));
104+ read_partition, std::move (directed_read_option), std::move (order_by),
105+ std::move (lock_hint)));
106106}
107107
108108StatusOr<std::vector<ReadPartition>> Client::PartitionRead (
0 commit comments