File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -38,14 +38,14 @@ import (
38
38
var (
39
39
// minPDVersion is the version of the minimal compatible PD.
40
40
// The min version should be 7.x because we adapt to tidb concurrency ddl implementations.
41
- minPDVersion = semver .New ("5 .1.0-alpha" )
41
+ minPDVersion = semver .New ("7 .1.0-alpha" )
42
42
// maxPDVersion is the version of the maximum compatible PD.
43
43
// Compatible versions are in [minPDVersion, maxPDVersion)
44
44
maxPDVersion = semver .New ("10.0.0" )
45
45
46
46
// MinTiKVVersion is the version of the minimal compatible TiKV.
47
47
// The min version should be 7.x because we adapt to tidb concurrency ddl implementations.
48
- MinTiKVVersion = semver .New ("5 .1.0-alpha" )
48
+ MinTiKVVersion = semver .New ("7 .1.0-alpha" )
49
49
// maxTiKVVersion is the version of the maximum compatible TiKV.
50
50
// Compatible versions are in [MinTiKVVersion, maxTiKVVersion)
51
51
maxTiKVVersion = semver .New ("10.0.0" )
55
55
defaultTiCDCVersion = semver .New ("4.0.1" )
56
56
57
57
// MinTiCDCVersion is the version of the minimal allowed TiCDC version.
58
- MinTiCDCVersion = semver .New ("5 .3.0-alpha" )
58
+ MinTiCDCVersion = semver .New ("7 .3.0-alpha" )
59
59
// MaxTiCDCVersion is the version of the maximum allowed TiCDC version.
60
60
// for version `x.y.z`, max allowed `x+2.0.0`
61
61
MaxTiCDCVersion = semver .New ("10.0.0-alpha" )
You can’t perform that action at this time.
0 commit comments