From: jon
Date: December 23 2006 6:52am
Subject: svn commit - mysqldoc@docsrva: r4337 - branches/telcos/query-browser branches/telcos/refman-5.1 trunk/refman-5.1
List-Archive: http://lists.mysql.com/commits/17351
Message-Id: <200612230652.kBN6qhsf025230@docsrva.mysql.com>
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Author: jstephens
Date: 2006-12-23 07:52:41 +0100 (Sat, 23 Dec 2006)
New Revision: 4337
Log:
Merging recent changes to telcos branch; updated the current release
entity's definition.
Modified:
branches/telcos/query-browser/using.xml
branches/telcos/refman-5.1/faqs.xml
branches/telcos/refman-5.1/partitioning.xml
branches/telcos/refman-5.1/sql-syntax.xml
branches/telcos/refman-5.1/versions.ent
trunk/refman-5.1/partitioning.xml
Modified: branches/telcos/query-browser/using.xml
===================================================================
--- branches/telcos/query-browser/using.xml 2006-12-23 06:37:20 UTC (rev 4336)
+++ branches/telcos/query-browser/using.xml 2006-12-23 06:52:41 UTC (rev 4337)
Changed blocks: 1, Lines Added: 6, Lines Deleted: 0; 641 bytes
@@ -251,6 +251,12 @@
executed, click the Create View button,
provide a name for the view, and the view is created.
+
+
+
+ Creating views is not yet supported on all Operating systems.
+
+
You can also create a view by right-clicking on the database you
Modified: branches/telcos/refman-5.1/faqs.xml
===================================================================
--- branches/telcos/refman-5.1/faqs.xml 2006-12-23 06:37:20 UTC (rev 4336)
+++ branches/telcos/refman-5.1/faqs.xml 2006-12-23 06:52:41 UTC (rev 4337)
Changed blocks: 1, Lines Added: 16, Lines Deleted: 0; 781 bytes
@@ -4351,6 +4351,22 @@
+
+
MySQL ¤t-series; FAQ — MySQL Chinese, Japanese, and Korean
Modified: branches/telcos/refman-5.1/partitioning.xml
===================================================================
--- branches/telcos/refman-5.1/partitioning.xml 2006-12-23 06:37:20 UTC (rev 4336)
+++ branches/telcos/refman-5.1/partitioning.xml 2006-12-23 06:52:41 UTC (rev 4337)
Changed blocks: 4, Lines Added: 28, Lines Deleted: 4; 2710 bytes
@@ -4705,17 +4705,33 @@
+
+ Partitioning
+ maximum number of partitions
+
+
+ The maximum number of partitions possible for a given table is
+ 1024. This includes subpartitions.
+
+
+
If, when creating tables with a very large number of
- partitions, you encounter an error message such as
- Got error 24 from storage engine, you
- may need to increase the value of the
+ partitions (but which is less than the maxmimum stated
+ previously), you encounter an error message such as
+ Got error 24 from storage engine, this
+ means that you may need to increase the value of the
open_files_limit system variable. See
.
+
+ partitioning
+ and foreign keys
+
+
Partitioned tables do not support foreign keys. This includes
partitioned tables employing the InnoDB
@@ -4724,6 +4740,10 @@
+
+ partitioning
+ and FULLTEXT indexes
+
Partitioned tables do not support FULLTEXT
indexes. This includes partitioned tables employing the
@@ -4739,6 +4759,10 @@
+
+ partitioning
+ and temporary tables
+
As of MySQL 5.1.8, temporary tables cannot be partitioned.
(Bug #17497)
@@ -4806,7 +4830,7 @@
- The one exception to this restriction occurs when partitioning
+ The lone exception to this restriction occurs when partitioning
by [LINEAR] KEY —
where it is possible to use columns of other types types as
partitioning keys — because MySQL's internal key-hashing
Modified: branches/telcos/refman-5.1/sql-syntax.xml
===================================================================
--- branches/telcos/refman-5.1/sql-syntax.xml 2006-12-23 06:37:20 UTC (rev 4336)
+++ branches/telcos/refman-5.1/sql-syntax.xml 2006-12-23 06:52:41 UTC (rev 4337)
Changed blocks: 3, Lines Added: 18, Lines Deleted: 15; 2868 bytes
@@ -3232,20 +3232,9 @@
partition_options can be used to
control partitioning of the table created with CREATE
- TABLE, and if used, must contain at a minimum a
- PARTITION BY clause. This clause contains the
- function that is used to determine the partition; the function
- returns an integer value ranging from 1 to
- num, where
- num is the number of partitions. The
- choices that are available for this function in MySQL
- ¤t-series; are shown in the following list.
-
-
-
- Important: Not all options
- shown in the syntax for
- partition_options at the beginning of
+ TABLE. Important:
+ Not all options shown in the syntax for
+ partition_options at the beginning of
this section are available for all partitioning types. Please
see the listings for the following individual types for
information specific to each type, and see
@@ -3254,6 +3243,20 @@
well as additional examples of table creation and other
statements relating to MySQL partitioning.
+
+
+ If used, partition_options must
+ contain at a minimum a PARTITION BY clause.
+ This clause contains the function that is used to determine the
+ partition; the function returns an integer value ranging from 1
+ to num, where
+ num is the number of partitions. (The
+ maxmimum number of user-defined partitions which a table may
+ contain is 1024; the number of subpartitions — discussed
+ later in this section — is included in this maxmimum.) The
+ choices that are available for this function in MySQL
+ ¤t-series; are shown in the following list:
+
@@ -3541,7 +3544,7 @@
- MySQL 5.1.12 introduces rigourous checking of the value used
+ MySQL 5.1.12 introduces rigorous checking of the value used
in a PARTITIONS or
SUBPARTITIONS clause. Beginning with this
version, this value must adhere to the following rules:
Modified: branches/telcos/refman-5.1/versions.ent
===================================================================
--- branches/telcos/refman-5.1/versions.ent 2006-12-23 06:37:20 UTC (rev 4336)
+++ branches/telcos/refman-5.1/versions.ent 2006-12-23 06:52:41 UTC (rev 4337)
Changed blocks: 1, Lines Added: 1, Lines Deleted: 1; 804 bytes
@@ -7,5 +7,5 @@
-
+
Modified: trunk/refman-5.1/partitioning.xml
===================================================================
--- trunk/refman-5.1/partitioning.xml 2006-12-23 06:37:20 UTC (rev 4336)
+++ trunk/refman-5.1/partitioning.xml 2006-12-23 06:52:41 UTC (rev 4337)
Changed blocks: 1, Lines Added: 1, Lines Deleted: 1; 688 bytes
@@ -4717,7 +4717,7 @@
If, when creating tables with a very large number of
- partitions (but which isless than the maxmimum stated
+ partitions (but which is less than the maxmimum stated
previously), you encounter an error message such as
Got error 24 from storage engine, this
means that you may need to increase the value of the