> > I'm having a problem with the code below. The program exits when it > > gets to the fetchrow_array() statement. It doesn't print an error > > message and it doesn't die. We checked the temporary table, and it > > exists with the right fields. STDERR shows the "Got here 1.3" line > > but not the "Got here 1.4" line. Is there anything I missed or does > > anybody have ideas on what can be wrong? > > > > > You probably have a unknown (to DBD::Pg) column type in your > table. And > thereis a bug in 1.31 where an unknown column will cause a > null pointer > deref and your program will exit with a SIGSEGV. Try 1.32_1 > on CPAN and > see if that fixes your problem. > > Rudy
Rudy, Good call...one of the columns is a custom type. I'll try 1.32_1 and post my results. Thanks, dianne
