TiDB commits

TiDB, PD, TiKVのコミットを記録しています。

2022-10-01から1ヶ月間の記事一覧

TiDB Commits on 2022-10-30

github.com lightning: support custom file listing policy by dsdashun · Pull Request #38599 · pingcap/tidb · GitHub Lightningでファイル選択用の新しいインターフェースFileIteratorを追加しています。 github.com 2022年10月30日にPDのコミットはあ…

TiDB Commits on 2022-10-29

github.com executor: show create table should distinguish between old and new foreign key by crazycs520 · Pull Request #38719 · pingcap/tidb · GitHub show create tableで/*T![FOREIGN KEY] INVALID */のコメントを削除しています。 *: show backf…

TiDB Commits on 2022-10-28

github.com session: set tidb_opt_range_max_size to 0 when upgrading to v6.4.0+ by xuyifangreeneyes · Pull Request #38694 · pingcap/tidb · GitHub TiDB 6.4にアップグレードした場合tidb_opt_range_max_sizeを64MBではなく0にしています。 dumpling:…

TiDB Commits on 2022-10-27

github.com *: support auto_random on composite clustered primary key by tangenta · Pull Request #38617 · pingcap/tidb · GitHub auto randomを利用する場合の複合clustered primary keyに対応しています。 server: update dispatch behavior on mysql…

TiDB Commits on 2022-10-26

github.com *: support foreign key on delete set null when execute delete statement by crazycs520 · Pull Request #38595 · pingcap/tidb · GitHub Foreign keyでon delete set nullの対応を追加しています。 log-backup: add progress bar for truncat…

TiDB Commits on 2022-10-25

github.com inforschema: check the user permission before loading TIKV_REGION_STATUS by CbcWestwolf · Pull Request #38627 · pingcap/tidb · GitHub TIKV_REGION_STATUSを検索するための権限チェックを行っています。 ddl, session: let ddl related t…

TiDB Commits on 2022-10-24

github.com executor: fix getting the more result when `select * from TIKV_REGION_STATUS where table_id=xx` by Defined2014 · Pull Request #38601 · pingcap/tidb · GitHub TIKV_REGION_STATUSの結果が正しくない事象を修正しています。 extension: a…

TiDB Commits on 2022-10-23

github.com 2022年10月23日にTiDBのコミットはありませんでした。 github.com 2022年10月23日にPDのコミットはありませんでした。 github.com 2022年10月23日にTiKVのコミットはありませんでした。 github.com 2022年10月23日にRaft Engineのコミットはあり…

TiDB Commits on 2022-10-22

github.com *: fix docker script by xhebox · Pull Request #38602 · pingcap/tidb · GitHub Dockerfileを修正しています。 github.com scheduler: update hot region scheduler default config for v2 by lhy1024 · Pull Request #5590 · tikv/pd · GitHub…

TiDB Commits on 2022-10-21

github.com *: add foreign key cascade delete when execute delete statement by crazycs520 · Pull Request #38377 · pingcap/tidb · GitHub foreign keyのdelete cascade対応を追加しています。 json: add json_storage_free function by YangKeao · Pul…

TiDB Commits on 2022-10-20

github.com dump: fix dump large tables will timeout by lance6716 · Pull Request #38540 · pingcap/tidb · GitHub Dumplingで大きなテーブルをdumpするときにタイムアウトしないようにしています。 executor: fix the missing `Grantor` when querying `…

TiDB Commits on 2022-10-19

github.com *: don't use DSN to avoid some security problems by lance6716 · Pull Request #38342 · pingcap/tidb · GitHub BRの接続に Data Source Name (DSN)を利用しないようにしています。 lightning: make default file router support compression …

TiDB Commits on 2022-10-18

github.com Isolation: Refactor resetting RCReadCheckTS internal flag by TonsnakeLin · Pull Request #38174 · pingcap/tidb · GitHub RCReadCheckTSの内部フラグのリセット方法をリファクタリングしています。 bazel: update config by hawkingrei · Pu…

TiDB Commits on 2022-10-17

github.com lightning: specify collation when parquet value to string datum by dsdashun · Pull Request #38391 · pingcap/tidb · GitHub LightningでApache Parquetの値をstring datumに変換するときに、"utf8mb4_bin" collationを指定しています。 baz…

TiDB Commits on 2022-10-16

github.com linter: remove duplicate item in the revive and allrevive by hawkingrei · Pull Request #38468 · pingcap/tidb · GitHub reviveとallreviveでの重複itemを削除しています。 util: disable memory global tuner in ut to avoid leak by wshws…

TiDB Commits on 2022-10-15

github.com *: bazel jvm use zgc by hawkingrei · Pull Request #38171 · pingcap/tidb · GitHub Bazelの設定を変更しています。 github.com 2022年10月15日にPDのコミットはありませんでした。 github.com 2022年10月15日にTiKVのコミットはありませんでし…

TiDB Commits on 2022-10-14

github.com mockkv: make pk id = -1 if no primary key column is used by xiongjiwei · Pull Request #38443 · pingcap/tidb · GitHub mockkv内でprimary keyのカラムが利用されていないときに-1を設定するようにしています。 ddl: support modify column …

TiDB Commits on 2022-10-13

github.com *: close resultSet by hawkingrei · Pull Request #38435 · pingcap/tidb · GitHub テストでtk.MustExecToErrを利用するようにしています。 bazel: update config and enable race for part test by hawkingrei · Pull Request #38434 · pingcap…

TiDB Commits on 2022-10-12

github.com *: Support to trigger GC when memory usage is large. by wshwsh12 · Pull Request #38179 · pingcap/tidb · GitHub システム変数tidb_server_memory_limit_gc_triggerを追加し、メモリ使用量が大きい場合(tidb_server_memory_limitの70%)にGC…

TiDB Commits on 2022-10-11

github.com executor: fix data race in the ScanDetail.ProcessedKeys by hawkingrei · Pull Request #38371 · pingcap/tidb · GitHub ScanDetail.ProcessedKeysのレースコンディションを修正しています。 dumpling: solve inconsistent capitalization of …

TiDB Commits on 2022-10-10

github.com *: remove non dry sysvar code by morgo · Pull Request #38182 · pingcap/tidb · GitHub システム変数関連のコードをDRYにしています。 planner: fix prepare insert statement with union can not work by fzzf678 · Pull Request #38311 · pi…

TiDB Commits on 2022-10-09

github.com domain: fix data race in the Domain.bindHandle by hawkingrei · Pull Request #38330 · pingcap/tidb · GitHub Domain.bindHandleでのレースコンディションを修正しています。 planner: hide cost model factors from users by qw4990 · Pull …

TiDB Commits on 2022-10-08

github.com expression: fix data race in the collationInfo by hawkingrei · Pull Request #38281 · pingcap/tidb · GitHub collationInfo.goでのレースコンディションを修正しています。 *: enable race for some part by hawkingrei · Pull Request #382…

TiDB Commits on 2022-10-07

github.com bazel: enable experimental_guard_against_concurrent_changes by hawkingrei · Pull Request #38283 · pingcap/tidb · GitHub Bazelでexperimental_guard_against_concurrent_changesを有効にしています。 github.com 2022年10月7日にPDのコミ…

TiDB Commits on 2022-10-06

github.com 2022年10月6日にTiDBのコミットはありませんでした。 github.com 2022年10月6日にPDのコミットはありませんでした。 github.com copr: fix wrong sql mode constants by gengliqi · Pull Request #13567 · tikv/tikv · GitHub SqlMode中の定数をT…

TiDB Commits on 2022-10-05

github.com 2022年10月5日にTiDBのコミットはありませんでした。 github.com 2022年10月5日にPDのコミットはありませんでした。 github.com 2022年10月5日にTiKVのコミットはありませんでした。 github.com 2022年10月5日にRaft Engineのコミットはありませ…

TiDB Commits on 2022-10-04

github.com 2022年10月4日にTiDBのコミットはありませんでした。 github.com 2022年10月4日にPDのコミットはありませんでした。 github.com 2022年10月4日にTiKVのコミットはありませんでした。 github.com 2022年10月4日にRaft Engineのコミットはありませ…

TiDB Commits on 2022-10-03

github.com 2022年10月3日にTiDBのコミットはありませんでした。 github.com 2022年10月3日にPDのコミットはありませんでした。 github.com 2022年10月3日にTiKVのコミットはありませんでした。 github.com 2022年10月3日にRaft Engineのコミットはありませ…

TiDB Commits on 2022-10-02

github.com expression: make a copy when retrieving json path expression from cache by xiongjiwei · Pull Request #38285 · pingcap/tidb · GitHub JSON pathをキャッシュから取得する際にコピーするようにしています。 github.com 2022年10月2日にPDの…

TiDB Commits on 2022-10-01

github.com variables: enable variable hook to access storage by YangKeao · Pull Request #38227 · pingcap/tidb · GitHub システム変数の変更からPDを呼び出せるようにしています。 executor: make unit test TestIssue21732 stable by tiancaiamao · P…