/* *Issueanerrdetail()informingthattherelkindisnotsupportedforthis *operation.
*/ int
errdetail_relkind_not_supported(char relkind)
{ switch (relkind)
{ case RELKIND_RELATION: return errdetail("This operation is not supported for tables."); case RELKIND_INDEX: return errdetail("This operation is not supported for indexes."); case RELKIND_SEQUENCE: return errdetail("This operation is not supported for sequences."); case RELKIND_TOASTVALUE: return errdetail("This operation is not supported for TOAST tables."); case RELKIND_VIEW: return errdetail("This operation is not supported for views."); case RELKIND_MATVIEW: return errdetail("This operation is not supported for materialized views."); case RELKIND_COMPOSITE_TYPE: return errdetail("This operation is not supported for composite types."); case RELKIND_FOREIGN_TABLE: return errdetail("This operation is not supported for foreign tables."); case RELKIND_PARTITIONED_TABLE: return errdetail("This operation is not supported for partitioned tables."); case RELKIND_PARTITIONED_INDEX: return errdetail("This operation is not supported for partitioned indexes."); default:
elog(ERROR, "unrecognized relkind: '%c'", relkind); return0;
}
}
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.13 Sekunden
(vorverarbeitet am 2026-08-08)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.