From: | Rafael Urbina <rug_vzla(at)yahoo(dot)com> |
---|---|
To: | Postgre SQL <pgsql-es-ayuda(at)postgresql(dot)org> |
Subject: | Error Compilando el Código fuente |
Date: | 2006-09-01 20:14:37 |
Message-ID: | 20060901201437.29238.qmail@web54303.mail.yahoo.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-es-ayuda |
gram.y
insert_rest:
VALUES '(' insert_target_list ')' VALID insert_target_el
{
$$ = makeNode(InsertStmt);
$$->cols = NIL;
if (1 > 0)
{
$3= lappend($3,$6);
}
$$->targetList = $3;
$$->selectStmt = NULL;
}
Lo que que quiero es agregar insert_target_el a la lista insert_target_list.
Esto me funciona bajo un ambiente de desarrollo, pero cuando migro el código fuente comprimido a otra maquina con las mismas características. Al ejecutar la instruccion de instalación desde código fuente. Me da el siguiente error:
[postgres(at)Hades postgresql-8.1.3]$ /usr/local/pgsql/bin/initdb -D /usr/local/pgsql/data
The files belonging to this database system will be owned by user "postgres".
This user must also own the server process.
The database cluster will be initialized with locale es_ES.UTF-8.
The default database encoding has accordingly been set to UTF8.
creating directory /usr/local/pgsql/data ... ok
creating directory /usr/local/pgsql/data/global ... ok
creating directory /usr/local/pgsql/data/pg_xlog ... ok
creating directory /usr/local/pgsql/data/pg_xlog/archive_status ... ok
creating directory /usr/local/pgsql/data/pg_clog ... ok
creating directory /usr/local/pgsql/data/pg_subtrans ... ok
creating directory /usr/local/pgsql/data/pg_twophase ... ok
creating directory /usr/local/pgsql/data/pg_multixact/members ... ok
creating directory /usr/local/pgsql/data/pg_multixact/offsets ... ok
creating directory /usr/local/pgsql/data/base ... ok
creating directory /usr/local/pgsql/data/base/1 ... ok
creating directory /usr/local/pgsql/data/pg_tblspc ... ok
selecting default max_connections ... 100
selecting default shared_buffers ... 1000
creating configuration files ... ok
creating template1 database in /usr/local/pgsql/data/base/1 ... ok
initializing pg_authid ... ok
enabling unlimited row size for system tables ... ok
initializing dependencies ... ok
creating system views ... ok
loading pg_description ... ok
creating conversions ... ok
setting privileges on built-in objects ... ok
creating information schema ... FATAL: syntax error at or near ";" at character 41820
child process exited with exit code 1
initdb: removing data directory "/usr/local/pgsql/data"
[postgres(at)Hades postgresql-8.1.3]$
Este error en desarrollo no me da, pero al migrarlo si.
__________________________________________________
Correo Yahoo!
Espacio para todos tus mensajes, antivirus y antispam ¡gratis!
Regístrate ya - http://correo.espanol.yahoo.com/
From | Date | Subject | |
---|---|---|---|
Next Message | Rafael Urbina | 2006-09-01 21:35:30 | Rv: Error Compilando el Código fuente |
Previous Message | WILLIAM PARRA | 2006-09-01 19:18:14 | Re: Error al Crear Function para trigger |