Unix Technical Forum

SEO

vBulletin Search Engine Optimization


Go Back   Unix Technical Forum > Database Server Software > MySQL > MySQL General forum

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 02-28-2008, 05:08 AM
Mads Martin Joergensen
 
Posts: n/a
Default MySQL 5.1.12 Beta has been released

Dear MySQL users,

We are proud to present to you the MySQL Server 5.1.12 Beta
release, a new Beta version of the popular open source database.

Bear in mind that this is a beta release, and as any other pre-production
release, it should not be installed for production level systems or
systems with critical data. For production level systems, pay attention
to the product description of MySQL Enterprise at:

http://mysql.com/products/enterprise/

The MySQL 5.1.12 Beta release is now available in source and binary form
for a number of platforms from our download pages at

http://dev.mysql.com/downloads/

and mirror sites. Note that not all mirror sites may be up to date at
this point in time, so if you can't find this version on some mirror,
please try again later or choose another download site.

We welcome and appreciate your feedback, bug reports, bug fixes,
patches etc.:

http://forge.mysql.com/wiki/Contributing

Be it that this is a Beta release, there are several incompatible
changes that have happened since last release, and there's a tremendous
amount of bug fixes--way too many to mention here (more than 500). We're
providing a detailed list at

http://dev.mysql.com/doc/refman/5.1/en/news-5-1-12.html

and for your convienience also an excerpt of the ones where
functionality have been added or changed:

