From: | "Jaime Casanova" <systemguards(at)gmail(dot)com> |
---|---|
To: | "lein gutierrez" <leing2002(at)gmail(dot)com> |
Cc: | pgsql-es-ayuda(at)postgresql(dot)org |
Subject: | Re: agregar una columna entera a lista de insecion de una tabla postgres internals |
Date: | 2006-06-24 13:52:06 |
Message-ID: | c2d9e70e0606240652v11526be2yea0a83973b6e0efb@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-es-ayuda |
On 6/23/06, lein gutierrez <leing2002(at)gmail(dot)com> wrote:
> Hola Apreciados Amigos,
>
> ¿Que trato de hacer?:
>
> Anexarle a la lista de valores de una instruccion insert en el gram.y un
> numero 6 al final, es decir esto seria
>
> INSERT INTO TABLA VALUES ('lein') TIMESTAMP se transformaria --> INSERT
> INTO TABLA VALUES ('lein',6) TIMESTAMP
>
> ## Mi estructura de tabla en postgresql (psql es una tablita de varchar y un
> campo int)
>
> ARCHIVO GRAM.Y
>
> /*****************************************************************************
> *
> * QUERY:
> * INSERT STATEMENTS
> *
> *****************************************************************************/
>
> InsertStmt:
> INSERT INTO qualified_name insert_rest
> {
> $4->relation = $3;
> $$ = (Node *) $4;
> }
> ;
>
> insert_rest:
> VALUES '(' insert_target_list ')' TIMESTAMP
> {
> $$ = makeNode(InsertStmt);
> $$->cols = NIL;
> $$->targetList = $3;
> lappend_int($$->targetList, 6);
> $$->selectStmt = NULL;
> }
>
> Pero me da un error al hacer esto en psql
>
> postgres=# insert into empleados values('lein') TIMESTAMP;
> server closed the connection unexpectedly
> This probably means the server terminated abnormally
> before or while processing the request.
> The connection to the server was lost. Attempting reset: Failed.
>
> El resultado deberia ser
> tabla: empleados(lein,4)
>
> Alguien me puede echar una mano acepto cualquier sugerencia por muy tonta
> que sea.
deja de complicarte la vida, usa reglas o un valor DEFAULT...
existe algun motivo en especial por el cual quieras hacer esto? si en
realidad quieres hacerlo deja de jugar con gram.y y empieza a revisar
otros lugares.
No se si tenga algo que ver pero yo empezaria revisando en: analyze.c
--
Atentamente,
Jaime Casanova
"Programming today is a race between software engineers striving to
build bigger and better idiot-proof programs and the universe trying
to produce bigger and better idiots.
So far, the universe is winning."
Richard Cook
From | Date | Subject | |
---|---|---|---|
Next Message | Alvaro Herrera | 2006-06-24 21:52:10 | Re: agregar una columna entera a lista de insecion de una tabla postgres internals |
Previous Message | Jaime Casanova | 2006-06-24 05:09:55 | Re: existe alter database nombre rename to nuevo_nombre |