TiDB is an open source distributed HTAP database compatible with the MySQL protocol

Overview

LICENSE Language Build Status Go Report Card GitHub release GitHub release date CircleCI Status Coverage Status GoDoc

What is TiDB?

TiDB ("Ti" stands for Titanium) is an open-source NewSQL database that supports Hybrid Transactional and Analytical Processing (HTAP) workloads. It is MySQL compatible and features horizontal scalability, strong consistency, and high availability.

  • Horizontal Scalability

    TiDB expands both SQL processing and storage by simply adding new nodes. This makes infrastructure capacity planning both easier and more cost-effective than traditional relational databases which only scale vertically.

  • MySQL Compatible Syntax

    TiDB acts like it is a MySQL 5.7 server to your applications. You can continue to use all of the existing MySQL client libraries, and in many cases, you will not need to change a single line of code in your application. Because TiDB is built from scratch, not a MySQL fork, please check out the list of known compatibility differences.

  • Distributed Transactions

    TiDB internally shards table into small range-based chunks that we refer to as "Regions". Each Region defaults to approximately 100 MiB in size, and TiDB uses an optimized Two-phase commit to ensure that Regions are maintained in a transactionally consistent way.

  • Cloud Native

    TiDB is designed to work in the cloud -- public, private, or hybrid -- making deployment, provisioning, operations, and maintenance simple.

    The storage layer of TiDB, called TiKV, is a Cloud Native Computing Foundation (CNCF) Graduated project. The architecture of the TiDB platform also allows SQL processing and storage to be scaled independently of each other in a very cloud-friendly manner.

  • Minimize ETL

    TiDB is designed to support both transaction processing (OLTP) and analytical processing (OLAP) workloads. This means that while you may have traditionally transacted on MySQL and then Extracted, Transformed and Loaded (ETL) data into a column store for analytical processing, this step is no longer required.

  • High Availability

    TiDB uses the Raft consensus algorithm to ensure that data is highly available and safely replicated throughout storage in Raft groups. In the event of failure, a Raft group will automatically elect a new leader for the failed member, and self-heal the TiDB cluster without any required manual intervention. Failure and self-healing operations are also transparent to applications.

For more details and latest updates, see TiDB docs and release notes.

Community

You can join these groups and chats to discuss and ask TiDB related questions:

In addition, you may enjoy following:

For support, please contact PingCAP.

Quick start

To start using TiDB

See Quick Start Guide.

To start developing TiDB

See Get Started chapter of TiDB Dev Guide.

Contributing

The community repository hosts all information about the TiDB community, including how to contribute to TiDB, how TiDB community is governed, how special interest groups are organized, etc.

contribution-map

Contributions are welcomed and greatly appreciated. See Contribution to TiDB for details on typical contribution workflows. For more contributing information, click on the contributor icon above.

Adopters

View the current list of in-production TiDB adopters here.

Case studies

Architecture

architecture

License

TiDB is under the Apache 2.0 license. See the LICENSE file for details.

Acknowledgments

