Ticket #38: scinot1.patch
| File scinot1.patch, 0.8 KB (added by pramsey, 3 years ago) |
|---|
-
loader/shp2pgsql-core.c
666 666 { 667 667 stringbuffer_append (sb_row, "int4"); 668 668 } 669 else if ( field_width < 19 )670 {671 stringbuffer_append (sb_row, "int8");672 }673 669 else 674 670 { 675 671 stringbuffer_aprintf (sb_row, "numeric(%d,0)", field_width); -
loader/shp2pgsql.c
582 582 { 583 583 printf ("int4"); 584 584 } 585 else if ( field_width < 19 )586 {587 printf ("int8");588 }589 585 else 590 586 { 591 587 printf("numeric(%d,0)",
