Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions go/test/endtoend/reparent/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ var (
primary key (id)
) Engine=InnoDB
`
// Tablets for for shard0
// Tablets for shard0
tablet62344 *cluster.Vttablet
tablet62044 *cluster.Vttablet
tablet41983 *cluster.Vttablet
tablet31981 *cluster.Vttablet

// Tablets for for shard1
// Tablets for shard1
masterTablet *cluster.Vttablet
replicaTablet *cluster.Vttablet
)
Expand Down
2 changes: 1 addition & 1 deletion go/vt/vttablet/tabletserver/schema/schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ limitations under the License.

package schema

// Yes, this sucks. It's a tiny tiny package that needs to be on its own
// Yes, this sucks. It's a tiny package that needs to be on its own
// It contains a data structure that's shared between sqlparser & tabletserver

import (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ func TestTxSerializerDryRun(t *testing.T) {

// TestTxSerializerGlobalQueueOverflow shows that the global queue can exceed
// its limit without rejecting errors. This is the case when all transactions
// are the first first one for their row range.
// are the first one for their row range.
// This is done on purpose to avoid that a too low global queue limit would
// reject transactions although they may succeed within the txpool constraints
// and RPC deadline.
Expand Down