Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 95c5ec9

Browse files
author
teodor
committed
fix typos
1 parent a3afc7d commit 95c5ec9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.online_analyze

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ online_analyze.min_interval = 10000
2424
Minimum time interval between analyze call per table (in milliseconds)
2525

2626
online_analyze.table_type = "all"
27-
Type(s) of table for onlyne analyze: all, persistent, temporary, none
27+
Type(s) of table for online analyze: all, persistent, temporary, none
2828

2929
online_analyze.exclude_tables = ""
3030
List of tables which will not online analyze

online_analyze.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ typedef enum
5656
OATT_PERSISTENT = 0x01,
5757
OATT_TEMPORARY = 0x02,
5858
OATT_NONE = 0x00
59-
} OnlyneAnalyzeTableType;
59+
} OnlineAnalyzeTableType;
6060

6161
static const struct config_enum_entry online_analyze_table_type_options[] =
6262
{
@@ -335,7 +335,7 @@ makeAnalyze(Oid relOid, CmdType operation, uint32 naffected)
335335
default:
336336
{
337337
Relation rel;
338-
OnlyneAnalyzeTableType reltype;
338+
OnlineAnalyzeTableType reltype;
339339

340340
rel = RelationIdGetRelation(relOid);
341341
reltype =
@@ -569,7 +569,7 @@ _PG_init(void)
569569

570570
DefineCustomEnumVariable(
571571
"online_analyze.table_type",
572-
"Type(s) of table for onlyne analyze: all(default), persistent, temporary, none",
572+
"Type(s) of table for online analyze: all(default), persistent, temporary, none",
573573
NULL,
574574
&online_analyze_table_type,
575575
#if PG_VERSION_NUM >= 80400

0 commit comments

Comments
 (0)