~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/create_table.rst

  • Committer: Brian Aker
  • Date: 2011-07-13 02:17:59 UTC
  • mto: (2392.1.1 drizzle-autoconf)
  • mto: This revision was merged to the branch mainline in revision 2365.
  • Revision ID: brian@tangent.org-20110713021759-s48wjufkdj3878ms
Fix documentation for replication.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
    CREATE [TEMPORARY] TABLE [IF NOT EXISTS] table_name
10
10
      (create_definition, ...)
11
11
      [engine_options]
 
12
      REPLICATE=[TRUE|FALSE] 
12
13
 
13
14
or:
14
15
 
18
19
      [(create_definition, ...)]
19
20
      [engine_options]
20
21
      select_statement
 
22
      REPLICATE=[TRUE|FALSE] 
21
23
 
22
24
or:
23
25
 
26
28
    CREATE [TEMPORARY] TABLE [IF NOT EXISTS] table_name
27
29
      LIKE different_table_name
28
30
      [engine_options]
 
31
      REPLICATE=[TRUE|FALSE] 
29
32
 
30
33
create_definition
31
34
-----------------
84
87
 
85
88
  ENGINE = engine_name
86
89
  { engine_specific }
 
90
 
 
91
REPLICATE
 
92
---------
 
93
 
 
94
Specify whether or not a TABLE should be replicated.
 
95
 
 
96
  REPLICATE=[TRUE|FALSE]