@@ -3966,28 +3966,28 @@ find_composite_type_dependencies(Oid typeOid, Relation origRelation,
39663966if (origTypeName )
39673967ereport (ERROR ,
39683968(errcode (ERRCODE_FEATURE_NOT_SUPPORTED ),
3969- errmsg ("cannot alter type \"%s\" because column \"%s\".\" %s\" uses it" ,
3969+ errmsg ("cannot alter type \"%s\" because column \"%s. %s\" uses it" ,
39703970origTypeName ,
39713971RelationGetRelationName (rel ),
39723972NameStr (att -> attname ))));
39733973else if (origRelation -> rd_rel -> relkind == RELKIND_COMPOSITE_TYPE )
39743974ereport (ERROR ,
39753975(errcode (ERRCODE_FEATURE_NOT_SUPPORTED ),
3976- errmsg ("cannot alter type \"%s\" because column \"%s\".\" %s\" uses it" ,
3976+ errmsg ("cannot alter type \"%s\" because column \"%s. %s\" uses it" ,
39773977RelationGetRelationName (origRelation ),
39783978RelationGetRelationName (rel ),
39793979NameStr (att -> attname ))));
39803980else if (origRelation -> rd_rel -> relkind == RELKIND_FOREIGN_TABLE )
39813981ereport (ERROR ,
39823982(errcode (ERRCODE_FEATURE_NOT_SUPPORTED ),
3983- errmsg ("cannot alter foreign table \"%s\" because column \"%s\".\" %s\" uses itsrowtype " ,
3983+ errmsg ("cannot alter foreign table \"%s\" because column \"%s. %s\" uses itsrow type " ,
39843984RelationGetRelationName (origRelation ),
39853985RelationGetRelationName (rel ),
39863986NameStr (att -> attname ))));
39873987else
39883988ereport (ERROR ,
39893989(errcode (ERRCODE_FEATURE_NOT_SUPPORTED ),
3990- errmsg ("cannot alter table \"%s\" because column \"%s\".\" %s\" uses itsrowtype " ,
3990+ errmsg ("cannot alter table \"%s\" because column \"%s. %s\" uses itsrow type " ,
39913991RelationGetRelationName (origRelation ),
39923992RelationGetRelationName (rel ),
39933993NameStr (att -> attname ))));
@@ -6648,7 +6648,7 @@ ATPrepAlterColumnType(List **wqueue,
66486648 * expression, else just take the old value and try to coerce it. We
66496649 * do this first so that type incompatibility can be detected before
66506650 * we waste effort, and because we need the expression to be parsed
6651- * against the original tablerowtype .
6651+ * against the original tablerow type .
66526652 */
66536653if (transform )
66546654{
@@ -7493,7 +7493,7 @@ ATExecChangeOwner(Oid relationOid, Oid newOwnerId, bool recursing, LOCKMODE lock
74937493newOwnerId );
74947494
74957495/*
7496- * Also change the ownership of the table'srowtype , if it has one
7496+ * Also change the ownership of the table'srow type , if it has one
74977497 */
74987498if (tuple_class -> relkind != RELKIND_INDEX )
74997499AlterTypeOwnerInternal (tuple_class -> reltype ,newOwnerId ,
@@ -9005,7 +9005,7 @@ AlterTableNamespace(RangeVar *relation, const char *newschema,
90059005
90069006AlterRelationNamespaceInternal (classRel ,relid ,oldNspOid ,nspOid , true);
90079007
9008- /* Fix the table'srowtype too */
9008+ /* Fix the table'srow type too */
90099009AlterTypeNamespaceInternal (rel -> rd_rel -> reltype ,nspOid , false, false);
90109010
90119011/* Fix other dependent stuff */
@@ -9089,7 +9089,7 @@ AlterIndexNamespaces(Relation classRel, Relation rel,
90899089/*
90909090 * Note: currently, the index will not have its own dependency on the
90919091 * namespace, so we don't need to do changeDependencyFor(). There's no
9092- *rowtype in pg_type, either.
9092+ *row type in pg_type, either.
90939093 */
90949094AlterRelationNamespaceInternal (classRel ,indexOid ,
90959095oldNspOid ,newNspOid ,