GitHub user ftoresan opened a pull request: https://github.com/apache/camel/pull/686
Correct order of returned columns of ResultSetIterator The columns returned by `ResultSetIterator.getColumnNames()` were not in the same order as they appeared in the query projection. To fix this the `HashSet` used to return the values was changed to a `LinkedHashSet`. You can merge this pull request into a Git repository by running: $ git pull https://github.com/ftoresan/camel ordered_columns Alternatively you can review and apply these changes as the patch at: https://github.com/apache/camel/pull/686.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #686 ---- commit 2b1bcaa2085e51bd89b80831e6e3d9065842941b Author: Fabricio Toresan <fabricio.tore...@senior.com.br> Date: 2015-11-20T17:20:05Z Using a LinkedHashSet instead of a HashSet in order to keep the order in which the columns appear in the query projection. ---- --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---