doc: Add some markup
authorPeter Eisentraut
Sat, 8 Apr 2017 02:42:03 +0000 (22:42 -0400)
committerPeter Eisentraut
Sat, 8 Apr 2017 02:45:39 +0000 (22:45 -0400)
doc/src/sgml/ref/alter_domain.sgml
doc/src/sgml/ref/alter_role.sgml
doc/src/sgml/ref/alter_subscription.sgml
doc/src/sgml/ref/create_policy.sgml
doc/src/sgml/ref/create_statistics.sgml
doc/src/sgml/ref/create_subscription.sgml
doc/src/sgml/ref/grant.sgml

index 74dda73c699210d33d6adc4b78255f6a7c8df270..95a822aef621e3dbe9aad1099bc44d44b8068908 100644 (file)
@@ -54,7 +54,7 @@ ALTER DOMAIN name
 
   
    
-    SET/DROP DEFAULT
+    SET/DROP DEFAULT
     
      
       These forms set or remove the default value for a domain. Note
@@ -65,7 +65,7 @@ ALTER DOMAIN name
    
 
    
-    SET/DROP NOT NULL
+    SET/DROP NOT NULL
     
      
       These forms change whether a domain is marked to allow NULL
@@ -76,7 +76,7 @@ ALTER DOMAIN name
    
 
    
-    ADD domain_constraint [ NOT VALID ]
+    ADD domain_constraint [ NOT VALID ]
     
      
       This form adds a new constraint to a domain using the same syntax as
@@ -94,7 +94,7 @@ ALTER DOMAIN name
    
 
    
-    DROP CONSTRAINT [ IF EXISTS ]
+    DROP CONSTRAINT [ IF EXISTS ]
     
      
       This form drops constraints on a domain.
@@ -105,7 +105,7 @@ ALTER DOMAIN name
    
 
    
-    RENAME CONSTRAINT
+    RENAME CONSTRAINT
     
      
       This form changes the name of a constraint on a domain.
@@ -114,7 +114,7 @@ ALTER DOMAIN name
    
 
    
-    VALIDATE CONSTRAINT
+    VALIDATE CONSTRAINT
     
      
       This form validates a constraint previously added as
@@ -125,7 +125,7 @@ ALTER DOMAIN name
    
 
    
-    OWNER
+    OWNER
     
      
       This form changes the owner of the domain to the specified user.
@@ -143,7 +143,7 @@ ALTER DOMAIN name
    
 
    
-    SET SCHEMA
+    SET SCHEMA
     
      
       This form changes the schema of the domain.  Any constraints
