-
Notifications
You must be signed in to change notification settings - Fork 33
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
Can't extend Column type #32
Comments
Yeah, the Column type is really wide (a lot of methods), potentially in flux and still not ready to go public. I do have thoughts on publishing a smaller (adapter) interface that outsiders can implement though. Can you give the some input on the use case you have? It would be valuable to understand what your use case is to help in shaping such an API! Could you provide some details? Also, if you would like to have a go at this I'd be happy to guide you! |
Ok, the database we use is Clickhouse. Its data type has json, array。for example. |
OK, so for your specific case do I understand it correctly that you would like to have a byte-container, more or less, for values to be included but not acted upon/processed? That would be a slightly different use case than the fully general column that I've also thought a bit about. |
Hi, the dataframe library is wonerful. But I encounter some problems. The Column has some type int, string, float. But It is not enough. I find the Column interface, but it locate in internal package. I can't implement it to extend more type.
What should I do if I want to save more type?
The text was updated successfully, but these errors were encountered: