You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by GitBox <gi...@apache.org> on 2019/11/17 18:28:02 UTC

[GitHub] [calcite] XuQianJin-Stars opened a new pull request #1591: [CALCITE-3510] Implement sqlquery for Redis adapter

XuQianJin-Stars opened a new pull request #1591: [CALCITE-3510] Implement sqlquery for Redis adapter
URL: https://github.com/apache/calcite/pull/1591
 
 
   127.0.0.1:6379> LPUSH csv_02 "10:Sales"
   sqlline> select * from "csv_02";
   +--------+----------+
   | DEPTNO |   NAME   |
   +--------+----------+
   | 20          | "Sales2" |
   | 10           | "Sales1" |
   +--------+----------+
   127.0.0.1:6379> LPUSH json_02 "{"DEPTNO":10,"NAME":"Sales1"}"
   sqlline> select * from "json_02";
   +--------+----------+
   | DEPTNO |   NAME   |
   +--------+----------+
   | 20          | "Sales2" |
   | 10           | "Sales1" |
   +--------+----------+
   
   127.0.0.1:6379> LPUSH raw_02 "book1"
   sqlline> select * from "raw_02";
   +--------+
   | KEY       |
   +--------+
   | 20         | 
   | 10          | 
   +--------+

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services