Comments
  • planner: rewrite to make FULL JOIN executable

    planner: rewrite to make FULL JOIN executable

    What problem does this PR solve?

    Issue Number: close #xxx

    Problem Summary:

    What is changed and how it works?

    rewrite t1 full join t2 on COND to t1 left join t2 on COND union all select null, null, ... null, t2.* from t2 where not exists(select 1 from t1 where COND)

    Check List

    Tests

    • [x] Unit test
    • [ ] Integration test
    • [ ] Manual test (add detailed scripts or steps below)
    • [ ] No code

    Side effects

    • [ ] Performance regression: Consumes more CPU
    • [ ] Performance regression: Consumes more Memory
    • [ ] Breaking backward compatibility

    Documentation

    • [ ] Affects user behaviors
    • [ ] Contains syntax changes
    • [ ] Contains variable changes
    • [ ] Contains experimental features
    • [ ] Changes MySQL compatibility

    Release note

    Please refer to Release Notes Language Style Guide to write a quality release note.

    None
    
    size/XXL do-not-merge/cherry-pick-not-approved release-note-none 
    opened by winoros 2
  • domain: add timeout for updateStatsWorker exit process

    domain: add timeout for updateStatsWorker exit process

    What problem does this PR solve?

    Issue Number: close #40433

    Problem Summary:

    What is changed and how it works?

    add timeout for updateStatsWorker exit process

    Check List

    Tests

    • [ ] Unit test
    • [ ] Integration test
    • [ ] Manual test (add detailed scripts or steps below)
    • [ ] No code

    Side effects

    • [ ] Performance regression: Consumes more CPU
    • [ ] Performance regression: Consumes more Memory
    • [ ] Breaking backward compatibility

    Documentation

    • [ ] Affects user behaviors
    • [ ] Contains syntax changes
    • [ ] Contains variable changes
    • [ ] Contains experimental features
    • [ ] Changes MySQL compatibility

    Release note

    Please refer to Release Notes Language Style Guide to write a quality release note.

    None
    
    size/S do-not-merge/work-in-progress release-note-none needs-cherry-pick-release-6.5 
    opened by Yisaer 2
  • Statsworker will suspend on exiting if pd disconnected

    Statsworker will suspend on exiting if pd disconnected

    Bug Report

    Please answer these questions before submitting your issue. Thanks!

    1. Minimal reproduce step (Required)

    make pd disconnected with tidb-server, then close tidb-server

    2. What did you expect to see? (Required)

    tidb-server closed successfully

    3. What did you see instead (Required)

    we can't see updateStatsworker exited on log and found campaignLoop retried in loop.

    [2023/01/07 16:13:24.006 +08:00] [INFO] [domain.go:1948] ["loadStatsWorker exited."]
    [2023/01/07 16:13:24.006 +08:00] [INFO] [domain.go:1713] ["PlanReplayerTaskCollectHandle exited."]
    [2023/01/07 16:13:24.006 +08:00] [INFO] [domain.go:1627] ["TelemetryRotateSubWindowLoop exited."]
    [2023/01/07 16:13:24.006 +08:00] [INFO] [domain.go:1331] ["loadPrivilegeInLoop exited."]
    [2023/01/07 16:13:24.006 +08:00] [INFO] [domain.go:1755] ["dumpFileGcChecker exited."]
    [2023/01/07 16:13:24.006 +08:00] [INFO] [domain.go:619] ["topologySyncerKeeper exited."]
    [2023/01/07 16:13:24.006 +08:00] [INFO] [domain.go:596] ["globalConfigSyncerKeeper exited."]
    [2023/01/07 16:13:24.006 +08:00] [INFO] [domain.go:1520] ["globalBindHandleWorkerLoop exited."]
    [2023/01/07 16:13:24.006 +08:00] [INFO] [domain.go:571] ["infoSyncerKeeper exited."]
    [2023/01/07 16:13:24.006 +08:00] [INFO] [domain.go:754] ["loadSchemaInLoop exited."]
    [2023/01/07 16:13:24.006 +08:00] [INFO] [domain.go:2386] ["serverIDKeeper exited."]
    [2023/01/07 16:13:24.006 +08:00] [INFO] [manager.go:315] ["watcher is closed, no owner"] ["owner info"="[log-backup] ownerManager 1bc31577-b071-4533-8f00-1d44381dea22 watch owner key /tidb/br-stream/owner/e2e858a1321177a"]
    [2023/01/07 16:13:24.006 +08:00] [INFO] [manager.go:315] ["watcher is closed, no owner"] ["owner info"="[stats] ownerManager 2af1d9b7-1cd1-43c5-b928-cf2bd203f7a1 watch owner key /tidb/stats/owner/e2e858a1321177e"]
    [2023/01/07 16:13:24.006 +08:00] [WARN] [manager.go:261] ["is not the owner"] ["owner info"="[log-backup] /tidb/br-stream/owner ownerManager 1bc31577-b071-4533-8f00-1d44381dea22"]
    [2023/01/07 16:13:24.006 +08:00] [WARN] [manager.go:261] ["is not the owner"] ["owner info"="[stats] /tidb/stats/owner ownerManager 2af1d9b7-1cd1-43c5-b928-cf2bd203f7a1"]
    [2023/01/07 16:13:24.006 +08:00] [INFO] [handle_hist.go:189] ["SubLoadWorker exited."]
    [2023/01/07 16:13:24.006 +08:00] [INFO] [handle_hist.go:189] ["SubLoadWorker exited."]
    [2023/01/07 16:13:24.006 +08:00] [INFO] [domain.go:1786] ["HistoricalStatsWorker exited."]
    [2023/01/07 16:13:24.006 +08:00] [INFO] [domain.go:2116] ["gcAnalyzeHistory exited."]
    [2023/01/07 16:13:24.006 +08:00] [INFO] [manager.go:315] ["watcher is closed, no owner"] ["owner info"="[telemetry] ownerManager 2af1d9b7-1cd1-43c5-b928-cf2bd203f7a1 watch owner key /tidb/telemetry/owner/5b1c858a1332d304"]
    [2023/01/07 16:13:24.006 +08:00] [INFO] [job_manager.go:243] ["shrink ttl worker"] [ttl-worker=manager] [originalCount=4] [newCount=0]
    [2023/01/07 16:13:24.006 +08:00] [WARN] [job_manager.go:254] ["fail to stop ttl worker"] [ttl-worker=manager] [error="context canceled"]
    [2023/01/07 16:13:24.006 +08:00] [INFO] [handle_hist.go:189] ["SubLoadWorker exited."]
    [2023/01/07 16:13:24.006 +08:00] [INFO] [handle_hist.go:189] ["SubLoadWorker exited."]
    [2023/01/07 16:13:24.006 +08:00] [INFO] [domain.go:1381] ["LoadSysVarCacheLoop exited."]
    [2023/01/07 16:13:24.006 +08:00] [INFO] [domain.go:1731] ["PlanReplayerTaskDumpHandle exited."]
    [2023/01/07 16:13:24.006 +08:00] [WARN] [manager.go:261] ["is not the owner"] ["owner info"="[bindinfo] /tidb/bindinfo/owner ownerManager 2af1d9b7-1cd1-43c5-b928-cf2bd203f7a1"]
    [2023/01/07 16:13:24.007 +08:00] [INFO] [manager.go:219] ["etcd session is done, creates a new one"] ["owner info"="[bindinfo] /tidb/bindinfo/owner ownerManager 2af1d9b7-1cd1-43c5-b928-cf2bd203f7a1"]
    [2023/01/07 16:13:24.007 +08:00] [INFO] [manager.go:223] ["break campaign loop, NewSession failed"] ["owner info"="[bindinfo] /tidb/bindinfo/owner ownerManager 2af1d9b7-1cd1-43c5-b928-cf2bd203f7a1"] [error="context canceled"]
    [2023/01/07 16:13:24.007 +08:00] [INFO] [domain.go:1106] ["closestReplicaReadCheckLoop exited."]
    [2023/01/07 16:13:24.007 +08:00] [INFO] [domain.go:542] ["topNSlowQueryLoop exited."]
    [2023/01/07 16:13:24.006 +08:00] [WARN] [job_manager.go:254] ["fail to stop ttl worker"] [ttl-worker=manager] [error="context canceled"]
    [2023/01/07 16:13:24.007 +08:00] [INFO] [owner_daemon.go:81] ["daemon loop exits"] [id=1bc31577-b071-4533-8f00-1d44381dea22] [daemon-id=LogBackup::Advancer]
    [2023/01/07 16:13:24.006 +08:00] [WARN] [manager.go:261] ["is not the owner"] ["owner info"="[telemetry] /tidb/telemetry/owner ownerManager 2af1d9b7-1cd1-43c5-b928-cf2bd203f7a1"]
    [2023/01/07 16:13:24.007 +08:00] [INFO] [manager.go:219] ["etcd session is done, creates a new one"] ["owner info"="[telemetry] /tidb/telemetry/owner ownerManager 2af1d9b7-1cd1-43c5-b928-cf2bd203f7a1"]
    [2023/01/07 16:13:24.007 +08:00] [INFO] [manager.go:247] ["failed to campaign"] ["owner info"="[stats] /tidb/stats/owner ownerManager 2af1d9b7-1cd1-43c5-b928-cf2bd203f7a1"] [error="rpc error: code = Unavailable desc = error reading from server: read tcp 10.233.125.151:50126->10.233.81.246:2379: use of closed network connection"]
    [2023/01/07 16:13:24.007 +08:00] [INFO] [manager.go:223] ["break campaign loop, NewSession failed"] ["owner info"="[telemetry] /tidb/telemetry/owner ownerManager 2af1d9b7-1cd1-43c5-b928-cf2bd203f7a1"] [error="context canceled"]
    [2023/01/07 16:13:24.007 +08:00] [INFO] [flush_subscriber.go:97] ["[log backup flush subscriber] Clearing."]
    [2023/01/07 16:13:24.007 +08:00] [INFO] [manager.go:247] ["failed to campaign"] ["owner info"="[log-backup] /tidb/br-stream/owner ownerManager 1bc31577-b071-4533-8f00-1d44381dea22"] [error="context canceled"]
    [2023/01/07 16:13:24.007 +08:00] [INFO] [manager.go:219] ["etcd session is done, creates a new one"] ["owner info"="[log-backup] /tidb/br-stream/owner ownerManager 1bc31577-b071-4533-8f00-1d44381dea22"]
    [2023/01/07 16:13:24.007 +08:00] [INFO] [manager.go:223] ["break campaign loop, NewSession failed"] ["owner info"="[log-backup] /tidb/br-stream/owner ownerManager 1bc31577-b071-4533-8f00-1d44381dea22"] [error="context canceled"]
    [2023/01/07 16:13:24.007 +08:00] [INFO] [manager.go:219] ["etcd session is done, creates a new one"] ["owner info"="[stats] /tidb/stats/owner ownerManager 2af1d9b7-1cd1-43c5-b928-cf2bd203f7a1"]
    [2023/01/07 16:13:24.006 +08:00] [INFO] [handle_hist.go:189] ["SubLoadWorker exited."]
    
    

    4. What is your TiDB version? (Required)

    type/bug severity/major affects-6.5 
    opened by Yisaer 0
  • planner, executor: split the range for unsigned pk of partition table when limit is used (#40313)

    planner, executor: split the range for unsigned pk of partition table when limit is used (#40313)

    This is an automated cherry-pick of #40313

    What problem does this PR solve?

    Issue Number: close #40309

    Problem Summary:

    We ignored the KeepOrder flag for the partition table since it actually doesn't need the request to be returned in order.

    But we use the KeepOrder flag to split the signed range and unsigned range for unsigned pk since the tikv stores unsigned part at the front of the signed part.

    What is changed and how it works?

    Set the KeepOrder flag.

    Check List

    Tests

    • [x] Unit test
    • [ ] Integration test
    • [ ] Manual test (add detailed scripts or steps below)
    • [ ] No code

    Side effects

    • [ ] Performance regression: Consumes more CPU
    • [ ] Performance regression: Consumes more Memory
    • [ ] Breaking backward compatibility

    Documentation

    • [ ] Affects user behaviors
    • [ ] Contains syntax changes
    • [ ] Contains variable changes
    • [ ] Contains experimental features
    • [ ] Changes MySQL compatibility

    Release note

    Please refer to Release Notes Language Style Guide to write a quality release note.

    None
    
    size/S do-not-merge/cherry-pick-not-approved release-note-none type/cherry-pick-for-release-6.5 
    opened by ti-chi-bot 2
  • log-backup: remove k-v record in etcd when stop log-backup task

    log-backup: remove k-v record in etcd when stop log-backup task

    Signed-off-by: joccau zak.zhao@pingcap.com

    What problem does this PR solve?

    Issue Number: close https://github.com/pingcap/tidb/issues/40403

    Problem Summary:

    What is changed and how it works?

    Check List

    Tests

    • [x] Unit test
    • [ ] Integration test
    • [ ] Manual test (add detailed scripts or steps below)
    • [ ] No code

    Side effects

    • [ ] Performance regression: Consumes more CPU
    • [ ] Performance regression: Consumes more Memory
    • [ ] Breaking backward compatibility

    Documentation

    • [ ] Affects user behaviors
    • [ ] Contains syntax changes
    • [ ] Contains variable changes
    • [ ] Contains experimental features
    • [ ] Changes MySQL compatibility

    Release note

    Please refer to Release Notes Language Style Guide to write a quality release note.

    None
    
    size/L release-note-none component/br needs-cherry-pick-release-6.5 
    opened by joccau 1
  • recover expression index cause data inconsistency

    recover expression index cause data inconsistency

    Bug Report

    Please answer these questions before submitting your issue. Thanks!

    1. Minimal reproduce step (Required)

    create table t(a int, index idx((a+1)));
    insert into t values (1);
    insert into t values (2);
    admin recover index t idx;
    admin check table t;
    

    2. What did you expect to see? (Required)

    3. What did you see instead (Required)

    mysql> create table t(a int, index idx((a+1)));
    Query OK, 0 rows affected (0.04 sec)
    
    mysql> insert into t values (1);
    Query OK, 1 row affected (0.00 sec)
    
    mysql> insert into t values (2);
    Query OK, 1 row affected (0.00 sec)
    
    mysql> admin recover index t idx;
    +-------------+------------+
    | ADDED_COUNT | SCAN_COUNT |
    +-------------+------------+
    |           2 |          2 |
    +-------------+------------+
    1 row in set (0.01 sec)
    
    mysql> admin check table t;
    ERROR 8134 (HY000): data inconsistency in table: t, index: idx, col: _V$_idx_0, handle: "1", index-values:"KindNull <nil>" != record-values:"KindInt64 2", compare err:<nil>
    

    4. What is your TiDB version? (Required)

    mysql> select tidb_version();
    +-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
    | tidb_version()
                                                                                                             |
    +-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
    | Release Version: v6.5.0-2-gf700b565bc
    Edition: Community
    Git Commit Hash: f700b565bcf1115f27fab076f7183cf9d78a0f16
    Git Branch: release-6.5
    UTC Build Time: 2023-01-09 09:47:14
    GoVersion: go1.19.1
    Race Enabled: false
    TiKV Min Version: 6.2.0-alpha
    Check Table Before Drop: false
    Store: unistore |
    +-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
    1 row in set (0.02 sec)
    

    I believe it happens since expression index is supported

    type/bug 
    opened by xiongjiwei 0
Releases(v6.5.0)
  • v6.5.0(Dec 29, 2022)

  • v5.1.5(Dec 28, 2022)

    Bug fixes

    • Fix the issue that the window function causes TiDB to panic instead of reporting an error #30326
    • Fix the wrong result that occurs when enabling dynamic mode in partitioned tables for TiFlash #37254
    • Fix wrong results of GREATEST and LEAST when passing in unsigned BIGINT arguments #30101
    • Fix wrong results of deleting data of multiple tables using left join #31321
    • Fix the issue that the result of concat(ifnull(time(3))) in TiDB is different from that in MySQL #29498
    • Fix the issue that the SQL statements that contain cast(integer as char) union string return wrong results #29513
    • Fix the issue that INL_HASH_JOIN might hang when used with LIMIT #35638
    • Fix the wrong ANY_VALUE result that occurs when a Region returns empty data #30923
    • Fix wrong results of index join caused by an innerWorker panic #31494
    • Fix the issue that a SQL operation is canceled when its JSON type column joins its CHAR type column #29401
    • Fix the issue that the background HTTP service of TiDB might not exit successfully and makes the cluster in an abnormal state #30571
    • Fix the issue that concurrent column type change causes inconsistency between the schema and the data #31048
    • Fix the issue that KILL TIDB cannot take effect immediately on idle connections #24031
    • Fix the bug that setting any session variable will make tidb_snapshot fail to work #35515
    • Fix the issue that the Region cache is not cleaned up in time when the Region is merged #37141
    • Fix the panic issue caused by the connection array race in the KV client #33773
    • Fix the issue that when TiDB Binlog is enabled, executing the ALTER SEQUENCE statement might cause a wrong metadata version and cause Drainer to exit #36276
    • Fix the bug that TiDB may panic when querying statement summary tables #35340
    • Fix the issue that TiDB gets the wrong result when using TiFlash to scan tables with empty range although TiFlash does not support reading tables with empty range yet #33083
    • Fix the issue that the avg() function returns ERROR 1105 (HY000): other error for mpp stream: Could not convert to the target type - -value is out of range. when queried from TiFlash #29952
    • Fix the issue that ERROR 1105 (HY000): close of nil channel is returned when using HashJoinExec #30289
    • Fix the issue that TiKV and TiFlash return different results when querying logical operations #37258
    • Fix the issue that the EXECUTE statement might throw an unexpected error in specific scenarios #37187
    • Fix the planner wrong behaviors that occur when tidb_opt_agg_push_down and tidb_enforce_mpp are enabled #34465
    • Fix a bug that TiDB might send coprocessor requests when executing the SHOW COLUMNS statement #36496
    • Add warnings for lock tables and unlock tables when the enable-table-lock flag is not enabled #28967
    • Fix the issue that range partitions allow multiple MAXVALUE partitions #36329
    Source code(tar.gz)
    Source code(zip)
  • v6.1.3(Dec 5, 2022)

  • v6.4.0(Nov 17, 2022)

    Improvements

    • Allow modifying the noop variable lc_messages #38231 @djshow832
    • Support the AUTO_RANDOM column as the first column of the clustered composite index #38572 @tangenta
    • Use pessimistic transactions in internal transaction retry to avoid retry failure and reduce time consumption #38136 @jackysp
    • Improve the mechanism for loading the metadata. The metadata is loaded into memory only when necessary, which significantly reduces the memory usage during PITR #38404 @YuJuncen
    • Optimize the file scanning logic to accelerate the scan of schema files #38598 @dsdashun

    Bug fixes

    • Fix the potential issue of index inconsistency that occurs after you create a new index #38165 @tangenta
    • Fix a permission issue of the INFORMATION_SCHEMA.TIKV_REGION_STATUS table #38407 @CbcWestwolf
    • Fix the issue that the grantor field is missing in the mysql.tables_priv table #38293 @CbcWestwolf
    • Fix the issue that the join result of common table expressions might be wrong #38170 @wjhuang2016
    • Fix the issue that the union result of common table expressions might be wrong #37928 @YangKeao
    • Fix the issue that the information in the transaction region num monitoring panel is incorrect #38139 @jackysp
    • Fix the issue that the system variable tidb_constraint_check_in_place_pessimistic might affect internal transactions. The variable scope is modified to SESSION. #38766
    • Fix the issue that conditions in a query are mistakenly pushed down to projections #35623 @Reminiscent
    • Fix the issue that the wrong isNullRejected check results for AND and OR cause wrong query results #38304 @Yisaer
    • Fix the issue that ORDER BY in GROUP_CONCAT is not considered when the outer join is eliminated, which causes wrong query results #18216 @winoros
    • Fix the issue of the wrong query result that occurs when the mistakenly pushed-down conditions are discarded by Join Reorder #38736 @winoros
    • Fix the restoration failure issue caused by PD leader switch during the restoration process #36910 @MoCuishle28
    • Fix the issue that the log backup task cannot be paused #38250 @joccau
    • Fix the issue that when BR deletes log backup data, it mistakenly deletes data that should not be deleted #38939 @Leavrth
    • Fix the issue that BR fails to delete data when deleting the log backup data stored in Azure Blob Storage or Google Cloud Storage for the first time #38229 @Leavrth
    • Fix the import performance degradation when importing the Apache Parquet files to the target tables that contain the string type columns in thebinary encoding format #38351 @dsdashun
    Source code(tar.gz)
    Source code(zip)
  • v5.3.4(Nov 24, 2022)

    Bug fixes

    • Fix the issue that the Region cache is not cleaned up in time when the Region is merged #37141
    • Fix the issue that TiDB writes wrong data due to the wrong encoding of the ENUM or SET column #32302
    • Fix the issue that database-level privileges are incorrectly cleaned up #38363
    • Fix the issue that the grantor field is missing in the mysql.tables_priv table #38293
    • Fix the issue that KILL TIDB cannot take effect immediately on idle connections #24031
    • Fix the issue that the return type of date_add and date_sub is different between TiDB and MySQL #36394, #27573
    • Fix the incorrect INSERT_METHOD value when Parser restores table options #38368
    • Fix the issue that authentication fails when a MySQL client of v5.1 or earlier connects to the TiDB server #29725
    • Fix wrong results of GREATEST and LEAST when passing in unsigned BIGINT arguments #30101
    • Fix the issue that the result of concat(ifnull(time(3)) in TiDB is different from that in MySQL #29498
    • Fix the issue that the avg() function returns ERROR 1105 (HY000): other error for mpp stream: Could not convert to the target type - -value is out of range. when queried from TiFlash #29952
    • Fix the issue that ERROR 1105 (HY000): close of nil channel is returned when using HashJoinExec #30289
    • Fix the issue that TiKV and TiFlash return different results when querying logical operations #37258
    • Fix the issue that the EXPLAIN ANALYZE statement with DML executors might return result before the transaction commit finishes #37373
    • Fix the issue that Region cache is not cleared properly after merging many Regions #37174
    • Fix the issue that the EXECUTE statement might throw an unexpected error in specific scenarios #37187
    • Fix the issue that GROUP CONCAT with ORDER BY might fail when the ORDER BY clause contains a correlated subquery #18216
    • Fix wrong results returned when length and width are incorrectly set for Decimal and Real when using plan cache #29565
    Source code(tar.gz)
    Source code(zip)
  • v6.1.2(Oct 24, 2022)

    Improvements

    • Allow setting placement rules and TiFlash replicas at the same time in one table #37171 @lcwangchao

    Bug fixes

    • Fix the issue that database-level privileges are incorrectly cleaned up #38363 @dveeden
    • Fix the incorrect output of SHOW CREATE PLACEMENT POLICY #37526 @xhebox
    • Fix the issue that when one PD node goes down, the query of information_schema.TIKV_REGION_STATUS fails due to not retrying other PD nodes #35708 @tangenta
    • Fix the issue that the UNION operator might return unexpected empty result #36903 @tiancaiamao
    • Fix the wrong result that occurs when enabling dynamic mode in partitioned tables for TiFlash #37254 @wshwsh12
    • Fix the issue that the Region cache is not cleaned up in time when the Region is merged #37141 @sticnarf
    • Fix the issue that the KV client sends unnecessary ping messages #36861 @jackysp
    • Fix the issue that the EXPLAIN ANALYZE statement with DML executors might return result before the transaction commit finishes #37373 @cfzjywxk
    • Fix the issue that GROUP CONCAT with ORDER BY might fail when the ORDER BY clause contains a correlated subquery #18216 @winoros
    • Fix the issue that Can't find column is reported if an UPDATE statement contains common table expressions (CTE) #35758 @AilinKid
    • Fix the issue that the EXECUTE might throw an unexpected error in specific scenarios #37187 @Reminiscent
    Source code(tar.gz)
    Source code(zip)
  • v5.4.3(Oct 13, 2022)

    Bug fixes

    • Fix the incorrect output of SHOW CREATE PLACEMENT POLICY #37526
    • Fix the issue that some DDL statements might be stuck for a period after the PD node of a cluster is replaced #33908
    • Fix the issue that KILL TIDB cannot take effect immediately on idle connections #24031
    • Fix the issue that incorrect results are returned in the DATA_TYPE and COLUMN_TYPE columns when querying the INFORMSTION_SCHEMA.COLUMNS system table #36496
    • Fix the issue that when TiDB Binlog is enabled, executing the ALTER SEQUENCE statement might cause a wrong metadata version and cause Drainer to exit #36276
    • Fix the issue that the UNION operator might return unexpected empty result #36903
    • Fix the wrong result that occurs when enabling dynamic mode in partitioned tables for TiFlash #37254
    • Fix the issue that INL_HASH_JOIN might hang when used with LIMIT #35638
    • Fix the issue that TiDB might return the invalid memory address or nil pointer dereference error when executing the SHOW WARNINGS statement #31569
    • Fix the invalid transaction error that occurs when performing Stale Read in the RC isolation level #30872
    • Fix the issue that the EXPLAIN ANALYZE statement with DML executors might return result before the transaction commit finishes #37373
    • Fix the issue of the data and columnID count not match error that occurs when inserting duplicated values with TiDB Binlog enabled #33608
    • Fix the issue that in the static partition prune mode, SQL statements with an aggregate condition might return wrong result when the table is empty #35295
    • Fix the issue that TiDB might panic when executing the UPDATE statement #32311
    • Fix the issue of wrong query result because the UnionScan operator cannot maintain the order #33175
    • Fix the issue that the UPDATE statements incorrectly eliminate the projection in some cases, which causes the Can't find column error #37568
    • Fix the issue that partitioned tables cannot fully use indexes to scan data in some cases #33966
    • Fix the issue that the EXECUTE might throw an unexpected error in specific scenarios #37187
    • Fix the issue that TiDB might return wrong results when using a BIT type index with prepared plan cache enabled #33067
    Source code(tar.gz)
    Source code(zip)
  • v6.3.0(Sep 30, 2022)

    Improvements

    • TiDB is now case-insensitive to the target table name when checking the table existence #34610 @tiancaiamao
    • Improve MySQL compatibility by adding a parsing check when setting the value of init_connect #35324 @CbcWestwolf
    • Improve the log warning generated for new connections #34964 @xiongjiwei
    • Optimize the HTTP API for querying DDL history jobs, and add support for the start_job_id parameter #35838 @tiancaiamao
    • Report errors when the JSON path has wrong syntax #22525 #34959 @xiongjiwei
    • Improve the performance of Join operations by fixing a false sharing issue #37641 @gengliqi
    • Support exporting the execution plan information of multiple SQL statements at a time using PLAN REPLAYER, which makes troubleshooting more efficient #37798 @Yisaer

    Bug fixes

    • Fix the issue that the privilege check is skipped for PREPARE statements #35784 @lcwangchao
    • Fix the issue that the system variable tidb_enable_noop_variable can be set to WARN #36647 @lcwangchao
    • Fix the issue that when an expression index is defined, the ORDINAL_POSITION column of the INFORMAITON_SCHEMA.COLUMNS table might be incorrect #31200 @bb7133
    • Fix the issue that TiDB does not report an error when the timestamp is larger than MAXINT32 #31585 @bb7133
    • Fix the issue that TiDB server cannot be started when the enterprise plugin is used #37319 @xhebox
    • Fix the incorrect output of SHOW CREATE PLACEMENT POLICY #37526 @xhebox
    • Fix the unexpected EXCHANGE PARTITION behaviors with temporary tables #37201 @lcwangchao
    • Fix the issue that querying INFORMATION_SCHEMA.TIKV_REGION_STATUS returns an incorrect result @zimulala
    • Fix the issue that the EXPLAIN query on views does not check privileges #34326 @hawkingrei
    • Fix the issue that JSON null cannot be updated to NULL #37852 @YangKeao
    • Fix the issue that row_count of DDL jobs is inaccurate #25968 @Defined2014
    • Fix the issue that FLASHBACK TABLE does not work properly #37386 @tiancaiamao
    • Fix the issue of failing to handle prepared statement flags in the typical MySQL protocol #36731 @dveeden
    • Fix the issue of incorrect TiDB status that might appear on startup in some extreme cases #36791 @xhebox
    • Fix the issue that INFORMATION_SCHEMA.VARIABLES_INFO does not comply with security enhanced mode (SEM) #37586 @CbcWestwolf
    • Fix the issue that casting string to string goes wrong in queries with UNION #31678 @cbcwestwolf
    • Fix the wrong result that occurs when enabling dynamic mode in partitioned tables for TiFlash #37254 @wshwsh12
    • Fix the issue that the cast and comparison between binary strings and JSON in TiDB are incompatible with MySQL #31918 #25053 @YangKeao
    • Fix the issue that JSON_OBJECTAGG and JSON_ARRAYAGG in TiDB are not compatible with MySQL on binary values #25053 @YangKeao
    • Fix the issue that the comparison between JSON opaque values causes panic #37315 @YangKeao
    • Fix the issue that the single precision float cannot be used in JSON aggregation funtions #37287 @YangKeao
    • Fix the issue that the UNION operator might return unexpected empty result #36903 @tiancaiamao
    • Fix the issue that the result of the castRealAsTime expression is inconsistent with MySQL #37462 @mengxin9014
    • Fix the issue that pessimistic DML operations lock non-unique index keys #36235 @ekexium
    • Fix the issue that auto-commit change affects transaction commit behaviours #36581 @cfzjywxk
    • Fix the issue that the EXPLAIN ANALYZE statement with DML executors might return result before the transaction commit finishes #37373 @cfzjywxk
    • Fix the issue that the UPDATE statements incorrectly eliminate the projection in some cases, which causes the Can't find column error #37568 @AilinKid
    • Fix the issue that the Join Reorder operation will mistakenly push down its Outer Join condition #37238 @AilinKid
    • Fix the issue that the IN and NOT IN subqueries in some patterns report the Can't find column error #37032 @AilinKid
    • Fix the issue that Can't find column is reported if an UPDATE statement contains common table expressions (CTE) #35758 @AilinKid
    • Fix incorrect PromQL #35856 @Defined2014
    Source code(tar.gz)
    Source code(zip)
  • v6.1.1(Sep 1, 2022)

    Compatibility changes

    Improvements

    • Add a new optimizer SEMI_JOIN_REWRITE to improve the performance of EXISTS queries #35323 @winoros

    Bug fixes

    • Fix the issue that INL_HASH_JOIN might hang when used with LIMIT #35638 @guo-shaoge
    • Fix the issue that TiDB might panic when executing the UPDATE statement #32311 @Yisaer
    • Fix a bug that TiDB might send coprocessor requests when executing the SHOW COLUMNS statement #36496 @tangenta
    • Fix a bug that TiDB might return the invalid memory address or nil pointer dereference error when executing the SHOW WARNINGS statement #31569 @zyguan
    • Fix a bug that in the static partition prune mode, SQL statements with an aggregate condition might return wrong result when the table is empty #35295 @tiancaiamao
    • Fix the issue that the Join Reorder operation will mistakenly push down its Outer Join condition #37238 @winoros
    • Fix the issue that CTE-schema hash code is cloned mistakenly, which causes the Can't find column ... in schema ... error when CTE is referenced more than once #35404 @AilinKid
    • Fix the issue that the wrong join reorder in some right outer join scenarios causes wrong query result #36912 @winoros
    • Fix the issue of incorrectly inferred null flag of the TiFlash firstrow aggregate function in the EqualAll case #34584 @fixdb
    • Fix the issue that Plan Cache does not work when a binding is created with the IGNORE_PLAN_CACHE hint #34596 @fzzf678
    • Fix the issu that an EXCHANGE operator is missing between the hash-partition window and the single-partition window #35990 @LittleFall
    • Fix the issue that partitioned tables cannot fully use indexes to scan data in some cases #33966 @mjonss
    • Fix the issue of wrong query result when a wrong default value is set for partial aggregation after the aggregation is pushed down #35295 @tiancaiamao
    • Fix the issue that querying partitioned tables might get the index-out-of-range error in some cases #35181 @mjonss
    • Fix the issue that a partition is incorrectly pruned if a partition key is used in the query condition and the collate is different from the one in the query partition table #32749 @mjonss
    • Fix the issue that when TiDB Binlog is enabled, executing the ALTER SEQUENCE statement might cause a wrong metadata version and cause Drainer to exit #36276 @AilinKid
    • Fix the issue of incorrect TiDB status that might appear on startup in some extreme cases #36791 @xhebox
    • Fix the potential UnknownPlanID issue that occurs when querying the execution plans for partitioned tables in TiDB Dashboard #35153 @time-and-fate
    • Fix the issue that the column list does not work in the LOAD DATA statement #35198 @SpadeA-Tang
    • Fix the issue of the data and columnID count not match error that occurs when inserting duplicated values with TiDB Binlog enabled #33608 @zyguan
    • Remove the limitation of tidb_gc_life_time #35392 @TonsnakeLin
    • Fix the LOAD DATA statement dead loop when an empty filed terminator is used #33298 @zyguan
    • Avoid sending requests to unhealthy TiKV nodes to improve availability #34906 @sticnarf
    Source code(tar.gz)
    Source code(zip)
  • v6.2.0(Aug 23, 2022)

    For the complete and official release notes, see https://docs.pingcap.com/tidb/v6.2/release-6.2.0.

    Improvements

    • Support the SHOW COUNT(*) WARNINGS and SHOW COUNT(*) ERRORS statements #25068 @likzn
    • Add validation check for some system variables #35048 @morgo
    • Optimize the error messages for some type conversions #32447 @fanrenhoo
    • The KILL command now supports DDL operations #24144 @morgo
    • Make the output of SHOW TABLES/DATABASES LIKE … more MySQL-compatible. The column names in the output contain the LIKE value #35116 @likzn
    • Improve the performance of JSON-related functions #35859 @wjhuang2016
    • Improve the verification speed of password login using SHA-2 #35998 @virusdefender
    • Simplify some log outputs #36011 @dveeden
    • Optimize the Coprocessor communication protocol. This can greatly reduce the memory consumption of the TiDB processes when reading data, and further alleviate the OOM issue in the scenario of scanning tables and exporting data by Dumpling. The system variable tidb_enable_paging is introduced to control whether to enable this communication protocol (with the scope of SESSION or GLOBAL). This protocol is disabled by default. To enable it, set the variable value to true #35633 @tiancaiama @wshwsh12
    • Optimize the accuracy of memory tracking for some operators (HashJoin, HashAgg, Update, Delete) (#35634, #35631, #35635 @wshwsh12) (#34096 @ekexium)
    • The system table INFORMATION_SCHEMA.DATA_LOCK_WAIT supports recording the locking information of optimistic transactions #34609 @longfangson
    • Add some monitoring metrics for transactions #34456 @longfangsong
    • ...

    Bug fixes

    • Fix the issue that a partition is incorrectly pruned if a partition key is used in the query condition and the collate is different from the one in the query partition table #32749 @mjonss
    • Fix the issue that SET ROLE cannot match the granted role if there are capital letters in the host #33061 @morgo
    • Fix the issue that columns with auto_increment cannot be dropped #34891 @Defined2014
    • Fix the issue that SHOW CONFIG shows some configuration items that have been removed #34867 @morgo
    • Fix the issue that SHOW DATABASES LIKE … is case-sensitive #34766 @e11jah
    • Fix the issue that SHOW TABLE STATUS LIKE ... is case-sensitive #7518 @likzn
    • Fix the issue that max-index-length still reports an error in non-strict mode #34931 @e11jah
    • Fix the issue that ALTER COLUMN ... DROP DEFAULT does not work #35018 @Defined2014
    • Fix the issue that when you create a table, the default value and the type of a column are not consistent and are not automatically corrected #34881 @Lloyd-Pottiger
    • Fix the issue that data in the mysql.columns_priv table is not deleted synchronously after you run DROP USER #35059 @lcwangchao
    • Fix the issue of DDL jam by disallowing creating tables within the schemas of some systems #35205 @tangenta
    • Fix the issue that querying partitioned tables might report "index-out-of-range" and "non used index" errors in some cases #35181 @mjonss
    • Fix the issue that INTERVAL expr unit + expr might report an error #30253 @mjonss
    • Fix a bug that a temporary table cannot be found after being created in a transaction #35644 @djshow832
    • Fix the panic issue that occurs when setting collation to the ENUM column #31637 @wjhuang2016
    • Fix the issue that when one PD node goes down, the query of information_schema.TIKV_REGION_STATUS fails due to not retrying other PD nodes #35708 @tangenta
    • Fix the issue that SHOW CREATE TABLE … cannot correctly display set or ENUM columns after SET character_set_results = GBK #31338 @tangenta
    • Fix the incorrect scope of the system variables tidb_log_file_max_days and tidb_config #35190 @morgo
    • Fix the issue that the output of SHOW CREATE TABLE is not compatible with MySQL for the ENUM or SET column #36317 @Defined2014
    • Fix the issue that when creating a table, the behavior of a LONG BYTE column is not compatible with MySQL #36239 @Defined2014
    • Fix the issue that auto_increment = x does not take effect on temporary tables #36224 @djshow832
    • Fix the wrong default value when modifying columns concurrently #35846 @wjhuang2016
    • Avoid sending requests to unhealthy TiKV nodes to improve availability #34906 @sticnarf
    • Fix the issue that the column list does not work in the LOAD DATA statement #35198 @SpadeA-Tang
    • Fix the issue that in some scenarios the pessimistic lock is incorrectly added to the non-unique secondary index #36235 @ekexium
    • ...
    Source code(tar.gz)
    Source code(zip)
  • v5.4.2(Jul 8, 2022)

    Improvements

    • Avoid sending requests to unhealthy TiKV nodes to improve availability #34906

    Bug Fixes

    • Fix the issue of wrong TableDual plans cached in binary protocol #34690 #34678
    • Fix the issue of incorrectly inferred null flag of the TiFlash firstrow aggregate function in the EqualAll case #34584
    • Fix the issue that the planner generates wrong 2-phase aggregate plan for TiFlash #34682
    • Fix the planner wrong behaviors that occur when tidb_opt_agg_push_down and tidb_enforce_mpp are enabled #34465
    • Fix the wrong memory-usage value used when Plan Cache is evicted #34613
    • Fix the issue that the column list does not work in the LOAD DATA statement #35198
    • Avoid reporting WriteConflict errors in pessimistic transactions #11612
    • Fix the issue that the prewrite requests are not idempotency when Region errors and network issues occur #34875
    • Fix the issue that the async commit transactions being rolled back might not meet atomicity #33641
    • Previously, when a network connectivity issue occurred, TiDB did not always correctly free the resources held by the disconnected session. This issue has been fixed so that open transactions can be rolled back and other associated resources can be released. #34722
    • Fix the issue that the references invalid table error might be incorrectly reported when TiDB queries views with CTE #33965
    • Fix the panic issue caused by the fatal error: concurrent map read and map write error #35340
    • Fix the error that occurs when reading from the INFORMATION_SCHEMA.ATTRIBUTES table by skipping the unidentifiable table attributes #33665
    Source code(tar.gz)
    Source code(zip)
  • v5.3.3(Sep 14, 2022)

  • v5.3.2(Jun 29, 2022)

    Compatibility Changes

    • Fix the issue that the REPLACE statement incorrectly changes other rows when the auto ID is out of range #29483

    Bug Fixes

    • Fix the issue that Amazon S3 cannot correctly calculate the size of compressed data #30534
    • Fix the issue of potential data index inconsistency in optimistic transaction mode #30410
    • Fix the issue that a SQL operation is canceled when its JSON type column joins its CHAR type column #29401
    • Previously, when a network connectivity issue occurred, TiDB did not always correctly free the resources held by the disconnected session. This issue has been fixed so that open transactions can be rolled back and other associated resources can be released. #34722
    • Fix the issue of the data and columnID count not match error that occurs when inserting duplicated values with TiDB Binlog enabled #33608
    • Fix the issue that query result might be wrong when Plan Cache is started in the RC isolation level #34447
    • Fix the session panic that occurs when executing the prepared statement after table schema change with the MySQL binary protocol #33509
    • Fix the issue that the table attributes are not indexed when a new partition is added and the issue that the table range information is not updated when the partition changes #33929
    • Fix the issue that the TiDB server might run out of memory when the INFORMATION_SCHEMA.CLUSTER_SLOW_QUERY table is queried. This issue can be triggered when you check slow queries on the Grafana dashboard #33893
    • Fix the issue that some DDL statements might be stuck for a period after the PD node of a cluster is replaced #33908
    • Fix the issue that granting the all privilege might fail in clusters that are upgraded from v4.0 #33588
    • Fix wrong results of deleting data of multiple tables using left join #31321
    • Fix a bug that TiDB may dispatch duplicate tasks to TiFlash #32814
    • Fix the issue that the background HTTP service of TiDB might not exit successfully and makes the cluster in an abnormal state #30571
    • Fix the panic issue caused by the fatal error: concurrent map read and map write error #35340
    Source code(tar.gz)
    Source code(zip)
  • v6.1.0(Jun 13, 2022)

    Improvements

    • Improve the performance of the UnionScanRead operator #32433
    • Improve the display of task types in the output of EXPLAIN (add the MPP task type) #33332
    • Support using rand() as the default value of a column #10377
    • Support using uuid() as the default value of a column #33870
    • Support modifying the character set of columns from latin1 to utf8/utf8mb4 #34008

    Bug fixes

    • Fix the issue of possible panic that might occur when the in function processes the bit type data #33070
    • Fix the issue of wrong query result because the UnionScan operator cannot maintain the order #33175
    • Fix the issue that the Merge Join operator gets wrong results in certain cases #33042
    • Fix the issue that the index join result might be wrong in the dynamic pruning mode #33231
    • Fix the issue that data might not be garbage-collected when some partitions of a partitioned table is dropped #33620
    • Fix the issue that some DDL statements might be stuck for a period after the PD node of a cluster is replaced #33908
    • Fix the issue that the TiDB server might run out of memory when the INFORMATION_SCHEMA.CLUSTER_SLOW_QUERY table is queried. This issue can be triggered when you check slow queries on the Grafana dashboard #33893
    • Fix the issue that the system variable max_allowed_packet does not take effect #31422
    • Fix the issue of memory leak in the TopSQL module #34525 #34502
    • Fix the issue that the Plan Cache might be wrong on the PointGet plan #3237
    • Fix the issue that query result might be wrong when Plan Cache is started in the RC isolation level #34447
    Source code(tar.gz)
    Source code(zip)
  • v5.4.1(May 13, 2022)

    Improvements

    • Support using the PointGet plan for queries that read the _tidb_rowid column #31543
    • Add more logs and metrics for the Apply operator to show whether it is parallel #33887
    • Improve the TopN pruning logic for Analyze Version 2 used for collecting statistics #34256
    • Support displaying multiple Kubernetes clusters in the Grafana dashboard #32593

    Bug Fixes

    • Fix the issue that date_format in TiDB handles '\n' in a MySQL-incompatible way #32232
    • Fix the issue that TiDB writes wrong data due to the wrong encoding of the ENUM or SET column #32302
    • Fix the issue that the Merge Join operator gets wrong results in certain cases #33042
    • Fix the issue that TiDB gets a wrong result when a correlated subquery returns a constant #32089
    • Fix the issue that TiDB gets the wrong result when using TiFlash to scan tables with empty range although TiFlash does not support reading tables with empty range yet #33083
    • Fix the issue that the MAX or MIN function on the ENUM or SET column returns a wrong result when the new collation is enabled in TiDB #31638
    • Fix a bug that CTE might be blocked when a query reports errors #31302
    • Fix wrong range calculation results for Nulleq function on Enum values #32428
    • Fix TiDB OOM when exporting data using ChunkRPC #31981 #30880
    • Fix a bug that tidb_super_read_only is not automatically enabled when tidb_restricted_read_only is enabled #31745
    • Fix the issue that the greatest or least function with collation gets a wrong result #31789
    • Fix load data panic if the data is broken at an escape character #31589
    • Fix the invalid transaction error when executing a query using index lookup join #30468
    • Fix wrong results of deleting data of multiple tables using left join #31321
    • Fix a bug that TiDB may dispatch duplicate tasks to TiFlash #32814
    • Fix the issue that granting the all privilege might fail in clusters that are upgraded from v4.0 #33588
    • Fix the session panic that occurs when executing the prepared statement after table schema change with the MySQL binary protocol #33509
    • Fix the issue that executing SQL statements that have the compress() expression with tidb_enable_vectorized_expression enabled will fail #33397
    • Fix the issue of high CPU usage by the reArrangeFallback function #30353
    • Fix the issue that the table attributes are not indexed when a new partition is added and the issue that the table range information is not updated when the partition changes #33929
    • Fix a bug that the TopN statistical information of a table during the initialization is not correctly sorted #34216
    • Fix the error that occurs when reading from the INFORMATION_SCHEMA.ATTRIBUTES table by skipping the unidentifiable table attributes #33665
    • Fix a bug that even if @@tidb_enable_parallel_apply is set, the Apply operator is not paralleled when an order property exists #34237
    • Fix a bug that '0000-00-00 00:00:00' can be inserted into a datetime column when sql_mode is set to NO_ZERO_DATE #34099
    • Fix the issue that the TiDB server might run out of memory when the INFORMATION_SCHEMA.CLUSTER_SLOW_QUERY table is queried. This issue can be triggered when you check slow queries on the Grafana dashboard. #33893
    • Fix a bug that in the NOWAIT statement, a transaction being executed does not return immediately when encountering a lock #32754
    • Fix a bug that causes a failure when creating a table with the GBK charset and gbk_bin collation #31308
    • Fix a bug that when enable-new-charset is on, creating a GBK charset table with collation fails with the "Unknown character set" error #31297
    Source code(tar.gz)
    Source code(zip)
  • v5.2.4(Apr 26, 2022)

  • v6.0.0(Apr 6, 2022)

    Improvements

    • Clear the placement rule settings of a table automatically after restoring the table using the FLASHBACK or RECOVER statement #31668
    • Add a performance overview dashboard to show core performance metrics on typical critical paths, making metrics analysis on TiDB easier #31676
    • Support using the REPLACE keyword in the LOAD DATA LOCAL INFILE statement #24515
    • (dup: release-5.1.4.md > Improvements> TiDB)- Support partition pruning for the built-in IN expression in Range partition tables #26739
    • Improve query efficiency by eliminating potentially redundant Exchange operations in MPP aggregation queries #31762
    • Improve compatibility with MySQL by allowing duplicate partition names in the TRUNCATE PARTITION and DROP PARTITION statements #31681
    • Support showing the CREATE_TIME information in the results of the ADMIN SHOW DDL JOBS statement #23494
    • Support a new built-in function CHARSET() #3931
    • Support filtering a baseline capturing blocklist by usernames #32558
    • Optimize the results of the ADMIN SHOW DDL JOBS and SHOW TABLE STATUS statements by displaying the time according to the current time_zone #26642
    • Supports pushing down the DAYNAME() and MONTHNAME() functions to TiFlash #32594
    • Support pushing down the REGEXP function to TiFlash #32637
    • Support tracking the execution of the UnionScan operator #32631
    • Support pushing down the GREATEST and LEAST functions to TiFlash #32787
    • Support using the PointGet plan for queries that read the _tidb_rowid column #31543
    • Support using wildcards in a baseline capturing blocklist #32714
    • Support showing the original partition name in the output of the EXPLAIN statement without converting the name to lowercase #32719
    • Enable partition pruning for RANGE COLUMNS partitionings on IN conditions and string type columns #32626
    • Return an error message when a system variable is set to NULL #32850
    • Remove Broadcast Join from the non-MPP mode #31465
    • Support pushing down the DAYOFMONTH() and LAST_DAY() functions to TiFlash #33012
    • Support pushing down the DAYOFWEEK() and DAYOFYEAR() functions to TiFlash #33130
    • Support pushing down the IS_TRUE, IS_FALSE, and IS_TRUE_WITH_NULL functions to TiFlash #33047
    • Support executing MPP plans on partitioned tables in dynamic pruning mode #32347
    • Support enabling the switch to reduce read latency in transactions at the READ-COMMITTED isolation level for the read-consistency read #33159
    • Support pushing down predicates for common table expressions (CTEs) #28163
    • Simplify the configurations of Statement Summary and Capture Plan Baselines to be available on a global basis only #30557
    • Update gopsutil to v3.21.12 to address alarms reported when building binary on macOS 12 #31607

    Bug Fixes

    • Fix the bug that the placement rule reports an error when SCHEDULE = majority_in_primary, and PrimaryRegion and Regions are of the same value #31271
    • (dup: release-5.3.1.md > Bug fixes> TiDB)- Fix the invalid transaction error when executing a query using index lookup join #30468
    • Fix the bug that show grants returns incorrect results when two or more privileges are granted #30855
    • Fix the bug that INSERT INTO t1 SET timestamp_col = DEFAULT would set the timestamp to the zero timestamp for the field defaulted to CURRENT_TIMESTAMP #29926)
    • ​Fix errors reported in reading the results by avoiding encoding the maximum value and minimum non-null value of the string type #31721
    • Fix load data panic if the data is broken at an escape character #31589
    • (dup: release-5.3.1.md > Bug fixes> TiDB)- Fix the issue that the greatest or least function with collation gets a wrong result #31789
    • Fix the bug that the date_add and date_sub functions may return incorrect data types #31809
    • Fix possible panic when inserting data to virtually generated columns using an insert statement #31735
    • Fix the bug that no error is reported when duplicate columns are present in the created list partition #31784
    • Fix wrong results returned when select for update union select uses incorrect snapshots #31530
    • (dup: release-5.3.1.md > Bug fixes> Tools> Backup & Restore (BR))- Fix the potential issue that Regions might be unevenly distributed after a restore operation is finished #31034
    • Fix the bug that COERCIBILITY is wrong for the json type #31541
    • Fix wrong collation of the json type when this type is processed using builtin-func #31320
    • Fix the bug that PD rules are not deleted when the count of TiFlash replicas is set to 0 #32190
    • (dup: release-5.3.1.md > Bug fixes> TiDB)- Fix the issue that alter column set default wrongly updates the table schema #31074
    • (dup: release-5.3.1.md > Bug fixes> TiDB)- Fix the issue that date_format in TiDB handles in a MySQL-incompatible way #32232
    • Fix the bug that errors may occur when updating partitioned tables using join #31629
    • Fix wrong range calculation for Nulleq function on Enum values #32428
    • Fix possible panic in upper() and lower() functions #32488
    • Fix time zone problems encountered when changing the other type columns to timestamp type columns #29585
    • Fix TiDB OOM when exporting data using ChunkRPC #31981 #30880
    • Fix the bug that sub SELECT LIMIT does not work as expected in dynamic partition pruning mode #32516
    • Fix wrong or inconsistent format of bit default value on INFORMATION_SCHEMA.COLUMNS #32655
    • Fix the bug that partition table pruning might not work for listing partition tables after server restart #32416
    • Fix the bug that add column may use wrong default timestamp after executing SET timestamp #31968
    • Fix the bug that connecting to a TiDB passwordless account from MySQL 5.5 or 5.6 client may fail #32334
    • Fix wrong results when reading partitioned tables in dynamic mode in transactions #29851
    • Fix the bug that TiDB may dispatch duplicate tasks to TiFlash #32814
    • Fix wrong results returned when the timdiff function contains a millisecond #31680
    • Fix wrong results when explicitly reading partitions and using the IndexJoin plan #32007
    • Fix the bug that "rename column" fails when changing column type concurrently #31075
    • Fix the bug that the formula for calculating net cost for TiFlash plans is not aligned with TiKV plans #30103
    • Fix the bug that KILL TIDB cannot take effect immediately on idle links #24031
    • Fix the bug that reading from a table with generated columns may get wrong results #33038
    • Fix wrong results of deleting data of multiple tables using left join #31321
    • Fix the bug that the SUBTIME function returns a wrong result in case of overflow #31868
    • Fix the bug that the selection operator can not be pushed down when an aggregation contains the having condition #33166
    • Fix the bug that CTE may be blocked when a query reports errors #31302
    • Fix the bug that excessive length of varbinary or varchar columns when creating tables in non-strict mode may result in errors #30328
    • Fix the wrong number of followers in information_schema.placement_policieswhen no follower is specified #31702
    • Fix the issue that TiDB allows to specify column prefix length as 0 when an index is created #31972
    • Fix the issue that TiDB allows partition names ending with spaces #31535
    • Fix the wrong message of the RENAME TABLE statement #29893
    Source code(tar.gz)
    Source code(zip)
  • v6.0.0-alpha(Mar 4, 2022)

  • v5.3.1(Mar 3, 2022)

    Compatibility changes

    • Change the default value of the system variable tidb_analyze_version from 2 to 1 #31748
    • Since v5.1.4, if TiKV is configured with storage.enable-ttl = true, the requests from TiDB are rejected, because the TTL feature of TiKV only supports the RawKV mode #27303

    Feature enhancements

    • Support partition pruning for the built-in IN expression in Range partition tables #26739
    • Improve the accuracy of tracking memory usage when IndexJoin is executed #28650

    Bug fixes

    • Fix a memory leak bug that occurs when the system variable tidb_analyze_version is set to 2 #32499
    • Fix the issue that the MaxDays and MaxBackups configurations do not take effect for the slow log #25716
    • Fix the issue that executing the INSERT ... SELECT ... ON DUPLICATE KEY UPDATE statement gets panic #28078
    • Fix the wrong result that might occur when performing JOIN on ENUM type columns #27831
    • Fix the issue that INDEX HASH JOIN returns the send on closed channel error #31129
    • Fix the issue that using the BatchCommands API might block sending TiDB requests to TiKV in some rare cases #32500
    • Fix the issue of potential data index inconsistency in optimistic transaction mode #30410
    • Fix the issue that window functions might return different results when using a transaction or not #29947
    • Fix the issue that the length information is wrong when casting Decimal to String #29417
    • Fix the issue that the GREATEST function returns incorrect result that occurs when setting the tidb_enable_vectorized_expression vectorized expression to off #29434
    • Fix the issue that the optimizer might cache invalid plans for join in some cases #28087
    • Fix wrong results of the microsecond and hour functions in vectorized expressions #29244 #28643
    • Fix the TiDB panic when executing the ALTER TABLE.. ADD INDEX statement in some cases #27687
    • Fix a bug that the availability detection of MPP node does not work in some corner cases #3118
    • Fix the DATA RACE issue when assigning MPP task ID #27952
    • Fix the INDEX OUT OF RANGE error for a MPP query after deleting an empty dual table #28250
    • Fix the issue of false positive error log invalid cop task execution summaries length for MPP queries #1791
    Source code(tar.gz)
    Source code(zip)
  • v5.1.4(Feb 21, 2022)

    Compatibility changes

    • Change the default value of the system variable tidb_analyze_version from 2 to 1 #31748
    • Since v5.1.4, if TiKV is configured with storage.enable-ttl = true, the requests from TiDB are rejected, because the TTL feature of TiKV only supports the RawKV mode #27303

    Feature enhancements

    • Support partition pruning for the built-in IN expression in Range partition tables #26739
    • Improve the accuracy of tracking memory usage when IndexJoin is executed #28650

    Bug fixes

    • Fix a memory leak bug that occurs when the system variable tidb_analyze_version is set to 2 #32499
    • Fix the issue that the MaxDays and MaxBackups configurations do not take effect for the slow log #25716
    • Fix the issue that executing the INSERT ... SELECT ... ON DUPLICATE KEY UPDATE statement gets panic #28078
    • Fix the wrong result that might occur when performing JOIN on ENUM type columns #27831
    • Fix the issue that INDEX HASH JOIN returns the send on closed channel error #31129
    • Fix the issue that using the BatchCommands API might block sending TiDB requests to TiKV in some rare cases #32500
    • Fix the issue of potential data index inconsistency in optimistic transaction mode #30410
    • Fix the issue that window functions might return different results when using a transaction or not #29947
    • Fix the issue that the length information is wrong when casting Decimal to String #29417
    • Fix the issue that the GREATEST function returns incorrect result that occurs when setting the tidb_enable_vectorized_expression vectorized expression to off #29434
    • Fix the issue that the optimizer might cache invalid plans for join in some cases #28087
    • Fix wrong results of the microsecond and hour functions in vectorized expressions #29244 #28643
    • Fix the TiDB panic when executing the ALTER TABLE.. ADD INDEX statement in some cases #27687
    • Fix a bug that the availability detection of MPP node does not work in some corner cases #3118
    • Fix the DATA RACE issue when assigning MPP task ID #27952
    • Fix the INDEX OUT OF RANGE error for a MPP query after deleting an empty dual table #28250
    • Fix the issue of false positive error log invalid cop task execution summaries length for MPP queries #1791
    Source code(tar.gz)
    Source code(zip)
  • v5.4.0(Feb 10, 2022)

    Improvements

    • Add a new system variable tidb_enable_paging to determine whether to use paging to send Coprocessor requests. Enabling this feature can reduce the amount of data to process and to reduce latency and resource consumption #30578
    • Support the ADMIN {SESSION | INSTANCE | GLOBAL} PLAN_CACHE syntax to clear the cached query plan #30370

    Bug fixes

    • Fix the issue of the tidb_analyze_version value change that occurs when upgrading the cluster from v4.x to v5.x #25422
    • Fix the issue of the wrong result that occurs when using different collations in a subquery #30748
    • Fix the issue that the result of concat(ifnull(time(3)) in TiDB is different from that in MySQL #29498
    • Fix the issue of potential data index inconsistency in optimistic transaction mode #30410
    • Fix the issue that the query execution plan of IndexMerge is wrong when an expression cannot be pushed down to TiKV #30200
    • Fix the issue that concurrent column type change causes inconsistency between the schema and the data #31048
    • Fix the issue that the IndexMerge query result is wrong when there is a subquery #30913
    • Fix the panic issue that occurs when the FetchSize is set too large in the client #30896
    • Fix the issue that LEFT JOIN might be mistakenly converted to INNER JOIN #20510
    • Fix the issue that panic might occur when the CASE-WHEN expression and collation are used together #30245
    • Fix the issue of wrong query result that occurs when the IN value contains a binary constant #31261
    • Fix the issue of wrong query result that occurs when CTE has a subquery #31255
    • Fix the issue that executing the INSERT ... SELECT ... ON DUPLICATE KEY UPDATE statement gets panic #28078
    • Fix the issue that INDEX HASH JOIN returns the send on closed channel error #31129
    Source code(tar.gz)
    Source code(zip)
  • v5.0.6(Dec 30, 2021)

    Bug fixes

    • Fix the panic that might occur when DML and DDL statements are executed concurrently #30940
    • Fix the TiDB panic when executing the ALTER TABLE.. ADD INDEX statement in some cases #27687
    • Fix the issue that the enforce-mpp configuration does not take effect in v5.0.4 #29252
    • Fix the TiDB panic when inserting invalid date values concurrently #25393
    • Fix the unexpected can not found column in Schema column error for queries in the MPP mode #30980
    • Fix the unexpected index out of range error when the planner is doing join reorder #24095
    • Fix the wrong result of CONCAT(IFNULL(TIME(3)) #29498
    • Fix wrong results of GREATEST and LEAST when passing in unsigned BIGINT arguments #30101
    • Fix the issue that a SQL operation is canceled when its JSON type column joins its CHAR type column #29401
    • Fix the data inconsistency issue caused by incorrect usage of lazy existence check and untouched key optimization #30410
    • Fix the issue that window functions might return different results when using a transaction or not #29947
    • Fix the issue that the SQL statements that contain cast(integer as char) union string return wrong results #29513
    • Fix the issue that the Column 'col_name' in field list is ambiguous error is reported unexpectedly when a SQL statement contains natural join #25041
    • Fix the issue that the index out of range [1] with length 1 error is reported when a SQL statement evaluates an aggregation result on the result of join in some cases #1978
    Source code(tar.gz)
    Source code(zip)
  • v4.0.16(Dec 17, 2021)

    Improvements

    • Upgrade the Grafana version from 7.5.7 to 7.5.11

    Bug fixes

    • Fix the query panic caused by overflow in the statistics module when converting a range to points for cost estimation #23625
    • Fix wrong results of the control functions (such as IF and CASE WHEN) when using the ENUM type data as parameters of such functions #23114
    • Fix the issue that the GREATEST function returns inconsistent results due to different values of tidb_enable_vectorized_expression (on or off) #29434
    • Fix the panic when applying index join on prefix indexes in some cases #24547
    • Fix the issue that planner might cache invalid plans for join in some cases #28087
    • Fix a bug that TiDB cannot insert null into a non-null column when sql_mode is empty #11648
    • Fix the wrong result type of the GREATEST and LEAST functions #29019
    • Fix the privilege check fail error when performing the grant and revoke operations to grant and revoke global level privileges #29675
    • Fix the panic when using the CASE WHEN function on the ENUM data type #29357
    • Fix wrong results of the microsecond function in vectorized expressions #29244
    • Fix wrong results of the hour function in vectorized expression #28643
    • Fix the issue that optimistic transaction conflicts might cause transactions to block each other #11148
    • Fix the issue of incomplete log information from the auto analyze result #29188
    • Fix the issue that using an invalid default date does not report an error when the SQL_MODE is 'NO_ZERO_IN_DATE' #26766
    • Fix the issue that the Coprocessor Cache panel in Grafana does not display metrics. Now, Grafana displays the number of hits/miss/evict #26338
    • Fix the issue that concurrently truncating the same partition causes DDL statements to stuck #26229
    • Fix the issue that when the CONCAT function has a negative float type argument, the last digit of the argument number is chopped in the result #29417
    • Fix the issue of an extra column in the query result when NATURAL JOIN is used to join multiple tables #29481
    • Fix the issue that TopN is wrongly pushed down to indexPlan when IndexScan uses a prefix index #29711
    • Fix the issue that retrying transactions with the auto-increment columns of DOUBLE type causes data corruption #29892
    Source code(tar.gz)
    Source code(zip)
  • v5.3.0(Nov 29, 2021)

    Improvements

    • Show the affected SQL statements in the debug log when the coprocessor encounters a lock, which is helpful in diagnosing problems #27718
    • Support showing the size of the backup and restore data when backing up and restoring data in the SQL logical layer #27247
    • Improve the default collection logic of ANALYZE when tidb_analyze_version is 2, which accelerates collection and reduces resource overhead
    • Introduce the ANALYZE TABLE table_name COLUMNS col_1, col_2, ... , col_n syntax. The syntax allows collecting statistics only on a portion of the columns in wide tables, which improves the speed of statistics collection

    Bug Fixes

    • Fix an error that occurs during execution caused by the wrong execution plan. The wrong execution plan is caused by the shallow copy of schema columns when pushing down the aggregation operators on partitioned tables. #27797 #26554
    • Fix the issue that plan-cache cannot detect changes of unsigned flags #28254
    • Fix the wrong partition pruning when the partition function is out of range #28233
    • Fix the issue that planner might cache invalid plans for join in some cases #28087
    • Fix wrong index hash join when hash column type is enum #27893
    • Fix a batch client bug that recycling idle connection might block sending requests in some rare cases #27688
    • Fix the TiDB Lightning panic issue when it fails to perform checksum on a target cluster #27686
    • Fix wrong results of the date_add and date_sub functions in some cases #27232
    • Fix wrong results of the hour function in vectorized expression #28643
    • Fix the authenticating issue when connecting to MySQL 5.1 or an older client version #27855
    • Fix the issue that auto analyze might be triggered out of the specified time when a new index is added #28698
    • Fix a bug that setting any session variable invalidates tidb_snapshot #28683
    • Fix a bug that BR is not working for clusters with many missing-peer regions #27534
    • Fix the unexpected error like tidb_cast to Int32 is not supported when the unsupported cast is pushed down to TiFlash #23907
    • Fix the issue that DECIMAL overflow is missing in the %s value is out of range in '%s'error message #27964
    • Fix a bug that the availability detection of MPP node does not work in some corner cases #3118
    • Fix the DATA RACE issue when assigning MPP task ID #27952
    • Fix the INDEX OUT OF RANGE error for a MPP query after deleting an empty dual table. #28250
    • Fix the issue of false positive error log invalid cop task execution summaries length for MPP queries #1791
    • Fix the issue of error log cannot found column in Schema column for MPP queries #28149
    • Fix the issue that TiDB might panic when TiFlash is shuting down #28096
    • Remove the support for insecure 3DES (Triple Data Encryption Algorithm) based TLS cipher suites #27859
    • Fix the issue that Lightning connects to offline TiKV nodes during pre-check and causes import failures #27826
    • Fix the issue that pre-check cost too much time when importing many files to tables #27605
    • Fix the issue that rewriting expressions makes between infer wrong collation #27146
    • Fix the issue that group_concat function did not consider the collation #27429
    • Fix the result wrong that occurs when the argument of the extract function is a negative duration #27236
    • Fix the issue that creating partition fails if NO_UNSIGNED_SUBTRACTION is set #26765
    • Avoid expressions with side effects in column pruning and aggregation pushdown #27106
    • Remove useless gRPC logs #24190
    • Limit the valid decimal length to fix precision-related issues #3091
    • Fix the issue of a wrong way to check for overflow in plus expression #26977
    • Fix the issue of data too long error when dumping statistics from the table with new collation data #27024
    • Fix the issue that the retried transactions' statements are not included in TIDB_TRX #28670
    • Fix the wrong default value of the plugin_dir configuration 28084
    Source code(tar.gz)
    Source code(zip)
  • v5.2.3(Dec 2, 2021)

  • v5.2.2(Oct 29, 2021)

    Improvements

    • Show the affected SQL statements in the debug log when the coprocessor encounters a lock, which is helpful in diagnosing problems #27718
    • Support showing the size of the backup and restore data when backing up and restoring data in the SQL logical layer #27247

    Bug Fixes

    • Fix the issue that plan-cache cannot detect changes of unsigned flags #28254
    • Fix the wrong partition pruning when the partition function is out of range #28233
    • Fix the issue that planner may cache invalid plans for join in some cases #28087
    • Fix wrong index hash join when hash column type is enum #27893
    • Fix a batch client bug that recycling idle connection may block sending requests in some rare cases #27688
    • Fixed the TiDB Lightning panic issue when it fails to perform checksum on a target cluster #27686
    • Fix wrong results of the date_add and date_sub functions in some cases #27232
    • Fix wrong results of the hour function in vectorized expression #28643
    • Fix the authenticating issue when connecting to MySQL 5.1 or an older client version #27855
    • Fix the issue that auto analyze might be triggered out of the specified time when a new index is added #28698
    • Fix a bug that setting any session variable can make tidb_snapshot unwork #28683
    • Fix a bug that BR is not working for clusters with many missing-peer regions #27534
    • Fix the unexpected error like tidb_cast to Int32 is not supported when the unsupported cast is pushed down to TiFlash #23907
    • Fix the issue that DECIMAL overflow is missing in the %s value is out of range in '%s'error message #27964
    • Fix a bug that the availability detection of MPP node does not work in some corner cases #3118
    • Fix theDATA RACE issue when assigningMPP task ID #27952
    • Fix the INDEX OUT OF RANGE error for a MPP query after deleting an empty dual table. #28250
    • Fix the issue of false positive error log invalid cop task execution summaries length for MPP queries #1791
    • Fix the issue of error log can not found column in Schema column for MPP queries #28149
    • Fix the issue that TiDB might crash when TiFlash shuts down #28096
    • Remove the support for insecure 3DES (Triple Data Encryption Algorithm) based TLS ciphersuites #27859
    • Fix the issue that Lightning connects to offline TiKV nodes during pre-check and causes import failures #27826
    • Fix the issue that pre-check cost too much time when importing many files to tables #27605
    • Fix the issue that rewriting expressions makes between infer wrong collation #27146
    • Fix the issue that group_concat function did not consider the collation #27429
    • Fix the issue that extract function gives wrong results when argument is a negative duration #27236
    • Fix the issue that creating partition fails if NO_UNSIGNED_SUBTRACTION is set #26765
    • Avoid expressions with side effects in column pruning and aggregation pushdown #27106
    • Remove useless GRPC log in production #24190
    • Limit the valid decimal length to fix precision-related issues #3091
    • Fix the issue of a wrong way to check for overflow in plus expression #26977
    • Fix the issue of data too long error when dumping statistics from the table with new collation data #27024
    • Fix the issue that the retried transactions' statements are not included in TIDB_TRX #28670
    Source code(tar.gz)
    Source code(zip)
  • v5.1.3(Dec 3, 2021)

  • v5.1.2(Sep 27, 2021)

    Improvements

    • Trigger auto-analyze by histogram row count, increase the accuracy of this trigger action #24237
    • Push down mod() to TiFlash, increase the query performance. #2318

    Bug Fixes

    • Fix the potential wrong results of index hash join when the hash column is in the ENUM type #27893
    • Fix a batch client bug that recycle idle connection may block sending requests in some rare cases #27678
    • Fix the compatibility issue of the overflow check by keeping the same logic as MySQL #23897
    • Fix the issue that TiDB returns an unknow error while it should return the pd is timeout error #26147
    • Fix the error of the case when function caused by the wrong charset and collation #26662
    • Fix the issue that greatest(datetime) union null returns an empty string #26532
    • Fix the potential can not found column in Schema column error for MPP queries #28148
    • Fix a bug that TiDB may panic when TiFlash is shutting down #28096
    • Fix the issue of wrong range caused by using enum like 'x%' #27130
    • Fix the issue that the between expression infers wrong collation. #27146
    • Fix the Common Table Expression (CTE) dead lock issue when used with IndexLookupJoin #27410
    • Fix a bug that retryable deadlocks are incorrectly recorded into the INFORMATION_SCHEMA.DEADLOCKS table #27400
    • Fix a bug that GROUP_CONCAT function does not consider the collation #27429
    • Fix a bug that the COUNT(DISTINCT) function on multiple columns returns wrong results when New Collation is on #27091
    • Fix an issue that the TABLESAMPLE query result from partitioned tables is not sorted as expected #27349
    • Fix a bug that the EXTRACT function returns wrong results when the argument is a negative duration #27236
    • Remove the unused /debug/sub-optimal-plan HTTP API #27265
    • Fix the issue that a wrong selection is pushed down when the HAVING condition is used in the aggregate function #26496
    • Fix a bug that the query may return wrong results when the hash partition table deals with unsigned data #26569
    • Fix the unexpected behavior when casting an invalid string to DATE #26762
    • Fix a bug that creating partition fails if NO_UNSIGNED_SUBTRACTION is set #26765
    • Fix the issue that the distinct flag is missing when Apply is converted to Join #26958
    • Fix the issue that NO_ZERO_IN_DATE does not work on the default values #26766
    • Set a block duration for the newly recovered TiFlash node to avoid blocking queries during this time #26897
    • Fix a bug that might occur when the CTE is referenced more than once #26212
    • Fix a CTE bug when MergeJoin is used #25474
    • Fix a bug that the 'SELECT FOR UPDATE' statement does not correctly lock the data when a normal table joins a partition table #26251
    • Fix the issue that the 'SELECT FOR UPDATE' statement returns an error when a normal table joins a partition table #26250
    • Fix the issue that PointGet does not use the lite version of resolve lock #26562
    Source code(tar.gz)
    Source code(zip)
  • v4.0.15(Sep 27, 2021)

    Compatibility changes

    • Fix the issue that executing SHOW VARIABLES in a new session is slow. This fix reverts some changes made in #21045 and might cause compatibility issues. #24326

    Improvements

    • Trigger auto-analyze based on the histogram row count #26706

    Bug fixes

    • Fix a bug that collation is incorrectly set for binary literals when building range 26455
    • Fix the issue of wrong character set and collation for the case when expression #26671
    • Fix the "index out of range" error that occurs when a query includes both GROUP BY and UNION 26553
    • Fix the issue that TiDB might fail to send requests if TiKV has tombstone stores #25849
    • Fix the issue of unexpected behavior when casting the invalid string to DATE #27935
    • Fix the issue that column information is missed when converting the Apply operator to Join #27282
    • Fix a bug that the count distinct result on multiple columns is wrong when the new collation is enabled #27830
    • Fix the result wrong that occurs when the argument of the extract function is a negative duration #27236
    • Fix the wrong execution results that occur when the column in the group_concat function has a non-bin collation #27429
    • Fix the wrong execution results that occur when the collations around the between expression are different #27146
    • Fix the issue that greatest(datetime) union null returns empty string #26564
    • Fix the issue that the having clause might not work correctly #26496
    • Remove the undocumented /debug/sub-optimal-plan HTTP API #27264
    Source code(tar.gz)
    Source code(zip)
  • v5.2.1(Sep 9, 2021)

    Bug Fixes

    • Fix an error that occurs during execution caused by the wrong execution plan. The wrong execution plan is caused by the shallow copy of schema columns when pushing down the aggregation operators on partitioned tables. #27797 #26554
    Source code(tar.gz)
    Source code(zip)
Owner
PingCAP
The team behind TiDB TiKV, an open source MySQL compatible NewSQL HTAP database
PingCAP
A PHP MySQL database client class to simplify database access

This lightweight database class is written with PHP and uses the MySQLi extension, it uses prepared statements to properly secure your queries, no need to worry about SQL injection attacks.

Khader Handal 50 Jul 30, 2022
A pure PHP implementation of the open Language Server Protocol. Provides static code analysis for PHP for any IDE.

A pure PHP implementation of the open Language Server Protocol. Provides static code analysis for PHP for any IDE.

Felix Becker 1.1k Jan 4, 2023
This example shows how to estimate pi, using generated random numbers that uniformly distributed.

php-estimatepi This example shows how to estimate pi, using generated random numbers that uniformly distributed. Every pair of numbers produced will b

Oğuzhan Cerit 1 Nov 26, 2021
A cross-language remote procedure call(RPC) framework for rapid development of high performance distributed services.

Motan Overview Motan is a cross-language remote procedure call(RPC) framework for rapid development of high performance distributed services. Related

Weibo R&D Open Source Projects 5.8k Dec 20, 2022
PHP library for Disque, an in-memory, distributed job queue

disque-php A PHP library for the very promising disque distributed job queue. Features: Support for both PHP (5.5+) and HHVM No dependencies: Fast con

Mariano Iglesias 132 Oct 19, 2022
A PHP 5.3+ and PHP 7.3 framework for OpenGraph Protocol

Opengraph Test with Atoum cd Opengraph/ curl -s https://getcomposer.org/installer | php php composer.phar install --dev ./vendor/atoum/atoum/bin/atoum

Axel Etcheverry 89 Dec 27, 2022
A PHP implementation of the Unleash protocol aka Feature Flags in GitLab.

A PHP implementation of the Unleash protocol aka Feature Flags in GitLab. This implementation conforms to the official Unleash standards and implement

Dominik Chrástecký 2 Aug 18, 2021
An implementation of the Minecraft: Bedrock Edition protocol in PHP

BedrockProtocol An implementation of the Minecraft: Bedrock Edition protocol in PHP This library implements all of the packets in the Minecraft: Bedro

PMMP 94 Jan 6, 2023
Spotweb is a decentralized usenet community based on the Spotnet protocol.

Spotweb is a decentralized usenet community based on the Spotnet protocol. Spotweb requires an operational webserver with PHP5.6 installed, it

Spotweb 433 Jan 1, 2023
Spotweb is a decentralized usenet community based on the Spotnet protocol.

Spotweb Spotweb is a decentralized usenet community based on the Spotnet protocol. Spotweb requires an operational webserver with PHP5.6 installed, it

[sCRiPTz-TEAM] 2 Nov 29, 2021
> Create e-wallet, send money, withdraw and check balance all via USSD protocol

Mobile Money USSD solution Create e-wallet, send money, withdraw and check balance all via USSD protocol Create e-wallet Step 1 Step 2 Step 3 Step 4 S

Emmanuel HAKORIMANA 1 Nov 3, 2021
Configure Magento 2 to send email using Google App, Gmail, Amazon Simple Email Service (SES), Microsoft Office365 and many other SMTP (Simple Mail Transfer Protocol) servers

Magento 2 SMTP Extension - Gmail, G Suite, Amazon SES, Office 365, Mailgun, SendGrid, Mandrill and other SMTP servers. For Magento 2.0.x, 2.1.x, 2.2.x

MagePal :: Magento Extensions 303 Oct 7, 2022
Tars is a high-performance RPC framework based on name service and Tars protocol, also integrated administration platform, and implemented hosting-service via flexible schedule.

TARS - A Linux Foundation Project TARS Foundation Official Website TARS Project Official Website WeChat Group: TARS01 WeChat Offical Account: TarsClou

THE TARS FOUNDATION PROJECTS 9.6k Jan 1, 2023
PHP Protobuf - Google's Protocol Buffers for PHP

This repository is no longer maintained Since Google's official Protocol Buffers supports PHP language, it's unjustifiable to maintain this project. P

Allegro Tech 912 Dec 16, 2022
Starless Sky is a network protocol for secure identities, providing the use of assymetric identities, public information, end-to-end messaging and smart contracts

Descentralized network protocol providing smart identity over an secure layer. What is the Starless Sky Protocol? Starless Sky is a network protocol f

Starless Sky Protocol 3 Jun 19, 2022
This tool can write the monolog standard log directly to clickhouse in real time via the tcp protocol

log2ck This tool can write the monolog standard log directly to clickhouse in real time via the tcp protocol. If you can write regular rules, other st

Hisune 9 Aug 15, 2022
Google Analytics Measurement Protocol Package for Symfony

Google Analytics Measurement Protocol Package for Symfony. Supports all GA Measurement Protocol API methods.

Four Labs 31 Jan 5, 2023
This example shows how to use Anychart library with the PHP programming language, Laravel framework and MySQL database.

PHP basic template This example shows how to use Anychart library with the PHP programming language, Laravel framework and MySQL database. Running To

AnyChart Integrations and Templates 23 Jul 17, 2022
QueryHandler - Handling PDO ' s query with mySQL database

QueryHandler this class's method are static .... that mean you don't need to create an object to use it . All methodes will return an Exception if it

null 7 Aug 9, 2022