Github user zellerh commented on a diff in the pull request: https://github.com/apache/incubator-trafodion/pull/1141#discussion_r124146799 --- Diff: core/sql/langman/LmJavaOptions.cpp --- @@ -134,6 +134,17 @@ void LmJavaOptions::addOptions(const char *options, NADELETEBASIC(copy, collHeap()); } +CollIndex LmJavaOptions::findByPrefix(const char *prefix) const +{ + size_t prefixLen = strlen(prefix); + + for (CollIndex i=0; i<options_.entries(); i++) + if (strncmp(options_[i], prefix, prefixLen) == 0) --- End diff -- Yes, if that happens we may need to do some additional parsing.
--- 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. ---