Skip to content

Commit

Permalink
remove the duplicated 31034 from the TiDB bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
qiancai committed May 13, 2022
1 parent bee1c86 commit de90838
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion releases/release-5.4.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ TiDB v5.4.1 does not introduce any compatibility changes in product design. But
- Fix a bug that CTE might be blocked when a query reports errors [#31302](https://github.com/pingcap/tidb/issues/31302)
- Fix wrong range calculation results for Nulleq function on Enum values [#32428](https://github.com/pingcap/tidb/issues/32428)
- Fix TiDB OOM when exporting data using ChunkRPC [#31981](https://github.com/pingcap/tidb/issues/31981) [#30880](https://github.com/pingcap/tidb/issues/30880)
- Fix the potential issue that Regions might be unevenly distributed after a restore operation is finished [#31034](https://github.com/pingcap/tidb/issues/31034)
- Fix a bug that `tidb_super_read_only` is not automatically enabled when `tidb_restricted_read_only` is enabled [#31745](https://github.com/pingcap/tidb/issues/31745)
- Fix the issue that the `greatest` or `least` function with collation gets a wrong result [#31789](https://github.com/pingcap/tidb/issues/31789)
- Fix load data panic if the data is broken at an escape character [#31589](https://github.com/pingcap/tidb/issues/31589)
Expand Down
4 changes: 2 additions & 2 deletions scripts/internal-deduplicate.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ def get_note_info(path):


if __name__ == "__main__":
path = r'D:\GitHub\upstream\docs1\releases\release-5.1.4.md'
path = r'/Users/grcai/Documents/GitHub/qiancai/docs/releases/release-5.4.1.md'
exst_note = get_note_info(path)
mylist = exst_note
myset = set(mylist)
for item in myset:
if mylist.count(item) > 1:
print("the %s has found %d" % (item, mylist.count(item)))
else:
continue
continue

0 comments on commit de90838

Please sign in to comment.