* Incompatible change: Support for the BerkeleyDB (BDB) engine
has been dropped from this release. Any existing tables that
are in BDB format will not be readable from within MySQL from
5.1.12 or newer. You should convert your BDB tables to another
storage engine before upgrading to 5.1.12.
* Incompatible change: The namespace for scheduled events has
changed, such that events are no longer unique to individual
users. This also means that a user with the EVENT privilege on
a given database can now view, alter, or drop any events
defined on that database.
If you used scheduled events in an earlier MySQL 5.1 release,
you should rename any of them having the same name and defined
on the same database but belonging to different users --- so
that all events in a given database have unique names ---
before upgrading to 5.1.12 (or newer).
For additional information, see Section 20.5, "The Event
Scheduler and MySQL Privileges."
* Incompatible change: The permitted values for and behaviour of
the event_scheduler system variable have changed. Permitted
values are now ON, OFF, and DISABLED, with OFF being the
default. It is not possible to change its value to or from
DISABLED while the server is running.
For details, see Section 20.1, "Event Scheduler Overview."
* Incompatible change: The full-text parser plugin interface has
changed in two ways:
+ The MYSQL_FTPARSER_PARAM structure has a new flags
member. This is zero if there are no special flags, or
MYSQL_FTFLAGS_NEED_COPY, which means that
mysql_add_word() must save a copy of the word (that is,
it cannot use a pointer to the word because the word is
in a buffer that will be overwritten.)
This flag might be set or reset by MySQL before calling
the parser plugin, by the parser plugin itself, or by the
mysql_parse() function.
+ The mysql_parse() and mysql_add_word() functions now take
a MYSQL_FTPARSER_PARAM as their first argument, not a
MYSQL_FTPARSER_PARAM::mysql_ftparam as before.
These changes are not backward compatible, so the API version
(MYSQL_FTPARSER_INTERFACE_VERSION) has changed. For additional
information, see Section 26.2.5, "Writing Plugins."
* Incompatible change: In the INFORMATION_SCHEMA.EVENTS table,
the EVENT_DEFINITION column now contains the SQL executed by a
scheduled event.
The EVENT_BODY column now contains the language used for the
statement or statements shown in EVENT_DEFINITION. In MySQL
5.1, the value shown in EVENT_BODY is always SQL.
These changes were made to bring this table into line with the
INFORMATION_SCHEMA.ROUTINES table, and that table's
ROUTINE_BODY and ROUTINE_DEFINITION columns.
(Bug#16992: http://bugs.mysql.com/16992)
* Incompatible change: MySQL Cluster node and system restarts
formerly required that all fragments use the same local
checkpoint (LCP); beginning with this version, it is now
possible for different fragments to use different LCPs during
restarts. This means that data node filesystems must be
rebuilt as part of any upgrade to this version by restarting
all data nodes with the --initial option.
(Bug#21271: http://bugs.mysql.com/21271,
Bug#21478: http://bugs.mysql.com/21478)
See Section 15.5.2, "Cluster Upgrade and Downgrade
Compatibility," and related sections of the Manual before
upgrading a MySQL Cluster to version 5.1.12 or later.
* Incompatible change: A number of MySQL constructs are now
prohibited in partitioning expressions, beginning with this
release. These include:
+ A number of MySQL functions.
You can find [1714]a complete list of these functions
under Partitioning Limitation.
+ The bit operators |, &, ^, <<, >>, and ~.
+ Nested function calls.
+ Calls to stored routines, UDFs, or plugins.
+ Character-to-integer conversions involving non-8-bit
character sets or any of the latin1_german2_ci,
latin2_czech_cs, or cp1250_czech_cs collations.
These restrictions were added in part as a result of
Bug#18198: http://bugs.mysql.com/18198 and related bug
reports.
For more information about these and other restrictions on
partitioned tables in MySQL, see Section 16.5, "Restrictions
and Limitations on Partitioning."
* The general query log and slow query logs now can be enabled
or disabled at runtime with the general_log and slow_query_log
system variables, and the name of the log files can be changed
by setting the general_log_file and slow_query_log_file system
variables. See Section 5.12.3, "The General Query Log," and
Section 5.12.5, "The Slow Query Log."
* The output generated by the server when using the --xml option
has changed with regard to null values. It now matches the
output from mysqldump --xml. That is, a column containing a
NULL value is now reported as
<field name="column_name" xsi:nil="true" />
whereas a column containing the string value 'NULL' is
reported as
<field name="column_name">NULL</field>
and a column containing an empty string is reported as
<field name="column_name">>/field>
(Bug#21263: http://bugs.mysql.com/21263)
* The following statements now can be executed as prepared
statements (using PREPARE plus EXECUTE):
CACHE INDEX
CHANGE MASTER
CHECKSUM {TABLE | TABLES}
{CREATE | RENAME | DROP} DATABASE
{CREATE | RENAME | DROP} USER
FLUSH {TABLE | TABLES | TABLES WITH READ LOCK | HOSTS | PRIVILEGES
| LOGS | STATUS | MASTER | SLAVE | DES_KEY_FILE | USER_RESOURCES}
GRANT
REVOKE
KILL
LOAD INDEX INTO CACHE
RESET {MASTER | SLAVE | QUERY CACHE}
SHOW BINLOG EVENTS
SHOW CREATE {PROCEDURE | FUNCTION | EVENT | TABLE | VIEW}
SHOW {AUTHORS | CONTRIBUTORS | WARNINGS | ERRORS}
SHOW {MASTER | BINARY} LOGS
SHOW {MASTER | SLAVE} STATUS
SLAVE {START | STOP}
INSTALL PLUGIN
UNINSTALL PLUGIN
(Bug#20665: http://bugs.mysql.com/20665)
* The Instance Manager --passwd option has been renamed to
--print-password-line. Other options were added to enable
management of the IM password file from the command line:
--add-user, --drop-user, --edit-user, --list-users,
--check-password-file, --clean-password-file, --username, and
--password. The --mysql-safe-compatible option was added to
cause the Instance Manner to act similarly to mysqld_safe.
* On Windows, typing Control-C caused the mysql client to crash.
Now it causes mysql to attempt to kill the current statement.
If this cannot be done, or Control-C is typed again before the
statement is killed, mysql exits.
(Bug#17926: http://bugs.mysql.com/17926; see also
Bug#1989: http://bugs.mysql.com/1989)
* TEXT and BLOB columns do not support DEFAULT values. However,
when a default of '' was specified, the specification was
silently ignored. This now results in a warning, or an error
in strict mode. (Bug#19498: http://bugs.mysql.com/19498)
* The mysql client now allows \l in the prompt command argument
to insert the current delimiter into the prompt.
(Bug#14448: http://bugs.mysql.com/14448)
* Log table changes: By default, the log tables use the CSV
storage engine, as before. But now the log tables can be
altered to use the MyISAM storage engine. You cannot use ALTER
TABLE to alter a log table that is in use. The log must be
disabled first. No engines other than CSV or MyISAM are legal
for the log tables. The use of DROP TABLE for log tables is
similarly restricted: It cannot be used to drop a log table
that is in use. The log must be disabled first. (These changes
also correct a deadlock that occurred for an attempt to drop
an in-use log table.) (Bug#18559: http://bugs.mysql.com/18559)
* The LEFT() and RIGHT() functions return NULL if any argument
is NULL. (Bug#11728: http://bugs.mysql.com/11728)
* EXPLAIN EXTENDED now shows a filtered column that is an
estimated percentage of the examined rows that will be joined
with the previous tables.
(Bug#14940: http://bugs.mysql.com/14940)
* For mysqlshow, if a database name argument contains wildcard
characters (such as `_') but matches a single database name
exactly, treat the name as a literal name. This allows a
command such as mysqlshow information_schema work without
having to escape the wildcard character.
(Bug#19147: http://bugs.mysql.com/19147)
* If a DROP VIEW statement named multiple views, it stopped with
an error if a non-existent view was named and did not drop the
remaining views. Now it continues on and reports an error at
the end, similar to DROP TABLE.
(Bug#16614: http://bugs.mysql.com/16614)
* SHOW CREATE TABLE now shows constraints for InnoDB tables.
(Bug#16614: http://bugs.mysql.com/16614)
* Added the --set-charset option to mysqlbinlog to allow the
character set to be specified for processing binary log files.
(Bug#18351: http://bugs.mysql.com/18351)
* Added the --ndb-use-copying-alter-table option to mysqld to
provide a fallback in case of problems with online ALTER TABLE
operations on NDBCluster tables.
* Added the SHOW CONTRIBUTORS statement.
* It is no longer possible to create partitioned tables using
the CSV storage engine.
* NDB Cluster: Some queries involving joins on very large NDB
tables could crash the MySQL server.
(Bug#21059: http://bugs.mysql.com/21059)
* NDB Cluster: The status variables Ndb_connected_host and
Ndb_connected_port were renamed to Ndb_config_from_host and
Ndb_config_from_port, respectively.
* NDB Cluster: A number of erroneous, misleading, or missing
error messages have been corrected.
(Bug#17297: http://bugs.mysql.com/17297 &
Bug#19543: http://bugs.mysql.com/19543)
* NDB Cluster: It is no longer possible to create Cluster tables
using any partitioning type other than [LINEAR] KEY.
Attempting to do so now raises an error.
* The ExtractValue() function now produces an error when passed
an XML fragment that is not well-formed.
(Bug#18201: http://bugs.mysql.com/18201)
(Previously, the function allowed invalid XML fragments to be
used.)
* There were several issues regarding how SHOW STATUS affected
some status variables and logging which could impact
monitoring the MySQL Server. The behavior of this statement
has been modified in two ways:
+ SHOW STATUS is no longer logged to the slow query log.
+ SHOW STATUS no longer updates any session status
variables, except for com_show_status.
However, SHOW STATUS continues to update global status
variables to allow monitoring of what the server is actually
doing. This is because SHOW STATUS creates temporary tables
that may affect performance if it is called excessively often.
(Bug#10210: http://bugs.mysql.com/10210,
Bug#19764: http://bugs.mysql.com/19764)
* The mysqldumpslow script has been moved from client RPM
packages to server RPM packages. This corrects a problem where
mysqldumpslow could not be used with a client-only RPM
install, because it depends on my_print_defaults which is in
the server RPM. (Bug#20216: http://bugs.mysql.com/20216)
* The bundled yaSSL library was upgraded to version 1.3.7.
* The bundled yaSSL library licensing has added a FLOSS
exception similar to MySQL to resolve licensing
incompatibilities with MySQL. (See the
extra/yassl/FLOSS-EXCEPTIONS file in a MySQL source
distribution for details.)
(Bug#16755: http://bugs.mysql.com/16755)
* mysqlslap threads now try to connect up to 10 times if the
initial connect attempt fails.
(Bug#21297: http://bugs.mysql.com/21297)
* For a successful dump, mysqldump now writes a SQL comment to
the end of the dump file in the following format:
-- Dump completed on YYYY-MM-DD hh:mm:ss
(Bug#10877: http://bugs.mysql.com/10877)
* The mysqld and mysqlmanager manpages have been reclassified
from volume 1 to volume 8.
(Bug#21220: http://bugs.mysql.com/21220)
* In the INFORMATION_SCHEMA.ROUTINES table the
ROUTINE_DEFINITION column now is defined as NULL rather than
NOT NULL. Also, NULL rather than the empty string is returned
as the column value if the user does not have sufficient
privileges to see the routine definition.
(Bug#20230: http://bugs.mysql.com/20230)
* configure now defines the symbol DBUG_ON in config.h to
indicate whether the source tree is configured to be compiled
with debugging support.
(Bug#19517: http://bugs.mysql.com/19517)
* The MySQL distribution now compiles on UnixWare 7.13.
(Bug#20190: http://bugs.mysql.com/20190)
* The mysql client used the default character set if it
automatically reconnected to the server, which is incorrect if
the character set had been changed. To enable the character
set to remain synchronized on the client and server, the mysql
command charset (or \C) that changes the default character set
and now also issues a SET NAMES statement. The changed
character set is used for reconnects.
(Bug#11972: http://bugs.mysql.com/11972)
* The STATE column of the INFORMATION_SCHEMA.PROCESSLIST table
was increased from 30 to 64 characters to accommodate longer
state values. (Bug#21652: http://bugs.mysql.com/21652)
* TIMESTAMP columns that are NOT NULL now are reported that way
by SHOW COLUMNS and INFORMATION_SCHEMA.
(Bug#20910: http://bugs.mysql.com/20910)
* INFORMATION_SCHEMA contains new tables, GLOBAL_STATUS,
SESSION_STATUS, GLOBAL_VARIABLES, and SESSION_VARIABLES, that
correspond to the output from the SHOW {GLOBAL|SESSION} STATUS
and SHOW {GLOBAL|SESSION} VARIABLES statements.
* The BINARY keyword now is forbidden as a data type attribute
in stored routines (for example, DECLARE v1 VARCHAR(25)
BINARY), because DECLARE does not support collations, and in
this context BINARY specifies the binary collation of the
variable's character set.
(Bug#20701: http://bugs.mysql.com/20701)
* The source distribution has been updated so that the UDF
example can be compiled under Windows with CMake. See Section
26.3.4.5, "Compiling and Installing User-Defined Functions."
(Bug#19121: http://bugs.mysql.com/19121)
* LOAD DATA INFILE no longer causes an implicit commit for all
storage storage engines. It now causes an implicit commit only
for tables using the NDB storage engine.
(Bug#11151: http://bugs.mysql.com/11151)
* The LOAD DATA FROM MASTER and LOAD TABLE FROM MASTER
statements are deprecated. See Section 13.6.2.2, "LOAD DATA
FROM MASTER Syntax," for recommended alternatives.
(Bug#18822: http://bugs.mysql.com/18822)
* mysqldump now has a --flush-privileges option. It causes
mysqldump to emit a FLUSH PRIVILEGES statement after dumping
the mysql database. This option should be used any time the
dump contains the mysql database and any other database that
depends on the data in the mysql database for proper
restoration. (Bug#21424: http://bugs.mysql.com/21424)
* The default value of the tmp_table_size system variable was
lowered from 32MB to 16MB because it is bounded by the value
of max_heap_table_size, which has a default of 16MB.
(Bug#18875: http://bugs.mysql.com/18875)
* The number of InnoDB threads is no longer limited to 1,000 on
Windows. (Bug#22268: http://bugs.mysql.com/22268)
* Memory consumption of the InnoDB data dictionary cache was
roughly halved by cleaning up the data structures.
(Bug#20877: http://bugs.mysql.com/20877)

And we've also gotten some feedback:

MySQL 5.1.12 delivers several important improvements to ease the
creation of Pluggable Storage Engines" says Paul McCullagh, the lead
developer behind the Primebase XT Storage Engine for MySQL (PBXT), "we
are very excited about this new public release." PBXT 0.9.27 is now in
Beta Test and requires MySQL 5.1.12 (or later) and can be obtained from
http://primebase.com/xt/

Sincerely,
Mads Martin

--
Mads Martin Jørgensen, Release Manager
MySQL AB, Odense, Denmark -- www.mysql.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 08:16 AM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
UnixAdminTalk.com

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999