hbase11xsqlreader连接phoenix拼接字符串问题
- Dominant language
- Java
- Stars
- 17.4k
- Forks
- 5.7k
- PR merge metrics
- No merged PRs in 30d
Description
HbaseSQLReaderConfig修改之前:
106-109行
if (!znode.isEmpty()) {
cfg.connectionString += cfg.connectionString + ":" + znode;
cfg.zkUrl += cfg.zkUrl + ":" + znode;
}
修改后:
if (!znode.isEmpty()) {
cfg.connectionString += ":" + znode;
cfg.zkUrl += ":" + znode;
}
Contributor guide
No contributing guide indexed for this repository
Research direction
Open HbaseSQLReaderConfig and inspect lines 106-109, starting with the Phoenix connection-string construction shown in the issue. Confirm that connectionString and zkUrl append only ":" plus znode, and verify that the resulting strings no longer duplicate their existing values.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- java
- Domain
- databases
- Issue type
- Bug
- Difficulty
- 1/5
- Estimated time
- 1-3 hours
- Activity status
- Stale
- Clarity
- Clearly specified
- Newbie friendliness
- 62/100