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
OATT_PERSISTENT = 0x01,
OATT_TEMPORARY = 0x02,
OATT_NONE = 0x00
-} OnlyneAnalyzeTableType;
+} OnlineAnalyzeTableType;
static const struct config_enum_entry online_analyze_table_type_options[] =
{
default:
{
Relation rel;
- OnlyneAnalyzeTableType reltype;
+ OnlineAnalyzeTableType reltype;
rel = RelationIdGetRelation(relOid);
reltype =
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