{
ereport(WARNING,
errcode(ERRCODE_UNDEFINED_OBJECT),
- errmsg("could not find extended statistics object \"%s\".\"%s\"",
- quote_identifier(nspname),
- quote_identifier(stxname)));
+ errmsg("could not find extended statistics object \"%s.%s\"",
+ nspname, stxname));
success = false;
goto cleanup;
}
{
ereport(WARNING,
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
- errmsg("could not restore extended statistics object \"%s\".\"%s\": incorrect relation \"%s\".\"%s\" specified",
- quote_identifier(nspname),
- quote_identifier(stxname),
- quote_identifier(relnspname),
- quote_identifier(relname)));
+ errmsg("could not restore extended statistics object \"%s.%s\": incorrect relation \"%s.%s\" specified",
+ nspname, stxname,
+ relnspname, relname));
success = false;
goto cleanup;
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("cannot specify parameter \"%s\"",
extarginfo[NDISTINCT_ARG].argname),
- errhint("Extended statistics object \"%s\".\"%s\" does not support statistics of this type.",
- quote_identifier(nspname),
- quote_identifier(stxname)));
+ errhint("Extended statistics object \"%s.%s\" does not support statistics of this type.",
+ nspname, stxname));
has.ndistinct = false;
success = false;
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("cannot specify parameter \"%s\"",
extarginfo[DEPENDENCIES_ARG].argname),
- errhint("Extended statistics object \"%s\".\"%s\" does not support statistics of this type.",
- quote_identifier(nspname),
- quote_identifier(stxname)));
+ errhint("Extended statistics object \"%s.%s\" does not support statistics of this type.",
+ nspname, stxname));
has.dependencies = false;
success = false;
}
extarginfo[MOST_COMMON_VALS_ARG].argname,
extarginfo[MOST_COMMON_FREQS_ARG].argname,
extarginfo[MOST_COMMON_BASE_FREQS_ARG].argname),
- errhint("Extended statistics object \"%s\".\"%s\" does not support statistics of this type.",
- quote_identifier(nspname),
- quote_identifier(stxname)));
+ errhint("Extended statistics object \"%s.%s\" does not support statistics of this type.",
+ nspname, stxname));
has.mcv = false;
success = false;
table_close(pg_stext, RowExclusiveLock);
ereport(WARNING,
errcode(ERRCODE_UNDEFINED_OBJECT),
- errmsg("could not find extended statistics object \"%s\".\"%s\"",
+ errmsg("could not find extended statistics object \"%s.%s\"",
nspname, stxname));
PG_RETURN_VOID();
}
table_close(pg_stext, RowExclusiveLock);
ereport(WARNING,
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
- errmsg("could not clear extended statistics object \"%s\".\"%s\": incorrect relation \"%s\".\"%s\" specified",
+ errmsg("could not clear extended statistics object \"%s.%s\": incorrect relation \"%s.%s\" specified",
get_namespace_name(nspoid), stxname,
relnspname, relname));
PG_RETURN_VOID();
statistics_schemaname => 'stats_import',
statistics_name => 'ext_stats_not_exist',
inherited => false);
-WARNING: could not find extended statistics object "stats_import"."ext_stats_not_exist"
+WARNING: could not find extended statistics object "stats_import.ext_stats_not_exist"
pg_clear_extended_stats
-------------------------
statistics_schemaname => 'stats_import',
statistics_name => 'test_stat_clone',
inherited => false);
-WARNING: could not clear extended statistics object "stats_import"."test_stat_clone": incorrect relation "stats_import"."test" specified
+WARNING: could not clear extended statistics object "stats_import.test_stat_clone": incorrect relation "stats_import.test" specified
pg_clear_extended_stats
-------------------------
'statistics_schemaname', 'stats_import',
'statistics_name', 'ext_stats_not_exist',
'inherited', false);
-WARNING: could not find extended statistics object "stats_import"."ext_stats_not_exist"
+WARNING: could not find extended statistics object "stats_import.ext_stats_not_exist"
pg_restore_extended_stats
---------------------------
f
'statistics_schemaname', 'stats_import',
'statistics_name', 'test_stat_clone',
'inherited', false);
-WARNING: could not restore extended statistics object "stats_import"."test_stat_clone": incorrect relation "stats_import"."test" specified
+WARNING: could not restore extended statistics object "stats_import.test_stat_clone": incorrect relation "stats_import.test" specified
pg_restore_extended_stats
---------------------------
f
'inherited', false,
'n_distinct', '[{"attributes" : [1,3], "ndistinct" : 4}]'::pg_ndistinct);
WARNING: cannot specify parameter "n_distinct"
-HINT: Extended statistics object "stats_import"."test_stat_dependencies" does not support statistics of this type.
+HINT: Extended statistics object "stats_import.test_stat_dependencies" does not support statistics of this type.
pg_restore_extended_stats
---------------------------
f
'dependencies', '[{"attributes": [2], "dependency": 3, "degree": 1.000000},
{"attributes": [3], "dependency": 2, "degree": 1.000000}]'::pg_dependencies);
WARNING: cannot specify parameter "dependencies"
-HINT: Extended statistics object "stats_import"."test_stat_ndistinct" does not support statistics of this type.
+HINT: Extended statistics object "stats_import.test_stat_ndistinct" does not support statistics of this type.
pg_restore_extended_stats
---------------------------
f
'most_common_freqs', '{0.25,0.25,0.25,0.25}'::double precision[],
'most_common_base_freqs', '{0.0625,0.0625,0.0625,0.0625}'::double precision[]);
WARNING: cannot specify parameters "most_common_vals", "most_common_freqs" or "most_common_base_freqs"
-HINT: Extended statistics object "stats_import"."test_stat_dependencies" does not support statistics of this type.
+HINT: Extended statistics object "stats_import.test_stat_dependencies" does not support statistics of this type.
pg_restore_extended_stats
---------------------------
f