kimmking opened a new issue #8241: URL: https://github.com/apache/shardingsphere/issues/8241
As method getRowData in TextProtocolBackendHandler has been modified, return type from list to collection. Before: ``` public List<Object> getRowData(); ``` After: ``` public Collection<Object> getRowData(); ``` But all sub class has not updated to Collection type as follow: - [ ] 1.BroadcastBackendHandler - [ ] 2.QueryBackendHandler - [ ] 3.RDLBackendHandler - [ ] 4.ShardingCTLExplainBackendHandler - [ ] 5.ShardingCTLHintBackendHandler - [ ] 6.ShardingCTLSetBackendHandler - [ ] 7.ShardingCTLShowBackendHandler - [ ] 8.ShowDatabasesBackendHandler - [ ] 9.ShowTablesBackendHandler - [ ] 10.SkipBackendHandler - [ ] 11.TransactionBackendHandler - [ ] 12.UnicastBackendHandler - [ ] 13.UseDatabaseBackendHandler You should pick up one and 1. modify return type to Collection<Object> 2. remove useless important 3. mvn clean package to ensure all test work well 4. submit a pr to this repo with a certain title: Update the sub class[your update class name here] of TextProtocolBackendHandler buddies, good luck and move on. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
