diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c
new file mode 100644
index 21bbdf8..a5bf5c9
*** a/src/bin/psql/describe.c
--- b/src/bin/psql/describe.c
*************** describeOneTableDetails(const char *sche
*** 2362,2375 ****
  		}
  
  		/* OIDs, if verbose and not a materialized view */
! 		if (verbose && tableinfo.relkind != 'm')
! 		{
! 			const char *s = _("Has OIDs");
! 
! 			printfPQExpBuffer(&buf, "%s: %s", s,
! 							  (tableinfo.hasoids ? _("yes") : _("no")));
! 			printTableAddFooter(&cont, buf.data);
! 		}
  
  		/* Tablespace info */
  		add_tablespace_footer(&cont, tableinfo.relkind, tableinfo.tablespace,
--- 2362,2369 ----
  		}
  
  		/* OIDs, if verbose and not a materialized view */
! 		if (verbose && tableinfo.relkind != 'm' && tableinfo.hasoids)
! 			printTableAddFooter(&cont, _("Has OIDs"));
  
  		/* Tablespace info */
  		add_tablespace_footer(&cont, tableinfo.relkind, tableinfo.tablespace,
