fix typos
authorteodor <teodor>
Mon, 3 Oct 2011 14:38:32 +0000 (14:38 +0000)
committerteodor <teodor>
Mon, 3 Oct 2011 14:38:32 +0000 (14:38 +0000)
README.online_analyze
online_analyze.c

index eb95307..e76b0f5 100644 (file)
@@ -24,7 +24,7 @@ online_analyze.min_interval = 10000
     Minimum time interval between analyze call per table (in milliseconds)
 
 online_analyze.table_type = "all"
-       Type(s) of table for onlyne analyze: all, persistent, temporary, none
+       Type(s) of table for online analyze: all, persistent, temporary, none
 
 online_analyze.exclude_tables = ""
        List of tables which will not online analyze
index 47943c2..188e4db 100644 (file)
@@ -56,7 +56,7 @@ typedef enum
        OATT_PERSISTENT = 0x01,
        OATT_TEMPORARY  = 0x02,
        OATT_NONE               = 0x00
-} OnlyneAnalyzeTableType;
+} OnlineAnalyzeTableType;
 
 static const struct config_enum_entry online_analyze_table_type_options[] = 
 {
@@ -335,7 +335,7 @@ makeAnalyze(Oid relOid, CmdType operation, uint32 naffected)
                        default:
                                {
                                        Relation                                rel;
-                                       OnlyneAnalyzeTableType  reltype;
+                                       OnlineAnalyzeTableType  reltype;
 
                                        rel = RelationIdGetRelation(relOid);
                                        reltype = 
@@ -569,7 +569,7 @@ _PG_init(void)
 
 DefineCustomEnumVariable(
                "online_analyze.table_type",
-               "Type(s) of table for onlyne analyze: all(default), persistent, temporary, none",
+               "Type(s) of table for online analyze: all(default), persistent, temporary, none",
                NULL,
                &online_analyze_table_type,
 #if PG_VERSION_NUM >= 80400