Github user JamesRTaylor commented on a diff in the pull request:
https://github.com/apache/phoenix/pull/268#discussion_r137628509
--- Diff:
phoenix-core/src/main/java/org/apache/phoenix/coprocessor/BaseScannerRegionObserver.java
---
@@ -109,12 +110,16 @@
/** Exposed for testing */
public static final String SCANNER_OPENED_TRACE_INFO = "Scanner opened
on server";
+ public static final String CLIENT_SIDE_UPSERT_SELECT =
"_ClientSideUpsertSelect";
+ protected Configuration rawConf;
--- End diff --
What's the reason for this new rawConf member variable? Where is it used?
---