when are the xxxin() functions called

From: Rui Hai Jiang <ruihaijiang(at)msn(dot)com>
To: pgsql-hackers(at)postgresql(dot)org
Subject: when are the xxxin() functions called
Date: 2015-05-07 14:49:48
Message-ID: BLU436-SMTP12149B14F8D97101EC0E16EA0DF0@phx.gbl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hello,

I'm trying to figure out when the following functions are called,

charin()
int2in()
int4in()
textin()

I used GDB for debuging. I set break points at each function and I did
following testing.

create table abcin( id integer, name varchar(10), title text);
insert into abcin( id, name, title ) values (1,'tom', 'manager');

The result is, textin() was called to handle 'manager' assigned to
title, but charin(), int2in and int4in were not called.

Does anyone know when are charin(),int2in() and int4in() called?

Thanks,

Rui Hai

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Stephen Frost 2015-05-07 15:02:54 Re: Disabling trust/ident authentication configure option
Previous Message Bruce Momjian 2015-05-07 14:47:59 Re: initdb start server recommendation