Postgres wire protocol for the cache #2183
Closed
abcpro1
started this conversation in
Feature Requests
Replies: 2 comments 1 reply
-
We just had a call and the conclusion is that implementing the sql engine using datafusion is the way to go. For datafusion, we just have to see if we can implement the And then we support whatever sql features that datafusion gives us. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Datafusion has no JSON support (no JSON data type and no JSON functions). |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Many databases implement the Postgres wire protocol for their SQL interface. Postgres wire protocol automatically gives access to JDBC, ODBC, the
psql
command line client, in addition to all other existing Postgres clients.If we put a SQL interface on the cache, what SQL features will we support? Currently, in gRPC and REST we have
limit
,offset
andfilter
.Postgres wire protocol also supports streaming. Will we also support this?
Beta Was this translation helpful? Give feedback.
All reactions