mirror of
https://github.com/postgres/postgres.git
synced 2026-07-16 23:05:04 -04:00
C comment: mention null handling in BuildTupleFromCStrings()
Discussion: https://postgr.es/m/CAFjFpRcF-wNbe0w-m3NpkEwr9shmOZ=GoESOzd2Wog9h55J8sA@mail.gmail.com Author: Ashutosh Bapat
This commit is contained in:
parent
710d90da1f
commit
242408dbef
1 changed files with 4 additions and 1 deletions
|
|
@ -1204,7 +1204,10 @@ BuildTupleFromCStrings(AttInMetadata *attinmeta, char **values)
|
|||
dvalues = (Datum *) palloc(natts * sizeof(Datum));
|
||||
nulls = (bool *) palloc(natts * sizeof(bool));
|
||||
|
||||
/* Call the "in" function for each non-dropped attribute */
|
||||
/*
|
||||
* Call the "in" function for each non-dropped attribute, even for nulls,
|
||||
* to support domains.
|
||||
*/
|
||||
for (i = 0; i < natts; i++)
|
||||
{
|
||||
if (!TupleDescAttr(tupdesc, i)->attisdropped)
|
||||
|
|
|
|||
Loading…
Reference in a new issue