index da36ad96967e7c842c28f5787b5ec0dc48ec5a60..37fcfb926c11169f0ce0584046c58e2b86b84182 100644 (file)
@@ -134,7 +134,7 @@ ALTER ROLE { role_specification | A
      
 
      
-      CURRENT_USER
+      CURRENT_USER
       
        
         Alter the current user instead of an explicitly identified role.
@@ -143,7 +143,7 @@ ALTER ROLE { role_specification | A
      
 
      
-      SESSION_USER
+      SESSION_USER
       
        
         Alter the current session user instead of an explicitly identified
index 6f94247b923a7144143c1611231cf44d33d02256..0e332bc143bd536ac2696ba2c60074dba1c405aa 100644 (file)
@@ -98,7 +98,7 @@ ALTER SUBSCRIPTION name DISABLE
    
 
    
-    REFRESH PUBLICATION
+    REFRESH PUBLICATION
     
      
       Fetch missing table information from publisher. This will start
index f0486effaf5c76d107e4e490ffb86bbb516f8079..3b24e5e95eb41a878be6a8c1ae8c12a29401a2e0 100644 (file)
@@ -121,20 +121,20 @@ CREATE POLICY name ON 
    
 
    
-    <replaceable class="parameter">PERMISSIVE>
+    <literal>PERMISSIVE>
     
      
       Specify that the policy is to be created as a permissive policy.
       All permissive policies which are applicable to a given query will
       be combined together using the boolean "OR" operator.  By creating
       permissive policies, administrators can add to the set of records
-      which can be accessed.  Policies are PERMISSIVE by default.
+      which can be accessed.  Policies are permissive by default.
      
     
    
 
    
-    <replaceable class="parameter">RESTRICTIVE>
+    <literal>RESTRICTIVE>
     
      
       Specify that the policy is to be created as a restrictive policy.
index 163d43f2d4147dd0585ddb01f838f2c20b6e5dbf..dbe28d668575071bffae4ef3a4b6ed7ff2b6e39e 100644 (file)
@@ -22,9 +22,9 @@ PostgreSQL documentation
  
 
 CREATE STATISTICS [ IF NOT EXISTS ] statistics_name
-  WITH ( option [= value] [, ... ] )
-  ON ( column_name, column_name [, ...])
-  FROM table_name
+    WITH ( option [= value] [, ... ] )
+    ON ( column_name, column_name [, ...])
+    FROM table_name
 
 
  
index 8f3c30b9b0132a7cb767a0e861498488bfe60e4b..3410d6fc8c2fd481a02b5f097cf3077b95ca1730 100644 (file)
@@ -136,8 +136,8 @@ CREATE SUBSCRIPTION subscription_name
    
 
    
-    COPY DATA
-    NOCOPY DATA
+    COPY DATA
+    NOCOPY DATA
     
      
       Specifies if the existing data in the publications that are being
@@ -148,7 +148,7 @@ CREATE SUBSCRIPTION subscription_name
    
 
    
-    NOCONNECT
+    NOCONNECT
     
      
       Instructs CREATE SUBSCRIPTION to skip the initial
index d7b6d5fb300320103d3e821aff788189c04738b4..c63252ca2477b9ce8de2b1ebd7593a8153495c31 100644 (file)
@@ -177,7 +177,7 @@ GRANT role_name [, ...] TO 
 
    
     
-     SELECT
+     SELECT
      
       
        Allows  from
@@ -196,7 +196,7 @@ GRANT role_name [, ...] TO 
     
 
     
-     INSERT
+     INSERT
      
       
        Allows  of a new
@@ -209,7 +209,7 @@ GRANT role_name [, ...] TO 
     
 
     
-     UPDATE
+     UPDATE
      
       
        Allows  of any
@@ -231,7 +231,7 @@ GRANT role_name [, ...] TO 
     
 
     
-     DELETE
+     DELETE
      
       
        Allows  of a row
@@ -244,7 +244,7 @@ GRANT role_name [, ...] TO 
     
 
     
-     TRUNCATE
+     TRUNCATE
      
       
        Allows  on
@@ -254,7 +254,7 @@ GRANT role_name [, ...] TO 
     
 
     
-     REFERENCES
+     REFERENCES
      
       
        Allows creation of a foreign key constraint referencing the specified
@@ -265,7 +265,7 @@ GRANT role_name [, ...] TO 
     
 
     
-     TRIGGER
+     TRIGGER
      
       
        Allows the creation of a trigger on the specified table.  (See the
@@ -275,7 +275,7 @@ GRANT role_name [, ...] TO 
     
 
     
-     CREATE
+     CREATE
      
       
        For databases, allows new schemas and publications to be created within the database.
@@ -295,7 +295,7 @@ GRANT role_name [, ...] TO 
     
 
     
-     CONNECT
+     CONNECT
      
       
        Allows the user to connect to the specified database.  This
@@ -306,8 +306,8 @@ GRANT role_name [, ...] TO 
     
 
     
-     TEMPORARY
-     TEMP
+     TEMPORARY
+     TEMP
      
       
        Allows temporary tables to be created while using the specified database.
@@ -316,7 +316,7 @@ GRANT role_name [, ...] TO 
     
 
     
-     EXECUTE
+     EXECUTE
      
       
        Allows the use of the specified function and the use of any
@@ -328,7 +328,7 @@ GRANT role_name [, ...] TO 
     
 
     
-     USAGE
+     USAGE
      
       
        For procedural languages, allows the use of the specified language for
@@ -371,7 +371,7 @@ GRANT role_name [, ...] TO 
     
 
     
-     ALL PRIVILEGES
+     ALL PRIVILEGES
      
       
        Grant all of the available privileges at once.