

0
0
MySQLÊý¾Ý¿â·Ö֧ϵͳMariaDB 10.2.6¹Ù·½×îаæÊÇMySQLµÄÒ»¸ö·ÖÖ§£¬¼æÈÝMySQL©§£¬ÏÖÓеÄMySQLÊý¾Ý¿â¿ÉÒÔÇ¨ÒÆµ½MariaDBÖÐʹÓé§£¬ÐèÒªµÄÓû§¸Ï¿ìÀ´ÏÂÔØ°É¡£
Maria ´æ´¢ÒýÇæ
PBXT ´æ´¢ÒýÇæ
XtraDB ´æ´¢ÒýÇæ
FederatedX ´æ´¢ÒýÇæ
¸ü¿ìµÄ¸´ÖƲéѯ´¦Àí
Ï̳߳Ø
¸üÉٵľ¯¸æºÍbug
ÔËÐÐËٶȸü¿ì
¸ü¶àµÄ Extensions (More index parts, new startup options etc)
¸üºÃµÄ¹¦ÄܲâÊÔ
Êý¾Ý±íÏû³ý
Âý²éѯÈÕÖ¾µÄÀ©Õ¹Í³¼Æ
Ö§³Ö¶Ô Unicode µÄÅÅÐò
ÐÂ°æ±¾ÌØÐÔ
InnoDB as default
InnoDB is now the default storage engine. Until MariaDB 10.1, MariaDB used the XtraDB storage engine as default
Syntax / general features
MyRocks alpha storage engine added (MDEV-9658)
Window functions have been introduced.
The SHOW CREATE USER statement was introduced
New CREATE USER options for limiting resource usage and tls/ssl
New ALTER USER statement
Recursive Common Table Expressions (MDEV-9864)
New WITH statement.WITHis a common table expression that allows you to refer to a subquery expression many times in a query (MDEV-8308 & MDEV-9864) ¡ª Original code from Galina Shalygina
Support for CHECK CONSTRAINT (MDEV-7563)
Support for DEFAULT with expressions (MDEV-10134)
BLOB and TEXT fields can now have aDEFAULTvalue
Lots of restrictions lifted for Virtual computed columns
Number of supported decimals in DECIMAL has increased from30to38(MDEV-10138)
Added catchall for list partitions (MDEV-8348)
Oracle-style EXECUTE IMMEDIATE statement (MDEV-10585)
PREPARE Statement now understands most expressions (MDEV-10866)
InnoDB tables now support spatial indexes
ed25519 authentication plugin (MDEV-12160)
Better InnoDB crash recovery progress reporting (MDEV-11027)
Improvements to InnoDB startup/shutdown to make it more robust
AWS Key Management plugin added for Windows, CentOS, RHEL, and Fedora packages
Triggers
Multiple triggers for the same event (MDEV-6112)
The FOLLOWS/PRECEDES clauses have been added to the CREATE TRIGGER statement
Multiple triggers are now counted in the Executed_triggers status variable (MDEV-10915)
SHOW TRIGGERS and SHOW CREATE TRIGGER now include the date and time the trigger was created
Replication / binary log
DML_only flashback can rollback instances/databases/tables to an old snapshot (MDEV-10570)
New variable read_binlog_speed_limit permits restricting the speed at which the slave reads the binlog from the master (MDEV-11064) ¡ª Original code from Tencent Game DBA Team, developed by chouryzhou.
Delayed replication is supported (MDEV-7145)
Compression of events in the binary log is supported (MDEV-11065) ¡ª Original code from Tencent Game DBA Team, developed by vinchen.
Default binary log format changed to mixed (MDEV-7635)
Default value of replicate_annotate_row_events changed toON(MDEV-7635)
Default value of slave_net_timeout reduced to 60 seconds (MDEV-7635)
Default server_id changed from0to1
GeoJSON / JSON
JSON functions added (MDEV-9143)
Implement ST_AsGeoJSON and ST_GeomFromGeoJSON functions so the spatial features can be imported/exported using GeoJSON format (MDEV-11042)
Information Schema
An information schema plugin to report all user variables, which creates the Information Schema USER_VARIABLES Table (MDEV-7331)
EXPLAIN
EXPLAIN FORMAT=JSON now showsouter_ref_conditionfield which contains the condition that the(?) SELECT checks on each re-execution (MDEV-9652)
EXPLAN FORMAT=JSON now showssort_keyfield which shows the sort criteria used byfilesortoperation. (commit 2078392)
EXPLAIN used to show incorrect information about how the optimizer resolvedORDER BYclause orDistinct. This was a long-standing problem with roots back in MySQL. Now, after MDEV-8646 and related fixes, the problem doesn't exist anymore. (For test cases, see MDEV-7982, MDEV-8857, MDEV-7885, MDEV-326)
Optimizations
Connection setup was made faster by moving creation of THD to new thread (MDEV-6150)
Pushdown conditions into non-mergeable views/derived tables (MDEV-9197) ¡ª Original code from Galina Shalygina
ANALYZE TABLE has been re-implemented so as not to lock the entire table when collecting engine independent statistics (MDEV-7901)
Internal CRC32 routines use the optimized implementation on Power8 ¡ª MDEV-9872
Table cache can automatically partition itself as needed to reduce the contention (MDEV-10296)
Compatibility
NO PAD collations, which means that end space are significant in comparisons (MDEV-9711) ¡ª Original code from Daniil Medvedev
MariaDB now works when started with a MySQL 5.7.6+ data directory (MDEV-11170)
CONNECT
Zipped File Tables for the CONNECT storage engine (MDEV-11295)
The CONNECT engine now supports the JDBC Table type (MDEV-9765)
System variables
For a list of all new variables, see System Variables Added in MariaDB 10.2 and Status Variables Added in MariaDB 10.2. These include:
aria_recover has been renamed to aria_recover_options (MDEV-8542)
Default values of the aria_recover and myisam_recover_options system variables changed toBACKUP,QUICK
The server version can now be faked to work around dated applications that require a particular version string (MDEV-7780
slave_parallel_workers is now an alias for slave_parallel_threads
New status variables com_alter_user, com_multi and com_show_create_user
New variable for setting a directory for storing temporary non-tablespace InnoDB files, innodb_tmpdir
New variable read_binlog_speed_limit permits restricting the speed at which the slave reads the binlog from the master (MDEV-11064)
innodb_log_files_in_group can now be set to1(MDEV-12061)
The thread pool now gives higher priority to connections that have an active transaction. This can be controlled with the new thread_pool_prio_kickup_timer and thread_pool_priority system variables. (MDEV-10297)
Default value of group_concat_max_len changed to 1M (MDEV-7635)
Default value of innodb_compression_algorithm changed tozlib- this does not mean pages are now compressed by default, see compression (MDEV-11838)
Default value of innodb_log_compressed_pages changed toON(MDEV-7635)
Default value of innodb_use_atomic_writes and innodb_use_trim changed toON
The unused innodb_api_* variables have been removed (MDEV-12050)
New status variables
innodb_have_punch_hole
innodb_pages0read
innodb_scrub_log
innodb_encryption_num_key_requests
Scripts
Continuous binary log backup has been added to mysqlbinlog (MDEV-8713)
mysql_zap and mysqlbug have been removed (MDEV-7376, MDEV-8654)
Other changes
Added support for OpenSSL 1.1 and LibreSSL (MDEV-10332)
Persistent AUTO_INCREMENT for InnoDB (MDEV-6076)
Support COM_RESET_CONNECTION (MDEV-10340)
"fast mutexes" have been removed. These aren't faster than normal mutexes, and have been disabled by default for years (MDEV-8111)
Old GPL client library is gone; now MariaDB Server comes with the LGPL Connector/C client library (MDEV-9055)
248.9M / 12-08
RTS¼´Ê±Õ½ÂÔ
ÏÂÔØ
248.9M / 12-08
RTS¼´Ê±Õ½ÂÔ
ÏÂÔØ
253.4M / 12-08
RPG½ÇÉ«°çÑÝ
ÏÂÔØ
ÆÞÖÐÃÛ3È«cg´æµµ
ÓÎÏ·¹¤¾ß / 28KB
ÏÂÔØ
1
csgo¿Õ¸ñ¼üÁ¬Ìø½Å±¾ÂÌÉ«Ãâ·Ñ°æ
ÓÎÏ·¹¤¾ß / 564KB
ÏÂÔØ
2
DNF9ÖÜÄêµÚÊ®Ì×Ìì¿Õʱװ²¹¶¡
ÓÎÏ·¹¤¾ß / 1.6M
ÏÂÔØ
3
Ò׿ØÍõÎĵµ¼ÓÃÜÈí¼þv2017¹Ù·½°æÂÌÉ«Ãâ·Ñ°æ
Îļþ´¦Àí / 46M
ÏÂÔØ
4
3456wg¶àѡƤ·ôv10.6¹Ù·½°æ
ÓÎÏ·¹¤¾ß / 2.2M
ÏÂÔØ
5
dnfÒ»¼üÈÎÎñÖúÊÖv0428×îÐÂÃâ·Ñ°æ
ÓÎÏ·¹¤¾ß / 863KB
ÏÂÔØ
6
adobeÇåÀí¹¤¾ß(AdobeCreativeCloudCleanerTool)V2017 ÂÌÉ«°æ
Îļþ´¦Àí / 5.9M
ÏÂÔØ
7
ÊÓÆµ©§¡¢Í¼Æ¬È¥Ë®Ó¡´óʦHitPaw Watermark Removerv1.2.1 ÍêÃÀ½âËø°æ
Îļþ´¦Àí / 80.4M
ÏÂÔØ
8
°®ÆÕÉúR230´òÓ¡»úÇåÁãÈí¼þºº»¯°æ
°ì¹«Ñ§Ï° / 1.8M
ÏÂÔØ
9
GTKWave(WAVÎļþ²¨Ðβ쿴¹¤¾ß)v3.3.66 ¹Ù·½°æ
Îļþ´¦Àí / 4.4M
ÏÂÔØ
10
140.5M / 09-05
Á¢¼´ÏÂÔØ
76.4M / 03-25
Á¢¼´ÏÂÔØ
55M / 06-05
Á¢¼´ÏÂÔØ
88.7M / 04-13
Á¢¼´ÏÂÔØ
900.9M / 03-02
Á¢¼´ÏÂÔØ
96.2M / 07-06
Á¢¼´ÏÂÔØ
311.2M / 07-06
Á¢¼´ÏÂÔØ
335M / 07-06
Á¢¼´ÏÂÔØ
ǰ³ÌËÆ½õ(Excellent Expectations)
200M / 07-06
Á¢¼´ÏÂÔØ
413.8M / 07-06
Á¢¼´ÏÂÔØ
x8ɳÏ䰲׿Ãâ·Ñ°æ2023¹Ù·½×îаæ
480.3M / 01-03
Á¢¼´ÏÂÔØ
768.9M / 08-19
Á¢¼´ÏÂÔØ
165.4M / 09-05
Á¢¼´ÏÂÔØ
131.8M / 04-13
Á¢¼´ÏÂÔØ
195.6M / 03-03
Á¢¼´ÏÂÔØ
45.6M / 09-08
Á¢¼´ÏÂÔØ
665.2M / 07-06
Á¢¼´ÏÂÔØ
2.84G / 07-06
Á¢¼´ÏÂÔØ
93M / 07-06
Á¢¼´ÏÂÔØ
338.3M / 07-06
Á¢¼´ÏÂÔØ
959.8M / 12-24
Á¢¼´ÏÂÔØ 312M / 07-30
Á¢¼´ÏÂÔØ 1.38G / 07-26
Á¢¼´ÏÂÔØ DZͧΰΰÃÔÖ²Îï´óÕ½½©Ê¬ÔÓ½»°æµçÄÔ°æ
109.8M / 06-03
Á¢¼´ÏÂÔØ 142M / 01-08
Á¢¼´ÏÂÔØ 1.2M / 11-23
Á¢¼´ÏÂÔØ 548.8M / 04-13
Á¢¼´ÏÂÔØ 1.6M / 04-13
Á¢¼´ÏÂÔØ 1.48G / 03-18
Á¢¼´ÏÂÔØ 646.6M / 03-03
Á¢¼´ÏÂÔØ 401.9M / 01-06
Á¢¼´ÏÂÔØ 1.89G / 12-19
Á¢¼´ÏÂÔØ 110.5M / 09-05
Á¢¼´ÏÂÔØ 33.4M / 09-05
Á¢¼´ÏÂÔØ 60M / 04-29
Á¢¼´ÏÂÔØ 254M / 04-25
Á¢¼´ÏÂÔØ 659M / 04-23
Á¢¼´ÏÂÔØ up¶Ôսƽ̨ºÐ×Ó¹Ù·½ÏÂÔØ2023×îаæ
253.4M / 12-08
Á¢¼´ÏÂÔØ 253M / 12-08
Á¢¼´ÏÂÔØ 1.19G / 11-16
Á¢¼´ÏÂÔØ 118.2M / 01-06
Á¢¼´ÏÂÔØ 488.3M / 06-04
Á¢¼´ÏÂÔØ 369M / 09-22
Á¢¼´ÏÂÔØ 181.5M / 09-22
Á¢¼´ÏÂÔØ 201.2M / 09-05
Á¢¼´ÏÂÔØ 248.9M / 12-08
Á¢¼´ÏÂÔØ 248.9M / 12-08
Á¢¼´ÏÂÔØ 100.6M / 03-06
Á¢¼´ÏÂÔØ 148.9M / 03-06
Á¢¼´ÏÂÔØ 1.12G / 07-06
Á¢¼´ÏÂÔØ 126.7M / 02-04
Á¢¼´ÏÂÔØ 1.76G / 09-22
Á¢¼´ÏÂÔØ 1.92G / 04-17
Á¢¼´ÏÂÔØ 201.5M / 04-13
Á¢¼´ÏÂÔØ 7.31G / 07-01
Á¢¼´ÏÂÔØ 94.3M / 07-06
Á¢¼´ÏÂÔØ 2.48G / 07-06
Á¢¼´ÏÂÔØ 7.63G / 07-06
Á¢¼´ÏÂÔØ 1M / 07-06
Á¢¼´ÏÂÔØ 778.1M / 07-06
Á¢¼´ÏÂÔØ 1.40G / 12-19
Á¢¼´ÏÂÔØ 72M / 07-06
Á¢¼´ÏÂÔØ 548.7M / 07-06
Á¢¼´ÏÂÔØ 1.00G / 07-06
Á¢¼´ÏÂÔØ 9.13G / 07-06
Á¢¼´ÏÂÔØ 126.2M / 07-06
Á¢¼´ÏÂÔØ 72M / 07-06
Á¢¼´ÏÂÔØ 105.1M / 07-06
Á¢¼´ÏÂÔØ 132M / 07-06
Á¢¼´ÏÂÔØ 132M / 07-06
Á¢¼´ÏÂÔØ bonbonjump°²×¿¹Ù·½ÏÂÔØ2023×îаæ
13.4M / 01-03
Á¢¼´ÏÂÔØ 293.0M / 09-05
Á¢¼´ÏÂÔØ 1.22G / 07-06
Á¢¼´ÏÂÔØ 20.53G / 07-06
Á¢¼´ÏÂÔØ 229.9M / 07-06
Á¢¼´ÏÂÔØ 3.70G / 07-06
Á¢¼´ÏÂÔØ 904.0M / 07-06
Á¢¼´ÏÂÔØ 15.84G / 07-06
Á¢¼´ÏÂÔØ 45.50G / 07-06
Á¢¼´ÏÂÔØ 1.02G / 07-06
Á¢¼´ÏÂÔØ Copyright 2010-2025 µ¥»úÓÎÏ·ÏÂÔØ (R) °æÈ¨ËùÓÐ ·ÉÏèÏÂÔØËùÓÐÓÎÏ·¼°Èí¼þÏÂÔØ×ÊÔ´À´Ô´»¥ÁªÍø©§£¬²¢ÓÉÍøÓÑÉÏ´«·ÖÏí©§¡£ÈçÓÐÇÖȨ£¬ÇëÀ´µçÀ´º¯¸æÖ®|¡£
·ÉÏèÖҸ棺µÖÖÆ²»Á¼É«Çé|¡¢·´¶¯¡¢±©Á¦ÓÎÏ· ºÏÀí°²ÅÅÓÎϷʱ¼ä ÏíÊܽ¡¿µÉú»î ¶õ¹«Íø°²±¸£º42011102003115ºÅ ¡¾¶õICP±¸17000818ºÅ-1¡¿