PHOENIX-1869 Set default to not use joni regex library
Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/007361b6 Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/007361b6 Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/007361b6 Branch: refs/heads/calcite Commit: 007361b61b511ffa95ebe3bc0d015c148a4078e4 Parents: 2952250 Author: James Taylor <[email protected]> Authored: Wed Apr 15 08:50:23 2015 -0700 Committer: James Taylor <[email protected]> Committed: Wed Apr 15 08:50:23 2015 -0700 ---------------------------------------------------------------------- .../main/java/org/apache/phoenix/query/QueryServicesOptions.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/007361b6/phoenix-core/src/main/java/org/apache/phoenix/query/QueryServicesOptions.java ---------------------------------------------------------------------- diff --git a/phoenix-core/src/main/java/org/apache/phoenix/query/QueryServicesOptions.java b/phoenix-core/src/main/java/org/apache/phoenix/query/QueryServicesOptions.java index 5cc4fa7..e15b018 100644 --- a/phoenix-core/src/main/java/org/apache/phoenix/query/QueryServicesOptions.java +++ b/phoenix-core/src/main/java/org/apache/phoenix/query/QueryServicesOptions.java @@ -193,7 +193,7 @@ public class QueryServicesOptions { public static final String DEFAULT_CONSISTENCY_LEVEL = Consistency.STRONG.toString(); - public static final boolean DEFAULT_USE_BYTE_BASED_REGEX = true; + public static final boolean DEFAULT_USE_BYTE_BASED_REGEX = false; private final Configuration config;
