Closed rotten closed 3 years ago
It looks to me that you're missing to build the object returned in the builder. You are probably doing this:
ColumnBuilder("id", "string", "col comment")
instead of this (the right way):
ColumnBuilder("id", "string", "col comment").build()
The build method will return the Thrift object that the client requires.
Indeed! That was it. Thanks!
I could use a hint as to what might throw this error out of the Thrift client. I'm using thrift version 0.13.0 with this.
I'm mostly following the examples for building a table.