Hi , We are trying to uplift thrift from 0.13.0 to 0.14.0. We have three thrift files.
1. from**.thrift 2. to**.thrift 3. **Common.thrift By using the below command , we generate source code from thrift files. thrift -r --gen cpp:pure_enums thriftfile When we tried to generate source code with to**.thrift using thrift0.14.0, we observed the difference in the list of files generated. Below are the list of flies generated with thrift0.14.0 and thrift0.13.0 versions for to**.thrift file thrift0.14.0 thrift0.13.0 * **Common_types.cpp * **Common_types.h * to**.cpp * to**.h * to**_server.skeleton.cpp * to**_types.h * **Common_constants.cpp * **Common_constants.h * **Common_types.cpp * **Common_types.h * to**.cpp * to**.h * to**_constants.cpp * to**_constants.h * to**_server.skeleton.cpp * to**_types.cpp * to**_types.h Below are list of files missed to generate with thrift0.14. * **Common_constants.cpp * **Common_constants.h * to**_constants.cpp * to**_constants.h * to**_types.cpp We would like to know if there is any update in thrift0.14.0 complier related to generation of missing files (constants.cpp and types.cpp) files from thrift files. Could you please assist. Thanks Hari