diff --git a/src/pl/plpython/expected/plpython_types.out b/src/pl/plpython/expected/plpython_types.out
index fd4efe959644d30a15728bcb9c2c648dc484a446..476f32974be4274859a472492959149479ad6442 100644
--- a/src/pl/plpython/expected/plpython_types.out
+++ b/src/pl/plpython/expected/plpython_types.out
@@ -173,14 +173,6 @@ CONTEXT:  PL/Python function "test_type_conversion_numeric"
                  5000000000.5
 (1 row)
 
-SELECT * FROM test_type_conversion_numeric(79228162514264337593543950336);
-INFO:  (7.9228162514264338e+28, <type 'float'>)
-CONTEXT:  PL/Python function "test_type_conversion_numeric"
- test_type_conversion_numeric  
--------------------------------
- 79228162514300000000000000000
-(1 row)
-
 SELECT * FROM test_type_conversion_numeric(null);
 INFO:  (None, <type 'NoneType'>)
 CONTEXT:  PL/Python function "test_type_conversion_numeric"
diff --git a/src/pl/plpython/sql/plpython_types.sql b/src/pl/plpython/sql/plpython_types.sql
index d0579962a9487e558f735be8a3d7dcae1fa1552e..79fbbb9c882ba649f6a9f21b545c2ab9c1697616 100644
--- a/src/pl/plpython/sql/plpython_types.sql
+++ b/src/pl/plpython/sql/plpython_types.sql
@@ -65,7 +65,6 @@ $$ LANGUAGE plpythonu;
 SELECT * FROM test_type_conversion_numeric(100);
 SELECT * FROM test_type_conversion_numeric(-100);
 SELECT * FROM test_type_conversion_numeric(5000000000.5);
-SELECT * FROM test_type_conversion_numeric(79228162514264337593543950336);
 SELECT * FROM test_type_conversion_numeric(null);