Skip to content

Releases: pingcap/tidb

tidb-server v1.0.8

tidb-server v1.1.0-alpha.1

19 Jan 15:21
Compare
Choose a tag to compare
  • SQL parser
    • Support more syntax
  • SQL query optimizer
    • Use more compact structure to reduce statistics info memory usage
    • Speed up loading statistics info when starting the tidb-server
    • Provide more accurate query cost evaluation
    • Use Count-Min Sketch to evaluate the cost of queries using unique index more accurately
    • Support more complex conditions to make full use of index
  • SQL executor
    • Refactor all executor operators using Chunk architecture, improve the execution performance of analytical statements and reduce memory usage
    • Optimize performance of the INSERT IGNORE statement
    • Push down more types and functions to TiKV
    • Support more SQL_MODE
    • Optimize the Load Data performance to increase the speed by 10 times
    • Optimize the Use Database performance
    • Support statistics on the memory usage of physical operators
  • Server
    • Support the PROXY protocol

tidb-server v1.0.7

tidb-server v1.0.6

tidb-server v1.0.5

tidb-server v1.0.4

tidb-server v1.0.3

tidb-server v1.0.2

13 Nov 10:27
Compare
Choose a tag to compare
  • Optimize the cost estimation of index point query.
  • Support the Alter Table Add Column ( ColumnDef ColumnPosition) syntax.
  • Optimize the queries whose where conditions are contradictory.
  • Optimize the Add Index operation to rectify the progress and reduce repetitive operations.
  • Optimize the Index Look Join operator to accelerate the query speed for small data size.
  • Fix the issue with prefix index judgement.

tidb-server v1.0.1

31 Oct 02:51
Compare
Choose a tag to compare
  • Support canceling DDL Job.
  • Optimize the IN expresssion.
  • Correct the result type of the Show statement.
  • Support log slow query into a seperate log file.
  • Fix bugs.

tidb-server v1.0.0

16 Oct 04:34
Compare
Choose a tag to compare
  • The SQL query optimizer:
    • Adjust the cost model
    • Analyze pushdown
    • Function signature pushdown
  • Optimize the internal data format to reduce the intrium data size
  • Enhance the MySQL compatibility
  • Support the NO_SQL_CACHE syntax and limit the cache usage in the storage engine
  • Refactor the Hash Aggregator operator to reduce the memory usage
  • Support the Stream Aggragator operator