-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
table: provide some binlog related methods for binlog in
MutateContext
- Loading branch information
1 parent
c71eece
commit 047cd02
Showing
12 changed files
with
185 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
// Copyright 2024 PingCAP, Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package contextimpl_test | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/pingcap/tidb/pkg/expression/contextsession" | ||
"github.com/pingcap/tidb/pkg/sessionctx/binloginfo" | ||
"github.com/pingcap/tidb/pkg/table/contextimpl" | ||
"github.com/pingcap/tidb/pkg/testkit" | ||
"github.com/pingcap/tidb/pkg/util/mock" | ||
"github.com/pingcap/tipb/go-binlog" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func TestMutateContextImplFields(t *testing.T) { | ||
sctx := mock.NewContext() | ||
sctx.Mutations = make(map[int64]*binlog.TableMutation) | ||
ctx := contextimpl.NewTableContextImpl(sctx) | ||
exprCtx := ctx.GetExprCtx() | ||
// expression | ||
require.Same(t, sctx.SessionExprContext, exprCtx.(*contextsession.SessionExprContext)) | ||
// binlog | ||
sctx.GetSessionVars().BinlogClient = nil | ||
require.False(t, ctx.BinlogEnabled()) | ||
sctx.GetSessionVars().BinlogClient = binloginfo.MockPumpsClient(&testkit.MockPumpClient{}) | ||
require.True(t, ctx.BinlogEnabled()) | ||
binlogMutation := ctx.GetBinlogMutation(1234) | ||
require.NotNil(t, binlogMutation) | ||
require.Same(t, sctx.StmtGetMutation(1234), binlogMutation) | ||
// restricted SQL | ||
sctx.GetSessionVars().StmtCtx.InRestrictedSQL = false | ||
require.False(t, ctx.InRestrictedSQL()) | ||
sctx.GetSessionVars().StmtCtx.InRestrictedSQL = true | ||
require.True(t, ctx.InRestrictedSQL()) | ||
// encoding config | ||
sctx.GetSessionVars().EnableRowLevelChecksum = true | ||
sctx.GetSessionVars().RowEncoder.Enable = true | ||
sctx.GetSessionVars().InRestrictedSQL = false | ||
cfg := ctx.GetRowEncodingConfig() | ||
require.True(t, cfg.IsRowLevelChecksumEnabled) | ||
require.Equal(t, sctx.GetSessionVars().IsRowLevelChecksumEnabled(), cfg.IsRowLevelChecksumEnabled) | ||
require.True(t, cfg.IsRowLevelChecksumEnabled) | ||
require.Same(t, &sctx.GetSessionVars().RowEncoder, cfg.RowEncoder) | ||
sctx.GetSessionVars().RowEncoder.Enable = false | ||
cfg = ctx.GetRowEncodingConfig() | ||
require.False(t, cfg.IsRowLevelChecksumEnabled) | ||
require.Equal(t, sctx.GetSessionVars().IsRowLevelChecksumEnabled(), cfg.IsRowLevelChecksumEnabled) | ||
require.Same(t, &sctx.GetSessionVars().RowEncoder, cfg.RowEncoder) | ||
require.False(t, cfg.IsRowLevelChecksumEnabled) | ||
sctx.GetSessionVars().RowEncoder.Enable = true | ||
sctx.GetSessionVars().InRestrictedSQL = true | ||
require.Equal(t, sctx.GetSessionVars().IsRowLevelChecksumEnabled(), cfg.IsRowLevelChecksumEnabled) | ||
require.False(t, cfg.IsRowLevelChecksumEnabled) | ||
sctx.GetSessionVars().InRestrictedSQL = false | ||
sctx.GetSessionVars().EnableRowLevelChecksum = false | ||
require.Equal(t, sctx.GetSessionVars().IsRowLevelChecksumEnabled(), cfg.IsRowLevelChecksumEnabled) | ||
// mutate buffers | ||
require.NotNil(t, ctx.GetMutateBuffers()) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.