You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@calcite.apache.org by "Forward Xu (Jira)" <ji...@apache.org> on 2019/11/17 17:44:00 UTC

[jira] [Updated] (CALCITE-3510) Implement sqlquery for Redis adapter

     [ https://issues.apache.org/jira/browse/CALCITE-3510?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Forward Xu updated CALCITE-3510:
--------------------------------
    Description: 
127.0.0.1:6379> LPUSH csv_02 "10:Sales"
sqlline> select * from "csv_02";
||DEPTNO||NAME||
|20|Sales|

127.0.0.1:6379> LPUSH json_02 "{"DEPTNO":10,"NAME":"Sales1"}"
sqlline> select * from "json_02";
||DEPTNO||NAME||
|20|Sales|

127.0.0.1:6379> LPUSH raw_02 "book1"
sqlline> select * from "raw_02";
||key||
|book1|

  was:
sqlline> select * from "csv_02";
+--------+-------+
| DEPTNO | NAME |
+--------+-------+
| 20 | Sales |
| 10 | Sales |
+--------+-------+
2 rows selected (0.014 seconds)


> Implement sqlquery for Redis adapter
> ------------------------------------
>
>                 Key: CALCITE-3510
>                 URL: https://issues.apache.org/jira/browse/CALCITE-3510
>             Project: Calcite
>          Issue Type: New Feature
>            Reporter: Forward Xu
>            Priority: Major
>
> 127.0.0.1:6379> LPUSH csv_02 "10:Sales"
> sqlline> select * from "csv_02";
> ||DEPTNO||NAME||
> |20|Sales|
> 127.0.0.1:6379> LPUSH json_02 "{"DEPTNO":10,"NAME":"Sales1"}"
> sqlline> select * from "json_02";
> ||DEPTNO||NAME||
> |20|Sales|
> 127.0.0.1:6379> LPUSH raw_02 "book1"
> sqlline> select * from "raw_02";
> ||key||
> |book1|



--
This message was sent by Atlassian Jira
(v8.3.4#803005)