From 95c5ec9a02b016f26d2e35e31df448231a85ead1 Mon Sep 17 00:00:00 2001 From: teodor Date: Mon, 3 Oct 2011 14:38:32 +0000 Subject: [PATCH] fix typos --- README.online_analyze | 2 +- online_analyze.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.online_analyze b/README.online_analyze index eb95307..e76b0f5 100644 --- a/README.online_analyze +++ b/README.online_analyze @@ -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 diff --git a/online_analyze.c b/online_analyze.c index 47943c2..188e4db 100644 --- a/online_analyze.c +++ b/online_analyze.c @@ -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 -- 2.37.3