commit | a528f54eeb40608e266fcb968e43b26ba57489c6 | [log] [tgz] |
---|---|---|
author | David Reiss <dreiss@apache.org> | 周二 3月 24 22:48:40 2009 +0000 |
committer | David Reiss <dreiss@apache.org> | 周二 3月 24 22:48:40 2009 +0000 |
tree | 6301f57bd9807820e1fe7ff67d19ee4a8ed7d348 | |
parent | 2f20ae45fbab56b502e67c0ae818e010ab37a562 [diff] |
THRIFT-360. python: Make fastbinary skip struct fields with the wrong type git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@758071 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/test/ThriftTest.thrift b/test/ThriftTest.thrift index 7049d51..3faaa6a 100644 --- a/test/ThriftTest.thrift +++ b/test/ThriftTest.thrift
@@ -113,6 +113,7 @@ struct VersioningTestV1 { 1: i32 begin_in_both, + 3: string old_string, 12: i32 end_in_both }
diff --git a/test/py/SerializationTest.py b/test/py/SerializationTest.py index a99bce6..296a50a 100755 --- a/test/py/SerializationTest.py +++ b/test/py/SerializationTest.py
@@ -16,6 +16,7 @@ def setUp(self): self.v1obj = VersioningTestV1( begin_in_both=12345, + old_string='aaa', end_in_both=54321, )