Index: loader/shp2pgsql-core.c
===================================================================
--- loader/shp2pgsql-core.c	(revision 4785)
+++ loader/shp2pgsql-core.c	(working copy)
@@ -666,10 +666,6 @@
 			{
 				stringbuffer_append (sb_row, "int4");
 			}
-			else if  ( field_width < 19 )
-			{
-				stringbuffer_append (sb_row, "int8");
-			}
 			else
 			{
 				stringbuffer_aprintf (sb_row, "numeric(%d,0)", field_width);
Index: loader/shp2pgsql.c
===================================================================
--- loader/shp2pgsql.c	(revision 4785)
+++ loader/shp2pgsql.c	(working copy)
@@ -582,10 +582,6 @@
 			{
 				printf ("int4");
 			}
-			else if  ( field_width < 19 )
-			{
-				printf ("int8");
-			}
 			else
 			{
 				printf("numeric(%d,0)",

