On Sun, Oct 13, 2024 at 6:21 PM Jeff Davis <jda...@postgresql.org> wrote: > Create functions pg_set_relation_stats, pg_clear_relation_stats. > > These functions are used to tweak statistics on any relation, provided > that the user has MAINTAIN privilege on the relation, or is the database > owner.
+#include "utils/array.h" +#include "utils/builtins.h" +#include "utils/acl.h" +#include "utils/rel.h" Please, check the alphabetical order of includes in stat_utils.c. ------ Regards, Alexander Korotkov Supabase