亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? manual_news.html

?? MySQL參考手冊中文版
?? HTML
?? 第 1 頁 / 共 5 頁
字號:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- saved from url=(0071)manual_News.html -->
<html>

<head>
<title>MySQL Reference Manual for version 3.23.7-alpha. - D MySQL change history</title>
<meta content="text/html; charset=gb2312" http-equiv="Content-Type">
<!-- This HTML file has been created by texi2html 1.52 (hacked by david@detron.se)
     from /dr1/my/masters/mysql-3.23/Docs/manual.texi on 9 December 1999 -->
<meta content="Microsoft FrontPage 3.0" name="GENERATOR">
</head>

<body bgColor="#ffffff" link="#101090" text="#000000" vLink="#7030b0">

<p>Go to the <a href="manual_Introduction.html">first</a>, <a href="manual_Credits.html">previous</a>, 
<a href="manual_Bugs.html">next</a>, <a href="manual_Concept_Index.html">last</a> section, 
<a href="manual_toc.html">table of contents</a>. </p>

<hr>

<h1><a href="manual_toc.html#News" name="News">D MySQL change history</a></h1>

<p>Note that we tend to update the manual at the same time we implement new things to <strong>MySQL</strong>. 
If you find a version listed below that you can't find on the <a
href="http://www.mysql.com/download.html"><strong>MySQL</strong> download page</a>, this 
means that the version has not yet been released! </p>

<h2><a href="manual_toc.html#News-3.23.x" name="News-3.23.x">D.1 Changes in release 3.23.x 
(Released as alpha)</a></h2>

<p>The major difference between release 3.23 and releases 3.22 and 3.21 is that 3.23 
contains a new ISAM library (MyISAM), which is more tuned for SQL than the old ISAM was. </p>

