-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for LONG, BINARY types with rust client #75
Comments
The Rust client is an ILP client. ILP is a text protocol that supports a subset of all the QuestDB types: Oher types are targeted via datatypes conversions when the server receives the data. The general approach here is to issue a SQL In other words, if you send an integer, QuestDB will generally "guess" that it's an INT, but you can force it to be a SHORT or a LONG providing a schema in advance. If you've created the table already, use an
|
It feels like my limitations are mainly with the client then. For example I have a couple |
Any update on this? |
Is there an accepted approach in Rust to write LONG / LONG256 / BINARY types using the Buffer's provided?
The text was updated successfully, but these errors were encountered: