when are the xxxin() functions called - Mailing list pgsql-hackers

From Rui Hai Jiang
Subject when are the xxxin() functions called
Date
Msg-id BLU436-SMTP12149B14F8D97101EC0E16EA0DF0@phx.gbl
Whole thread Raw
Responses Re: when are the xxxin() functions called  (Amit Langote <Langote_Amit_f8@lab.ntt.co.jp>)
Re: when are the xxxin() functions called  (Michael Paquier <michael.paquier@gmail.com>)
List 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



pgsql-hackers by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: initdb start server recommendation
Next
From: Stephen Frost
Date:
Subject: Re: Disabling trust/ident authentication configure option