does update of column with no relation imply a relation check of other column? - Mailing list pgsql-performance

From Anibal David Acosta
Subject does update of column with no relation imply a relation check of other column?
Date
Msg-id 00ce01cc8e76$ed533480$c7f99d80$@devshock.com
Whole thread Raw
Responses Re: does update of column with no relation imply a relation check of other column?
List pgsql-performance

For example:

Table A

-id (PK)

-name

 

Table B

-table_a_id (PK, FK)

-address

 

When I do an insert on table B, the database check if value for column “table_a_id” exists in table A

But, if I do an update of column “address” of table B, does the database check again?

 

My question is due to the nature of and update in postgres, that basically is a new version “insert”.

 

Thanks

pgsql-performance by date:

Previous
From: Scott Marlowe
Date:
Subject: Re: How many Cluster database on a single server
Next
From: Greg Jaskiewicz
Date:
Subject: Re: does update of column with no relation imply a relation check of other column?