<p>The 3.23 release is under development, and things will be added at a fast pace to it. 
For the moment we recommend this version only for users that desperately need a new 
feature that is found only in this release (like big file support and machine-independent 
tables). (Note that all new functionality in MySQL 3.23 is extensively tested, but as this 
release involves much new code, it's difficult to test everything). This version should 
start to stabilize as soon as we get subselects included in it. </p>

<h3><a href="manual_toc.html#News-3.23.7" name="News-3.23.7">D.1.1 Changes in release 
3.23.7</a></h3>

<ul>
  <li>Fixed workaround under Linux to avoid problems with pthread_mutex_timedwait, which is 
    used with <code>INSERT DELAYED</code>. See section <a href="manual_Installing.html#Linux">4.11.5 
    Linux notes (all Linux versions)</a> </li>
  <li>Fixed tha one will get at 'disk full' error message if one gets disk full when doing 
    sorting (instead of waiting until we got more disk space). </li>
  <li>Fixed a bug in <code>MyISAM</code> with keys &gt; 250 characters. </li>
  <li>In <code>MyISAM</code> one can now do an <code>INSERT</code> at the same time as other 
    threads are reading from the table. </li>
  <li>Added variable <code>max_write_lock_count</code> to <code>mysqld</code> to force a <code>READ</code> 
    lock after a certain number of <code>WRITE</code> locks. </li>
  <li>Inverted flag <code>delayed_key_write</code> on <code>show variables</code>. </li>
  <li>Renamed variable <code>concurrency</code> to <code>thread_concurrency</code>. </li>
  <li>The following functions are now multi-byte-safe: <code>LOCATE(substr,str)</code>, <code>POSITION(substr 
    IN str)</code>, <code>LOCATE(substr,str,pos)</code>, <code>INSTR(str,substr)</code>, <code>LEFT(str,len)</code>, 
    <code>RIGHT(str,len)</code>, <code>SUBSTRING(str,pos,len)</code>, <code>SUBSTRING(str FROM 
    pos FOR len)</code>, <code>MID(str,pos,len)</code>, <code>SUBSTRING(str,pos)</code>, <code>SUBSTRING(str 
    FROM pos)</code>, <code>SUBSTRING_INDEX(str,delim,count)</code>, <code>RTRIM(str)</code>, <code>TRIM([[BOTH 
    | TRAILING] [remstr] FROM] str)</code>, <code>REPLACE(str,from_str,to_str)</code>, <code>REVERSE(str)</code>, 
    <code>INSERT(str,pos,len,newstr)</code>, <code>LCASE(str)</code>, <code>LOWER(str)</code>, 
    <code>UCASE(str)</code> and <code>UPPER(str)</code>; Patch by Wei He. </li>
  <li>Fix core dump when releasing a lock from a non existing table </li>
  <li>Remove locks on tables before starting to remove duplicates. </li>
  <li>Added option <code>FULL</code> to <code>SHOW PROCESSLIST</code>. </li>
  <li>Added option <code>--verbose</code> to <code>mysqladmin</code>. </li>
  <li>Fixed problem when automaticly converting HEAP to MyISAM. </li>
  <li>Fixed bug in HEAP tables when doing insert + delete + insert + scan the table. </li>
  <li>Fixed bugs on Alpha with <code>REPLACE()</code> and <code>LOAD DATA INFILE</code>. </li>
  <li>Added <code>mysqld</code> variable <code>interactive_timeout</code>. </li>
  <li>Changed the argument to <code>mysql_data_seek()</code> from <code>ulong</code> to <code>ulonglong</code>. 
  </li>
</ul>

<h3><a href="manual_toc.html#News-3.23.6" name="News-3.23.6">D.1.2 Changes in release 
3.23.6</a></h3>

<ul>
  <li>Added <code>mysqld</code> option <code>-O lower_case_table_names={0|1}</code> to allow 
    users to force table names to lower case. </li>
  <li>Added <code>SELECT ... INTO DUMPFILE</code>. </li>
  <li>Added mysqld option <code>--ansi</code> to make some functions <code>ANSI SQL</code> 
    compatible. </li>
  <li>Temporary tables now starts with <code>#sql</code>. </li>
  <li>Added quoting of identifiers with <code>`</code> (<code>&quot;</code> in <code>--ansi</code> 
    mode). </li>
  <li>Changed to use snprintf() when printing floats to avoid some buffer overflows on 
    FREEBSD. </li>
  <li>Made <code>[floor()</code> overflow safe on FREEBSD. </li>
  <li>Added option <code>--quote-names</code> to <code>mysqldump</code> </li>
  <li>Fixed bug that one could make a part of a <code>PRIMARY KEY NOT NULL</code>. </li>
  <li>Fixed <code>encrypt()</code> to be thread safe and not reuse buffer. </li>
  <li>Added <code>mysql_odbc_escape_string()</code> function to support big5 characters in 
    MyOBC. </li>
  <li>Rewrote the table handler to use classes. This introduces a lot of new code, but will 
    make table handling faster and better... </li>
  <li>Added patch by Sasha for user defined variables. </li>
  <li>Changed that <code>FLOAT</code> and <code>DOUBLE</code> (without any length modifiers) 
    are not anymore fixed decimal point numbers. </li>
  <li>Changed the meaning of <code>FLOAT(X)</code>: Now this is the same as <code>FLOAT</code> 
    if X &lt;= 24 and a <code>DOUBLE</code> if 24 &lt; X &lt;= 53. </li>
  <li><code>DECIMAL(X)</code> is now an alias for <code>DECIMAL(X,0</code>) and <code>DECIMAL</code> 
    is now an alias for <code>DECIMAL(10,0)</code>. The same goes for <code>NUMERIC</code>. </li>
  <li>Added option <code>ROW_FORMAT={default | dynamic | static | compressed}</code> to <code>CREATE_TABLE</code>. 
  </li>
  <li><code>DELETE FROM table_name</code> didn't work on temporary tables. </li>
  <li>Changed function <code>CHAR_LENGTH()</code> to be multi-byte character safe. </li>
  <li>Added function <code>ORD(string)</code>. </li>
</ul>

<h3><a href="manual_toc.html#News-3.23.5" name="News-3.23.5">D.1.3 Changes in release 
3.23.5</a></h3>

<ul>
  <li>Fixed some Y2K problems in the new date handling in 3.23. </li>
  <li>Fixed problem with <code>SELECT DISTINCT ... ORDER BY RAND()</code>. </li>
  <li>Added patches by Sergei A. Golubchik for text searching on the MyISAM level. </li>
  <li>Fixed cache overflow problem when using full joins without keys. </li>
  <li>Fixed some configure issues. </li>
  <li>Some small changes to make parsing faster. </li>
  <li><code>ALTER TABLE</code> + adding a column after the last field didn't work. </li>
  <li>Fixed problem when using an auto_increment column in two keys </li>
  <li>One can now with MyISAM have the auto_increment part as a sub part: <code>CREATE TABLE 
    foo (a int not null auto_increment, b char(5), primary key (b,a))</code> </li>
  <li>Fixed bug in MyISAM with packed char keys that could be NULL. </li>
  <li><code>AS</code> on fieldname with <code>CREATE TABLE table_name SELECT ...</code> didn't 
    work. </li>
  <li>Allow use of <code>NATIONAL</code> and <code>NCHAR</code> when defining character 
    columns. This is the same as not using <code>BINARY</code>. </li>
  <li>Don't allow <code>NULL</code> columns in a <code>PRIMARY KEY</code> (only in <code>UNIQUE</code> 
    keys). </li>
  <li>Clear <code>LAST_INSERT_ID</code> if in uses this in ODBC: <code>WHERE 
    auto_increment_column IS NULL</code>. This seams to fix some problems with Access. </li>
  <li><code>SET SQL_AUTO_IS_NULL=0|1</code> now turns off/on the handling of searching after 
    the last inserted row with <code>WHERE auto_increment_column IS NULL</code>. </li>
  <li>Added new mysqld variable <code>concurrency</code> for Solaris. </li>
  <li>Added option <code>--relative</code> to <code>mysqladmin</code> to make <code>extended-status</code> 
    more useful to monitor changes. </li>
  <li>Fixed bug when using <code>COUNT(DISTINCT..)</code> on an empty table. </li>
  <li>Added support for the Chinese character set GBK. </li>
  <li>Fixed problem with <code>LOAD DATA INFILE</code> and <code>BLOB</code> columns. </li>
  <li>Added bit operator <code>~</code> (negation). </li>
  <li>Fixed problem with <code>UDF</code> functions. </li>
</ul>

<h3><a href="manual_toc.html#News-3.23.4" name="News-3.23.4">D.1.4 Changes in release 
3.23.4</a></h3>

<ul>
  <li>Inserting a <code>DATETIME</code> into a <code>TIME</code> column will not anymore try 
    to store 'days' in it. </li>
  <li>Fixed problem with storage of float/double on low endian machines. (This affected <code>SUM()</code>.) 
  </li>
  <li>Added connect timeout on TCP/IP connections. </li>
  <li>Fixed problem with <code>LIKE</code> &quot;%&quot; on a index that may have <code>NULL</code> 
    values. </li>
  <li><code>REVOKE ALL PRIVILEGES</code> didn't revoke all privileges. </li>
  <li>Allow creation of temporary tables with same name as the original table. </li>
  <li>When granting a user a grant option for a database, he couldn't grant privileges to 
    other users. </li>
  <li>New command: <code>SHOW GRANTS FOR user</code> (by Sinisa). </li>
  <li>New <code>date_add</code> syntax: <code>date/datetime + INTERVAL # interval_type</code>. 
    By Joshua Chamas. </li>
  <li>Fixed privilege check for <code>LOAD DATA REPLACE</code>. </li>
  <li>Automatic fixing of broken include files on Solaris 2.7 </li>
  <li>Some configure issues to fix problems with big file system detection. </li>
  <li><code>REGEXP</code> is now case insensitive if you use not binary strings. </li>
</ul>

<h3><a href="manual_toc.html#News-3.23.3" name="News-3.23.3">D.1.5 Changes in release 
3.23.3</a></h3>

<ul>
  <p>Added patches for MIT-pthreads on NetBSD. </p>
  <li>Fixed range bug in MyISAM. </li>
  <li><code>ASC</code> is now the default again for <code>ORDER BY</code>. </li>
  <li>Added <code>LIMIT</code> to <code>UPDATE</code>. </li>
  <li>New client function: <code>mysql_change_user()</code>. </li>
  <li>Added character set to <code>SHOW VARIABLES</code>. </li>
  <li>Added support of <code>--[whitespace]</code> comments. </li>
  <li>Allow <code>INSERT into tbl_name VALUES ()</code>, that is, you may now specify an empty 
    value list to insert a row in which each column is set to its default value. </li>
  <li>Changed <code>SUBSTRING(text FROM pos)</code> to conform to ANSI SQL. (Before this 
    construct returned the rightmost 'pos' characters). </li>
  <li><code>SUM(..)</code> with <code>GROUP BY</code> returned 0 on some systems. </li>
  <li>Changed output for <code>SHOW TABLE STATUS</code>. </li>
  <li>Added <code>DELAY_KEY_WRITE</code> option to <code>CREATE TABLE</code>. </li>
  <li>Allow <code>AUTO_INCREMENT</code> on any key part. </li>
  <li>Fixed problem with <code>YEAR(NOW())</code> and <code>YEAR(CURDATE())</code>. </li>
  <li>Added <code>CASE</code> construct. </li>
  <li>New function <code>COALESCE()</code>. </li>
</ul>

<h3><a href="manual_toc.html#News-3.23.2" name="News-3.23.2">D.1.6 Changes in release 
3.23.2</a></h3>

<ul>
  <li>Fixed range optimizer bug: <code>SELECT * FROM table_name WHERE key_part1 &gt;= const 
    AND (key_part2 = const OR key_part2 = const)</code>. The bug was that some rows could be 
    duplicated in the result. </li>
  <li>Running <code>myisamchk</code> without <code>-a</code> updated the index distribution 
    wrong. </li>
  <li><code>SET SQL_LOW_PRIORITY_UPDATES=1</code> gave parse error before. </li>
  <li>You can now update indexes columns that are used in the <code>WHERE</code> clause. <code>UPDATE 
    tbl_name SET KEY=KEY+1 WHERE KEY &gt; 100</code> </li>
  <li>Date handling should now be a bit faster. </li>
  <li>Added handling of fuzzy dates (dates where day or month is 0): (Like: 1999-01-00) </li>
  <li>Fixed optimization of <code>SELECT ... WHERE key_part1=const1 AND key_part_2=const2 AND 
    key_part1=const4 AND key_part2=const4</code> ; Indextype should be <code>range</code> 
    instead of <code>ref</code>. </li>
  <li>Fixed <code>egcs</code> 1.1.2 optimizer bug (when using <code>BLOB</code>s) on Linux 
    Alpha. </li>
  <li>Fixed problem with <code>LOCK TABLES</code> combined with <code>DELETE FROM table</code>. 
  </li>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91香蕉视频在线| 色综合中文字幕国产 | 欧美日本国产视频| 国产日本欧洲亚洲| 三级欧美在线一区| 色哟哟在线观看一区二区三区| 日韩亚洲欧美高清| 亚洲一区成人在线| 99久久精品久久久久久清纯| 精品少妇一区二区三区在线播放| 亚洲欧美日韩人成在线播放| 国产一区二区三区四 | 一本一道久久a久久精品综合蜜臀| 欧美二区三区的天堂| 亚洲精品久久嫩草网站秘色| 成人精品免费网站| 久久久久久久综合| 老鸭窝一区二区久久精品| 精品视频一区二区不卡| 中文字幕在线观看不卡| 国产91露脸合集magnet| 久久综合九色综合欧美亚洲| 另类小说欧美激情| 日韩欧美在线综合网| 美女被吸乳得到大胸91| 91精品国产色综合久久不卡电影| 亚洲尤物在线视频观看| 91黄视频在线| 亚洲一区二区高清| 欧美乱妇15p| 天天做天天摸天天爽国产一区| 欧洲精品视频在线观看| 一区二区激情小说| 色噜噜久久综合| 亚洲电影一级黄| 欧美剧情电影在线观看完整版免费励志电影 | 欧美日韩久久久一区| 亚洲综合一区二区| 欧美亚洲免费在线一区| 五月激情六月综合| 欧美一区二区三区爱爱| 久久精品国产一区二区| 精品捆绑美女sm三区| 国产乱人伦偷精品视频不卡| 国产精品伦一区| 日本高清免费不卡视频| 天天亚洲美女在线视频| 久久一留热品黄| 91网站最新地址| 午夜欧美2019年伦理| 久久蜜桃一区二区| av电影在线观看不卡| 亚洲国产综合视频在线观看| 日韩欧美资源站| 国产成人久久精品77777最新版本| 国产精品国产三级国产三级人妇| 色狠狠桃花综合| 免费精品视频在线| 国产精品久久午夜| 欧美日韩国产经典色站一区二区三区| 毛片av一区二区三区| 日本一区二区三区免费乱视频| 欧美性色aⅴ视频一区日韩精品| 免费在线看成人av| 中文字幕av一区 二区| 欧美又粗又大又爽| 国产乱码精品一区二区三区五月婷| 中文字幕日韩欧美一区二区三区| 欧美日韩视频在线第一区| 国产麻豆日韩欧美久久| 亚洲一区二区精品久久av| 国产香蕉久久精品综合网| 欧美亚日韩国产aⅴ精品中极品| 精品一区二区三区不卡| 亚洲精品国产a久久久久久| 日韩欧美的一区| 91老司机福利 在线| 韩国精品免费视频| 亚洲bt欧美bt精品| 亚洲柠檬福利资源导航| www久久精品| 欧美日韩aaa| 色激情天天射综合网| 国产成人亚洲综合a∨婷婷| 午夜国产不卡在线观看视频| 国产精品欧美久久久久无广告| 欧美一卡2卡3卡4卡| 欧美性猛交一区二区三区精品| 粉嫩高潮美女一区二区三区| 蜜桃精品视频在线观看| 亚洲国产精品嫩草影院| 亚洲人吸女人奶水| 亚洲国产精华液网站w| 日韩欧美国产高清| 欧美高清视频在线高清观看mv色露露十八 | 日韩美女视频一区二区| 欧美电影免费观看完整版| 欧美日本在线播放| 精品视频一区二区不卡| 在线看日本不卡| 色婷婷av一区二区三区大白胸| 国产v综合v亚洲欧| 国产激情一区二区三区| 久久综合综合久久综合| 久久精品国产亚洲一区二区三区| 日日骚欧美日韩| 一区二区三区在线看| 亚洲精品乱码久久久久久久久| 椎名由奈av一区二区三区| 中文字幕精品综合| 国产精品久久久久久亚洲伦 | 成人免费福利片| 丁香啪啪综合成人亚洲小说| 国产精华液一区二区三区| 国内精品视频一区二区三区八戒| 激情图片小说一区| 国模大尺度一区二区三区| 国产伦精一区二区三区| 国产麻豆午夜三级精品| 国产精品一区二区三区99| 国产91丝袜在线播放0| jvid福利写真一区二区三区| 91在线看国产| 欧美色窝79yyyycom| 欧美一区二区网站| 久久综合九色欧美综合狠狠| ww久久中文字幕| 成人免费视频在线观看| 亚洲尤物在线视频观看| 美女性感视频久久| 国产精品66部| 91污片在线观看| 欧美美女一区二区三区| 欧美一级在线观看| 国产情人综合久久777777| 国产精品无遮挡| 亚洲一区二区四区蜜桃| 日本一不卡视频| 国产成人免费9x9x人网站视频| 一本到不卡免费一区二区| 欧美老肥妇做.爰bbww视频| 精品少妇一区二区三区免费观看| 国产精品美女久久久久久久久久久 | 在线观看国产日韩| 欧美日韩免费观看一区三区| 欧美电影精品一区二区| 综合电影一区二区三区| 日本视频免费一区| 9色porny自拍视频一区二区| 欧美剧情电影在线观看完整版免费励志电影 | 中文字幕一区二区三区在线播放| 亚洲成人福利片| 不卡影院免费观看| 这里只有精品免费| 国产精品免费视频观看| 蜜桃在线一区二区三区| 91麻豆高清视频| 国产午夜精品美女毛片视频| 天堂蜜桃91精品| 97久久超碰国产精品| 久久欧美中文字幕| 日日摸夜夜添夜夜添精品视频| 懂色av一区二区在线播放| 欧美一区二区视频在线观看| 亚洲美女在线一区| 精品午夜一区二区三区在线观看| 99riav久久精品riav| 久久精子c满五个校花| 日韩一区欧美二区| 91蜜桃网址入口| 久久影院电视剧免费观看| 亚洲国产成人porn| 99精品久久免费看蜜臀剧情介绍 | 在线免费亚洲电影| 国产精品美女久久久久久久久久久| 奇米色一区二区| 亚洲人精品午夜| 日韩一区精品视频| 在线观看日产精品| 亚洲欧美综合色| 国产激情精品久久久第一区二区| 欧美一区二区久久| 午夜精品123| 欧美色爱综合网| 亚洲综合色成人| 一本大道久久a久久综合婷婷| 中文字幕欧美国产| 国v精品久久久网| 亚洲国产精品高清| 丁香一区二区三区| 国产偷v国产偷v亚洲高清| 久久99精品国产麻豆婷婷| 日韩一卡二卡三卡国产欧美| 日韩国产欧美三级| 欧美一二三在线| 波多野结衣在线一区| 国产婷婷色一区二区三区四区| 国内精品视频666| 国产片一区二区三区| 福利一区福利二区|