~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/index.rst

[patch 125/129] Merge patch for revision 1943 from InnoDB SVN:
revno: 1943
revision-id: svn-v4:16c675df-0fcb-4bc9-8058-dcc011a37293:branches/zip:6207
parent: svn-v4:16c675df-0fcb-4bc9-8058-dcc011a37293:branches/zip:6202
committer: vasil
timestamp: Fri 2009-11-20 08:19:14 +0000
message:
  branches/zip: Merge r6198:6206 from branches/5.1:
  
  (r6203 was skipped as it is already in branches/zip)
  
    ------------------------------------------------------------------------
    r6200 | vasil | 2009-11-19 12:14:23 +0200 (Thu, 19 Nov 2009) | 4 lines
    Changed paths:
       M /branches/5.1/btr/btr0btr.c
    
    branches/5.1:
    
    White space fixup - indent under the opening (
    
    ------------------------------------------------------------------------
    r6203 | jyang | 2009-11-19 15:12:22 +0200 (Thu, 19 Nov 2009) | 8 lines
    Changed paths:
       M /branches/5.1/btr/btr0btr.c
    
    branches/5.1: Use btr_free_root() instead of fseg_free() for
    the fix of bug #48469, because fseg_free() is not defined
    in the zip branch. And we could save one mini-trasaction started
    by fseg_free().
    
    Approved by Marko.
    
    
    ------------------------------------------------------------------------
    r6205 | jyang | 2009-11-20 07:55:48 +0200 (Fri, 20 Nov 2009) | 11 lines
    Changed paths:
       M /branches/5.1/handler/ha_innodb.cc
    
    branches/5.1: Add a special case to handle the Duplicated Key error
    and return DB_ERROR instead. This is to avoid a possible SIGSEGV
    by mysql error handling re-entering the storage layer for dup key
    info without proper table handle.
    This is to prevent a server crash when error situation in bug
    #45961 "DDL on partitioned innodb tables leaves data dictionary
    in an inconsistent state" happens.
    
    rb://157 approved by Sunny Bains.
    
    
    ------------------------------------------------------------------------
    r6206 | jyang | 2009-11-20 09:38:43 +0200 (Fri, 20 Nov 2009) | 5 lines
    Changed paths:
       M /branches/5.1/handler/ha_innodb.cc
    
    branches/5.1: Fix a minor code formating issue for 
    the parenthesis iplacement of the if condition in
    rename_table().
    
    
    ------------------------------------------------------------------------
modified:
  handler/ha_innodb.cc           2@16c675df-0fcb-4bc9-8058-dcc011a37293:trunk%2Fhandler%2Fha_innodb.cc
diff:
=== modified file 'handler/ha_innodb.cc'

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
Welcome to Drizzle's documentation!
7
7
===================================
8
8
 
9
 
.. image:: logo.png
10
 
 
11
 
Drizzle is a transactional, relational, community-driven open source database that is forked from the popular MySQL database.
12
 
 
13
 
The Drizzle team has removed non-essential code, re-factored the remaining code and modernized the code base moving to C++.
14
 
 
15
 
Charter
16
 
 * A database optimized for Cloud infrastructure and Web applications
17
 
 * Design for massive concurrency on modern multi-cpu architecture
18
 
 * Optimize memory for increased performance and parallelism
19
 
 * Open source, open community, open design
20
 
 
21
 
Scope
22
 
 * Re-designed modular architecture providing plugins with defined APIs
23
 
 * Simple design for ease of use and administration
24
 
 * Reliable, ACID transactional
25
 
 
26
 
 
27
 
Introduction:
28
 
-------------
29
 
.. toctree::
30
 
   :maxdepth: 2
31
 
   
32
 
   preface
33
 
   license
34
 
   what_is_drizzle
35
 
   brief_history_of_drizzle
36
 
   how_to_report_a_bug
37
 
   mysql_differences
38
 
 
39
 
Compiling and Installing:
40
 
-------------------------
41
 
.. toctree::
42
 
   :maxdepth: 2
43
 
 
44
 
   installing/requirements
45
 
   installing/from_source
46
 
   installing/ubuntu
47
 
   installing/redhat
48
 
 
49
 
SQL Language:
50
 
-------------
51
 
.. toctree::
52
 
   :maxdepth: 2
53
 
 
54
 
   queries
55
 
   functions/overview
56
 
   data_types
57
 
   ddl
58
 
   dml
59
 
   columntypes 
60
 
   variables 
61
 
   locks 
62
 
   barriers 
63
 
   dynamic 
64
 
   getting_information 
65
 
   transactional 
66
 
   administrative
67
 
   resources/index
68
 
 
69
 
User Level Topics:
70
 
------------------
71
 
.. toctree::
72
 
   :maxdepth: 2
73
 
 
74
 
   storage_engines
75
 
   using_replication
76
 
   logging
 
9
Drizzle is a community-driven open source project that
 
10
is forked from the popular MySQL database.  
 
11
 
 
12
The Drizzle team has removed non-essential code, re-factored the remaining
 
13
code and modernized the code base moving to C++.
 
14
 
 
15
.. toctree::
 
16
   :maxdepth: 2
77
17
 
78
18
Configuration:
79
 
--------------
 
19
 
80
20
.. toctree::
81
21
   :maxdepth: 2
82
22
 
84
24
   options
85
25
 
86
26
Plugins:
87
 
^^^^^^^^
 
27
 
88
28
.. toctree::
89
29
   :maxdepth: 2
90
30
 
91
31
   plugins/list
92
32
 
93
33
Architecture:
94
 
-------------
 
34
 
95
35
.. toctree::
96
36
   :maxdepth: 2
97
37
 
98
38
   protocol
99
 
   replication
100
39
 
101
40
Clients:
102
 
--------
 
41
 
103
42
.. toctree::
104
43
   :maxdepth: 2
105
44
 
106
45
   clients/drizzle.rst
107
46
   clients/drizzledump.rst
108
 
   clients/drizzleadmin.rst
109
 
   clients/errors.rst
110
 
 
111
 
libdrizzle:
112
 
-----------
113
 
.. toctree::
114
 
   :maxdepth: 2
115
 
 
116
 
   libdrizzle/api.rst
117
 
   libdrizzle/developer.rst
118
 
 
119
 
Testing:
120
 
--------
121
 
.. toctree::
122
 
   :maxdepth: 2
123
 
 
124
 
   testing/test-run.rst
125
 
   testing/dbqp.rst
126
47
 
127
48
Indices and tables
128
49
==================