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: [email protected] With regards, Apache Git Services
