We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e66d714 commit 66a8417Copy full SHA for 66a8417
src/backend/postmaster/pgstat.c
@@ -13,7 +13,7 @@
13
*
14
* Copyright (c) 2001-2009, PostgreSQL Global Development Group
15
16
- * $PostgreSQL: pgsql/src/backend/postmaster/pgstat.c,v 1.191 2009/09/04 22:32:33 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/postmaster/pgstat.c,v 1.192 2009/10/02 22:49:50 tgl Exp $
17
* ----------
18
*/
19
#include "postgres.h"
@@ -1415,7 +1415,8 @@ pgstat_initstats(Relation rel)
1415
/* We only count stats for things that have storage */
1416
if (!(relkind == RELKIND_RELATION ||
1417
relkind == RELKIND_INDEX ||
1418
- relkind == RELKIND_TOASTVALUE))
+ relkind == RELKIND_TOASTVALUE ||
1419
+ relkind == RELKIND_SEQUENCE))
1420
{
1421
rel->pgstat_info = NULL;
1422
return;
0 commit comments