-
Notifications
You must be signed in to change notification settings - Fork 26
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 new Datatypes #79
Comments
There is also missing support for IPv4. Just stumbled upon this type in my CH database and RClickhouse refused to select it... |
@Lupus thank you very much for your suggestion, it has been added to the todos |
Can you add support for u\int128, u\int256? |
Since R does not directly support bigger integer values, u\int128 and u\int256 are not that easy to implement. We would have to rely on additional packages. We'll re-evaluate existing packages and check if it is feasible. |
There still seems to be some problems with decimals for me:
|
Indeed, Decimals, especially those with custom precision, are not yet supported. There is no native R type that would fit reasonably well, but there are some third-party packages. Suppose your analyses heavily rely on these data types. In that case, I recommend doing most of these calculations directly in SQL and using other data types (e.g., floats) if possible. In the long run, we'll add support based on third-party packages. |
Thanks for your reply! Due to permission issues, I can't modify the data type directly. Doing calculations directly in SQL is a feasible approach. But luckily, I have tried another solution that might be better, ODBC, which means you may need to install the ODBC driver first. For more specific details, see the Posit Solutions. Hope this helps people who have the same difficulties as me. : ) |
New Datatypes to be added
Enhancements
The text was updated successfully, but these errors were encountered: