galaxylqx opened a new issue #14061:
URL: https://github.com/apache/shardingsphere/issues/14061
## Feature Request
It is hoped that proxy is the only SQL entry. Businesses only need to access
proxy and deal with various databases later. For example, HBase is supported.
In the process of use, there is no need to use HBase protocol to operate the
back-end database
### Describe the feature you would like.
Support SQL statements
SQL
HBase
show /*+ hbase */ databases
-> cluster
show /*+ hbase */ tables
-> list
show /*+ hbase */ create table t_test
-> describe "t_test"
select /*+ hbase */ * from t_test
-> scan "t_test"
select /*+ hbase */ count(*) from t_test
-> count "t_test"
update /*+ hbase */ t_test set age = 18 where rowKey = 1 -> put
"t_test"
delete /*+ hbase */ from t_test
-> deleteall "t_test"
insert /*+ hbase */ into t_test (rowKey, v1, v2) values(1, 2, 3) -> put
"t_test",1,'rowKey:v1', 3
...
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]