Hello fellow Ignite developers!
As you may already know, I am building Ignite thin client API library in
Python. I have reached the point where all applicable operations are
implemented. All data types are also fully covered, except for some
variants of Complex object.
I have been already told that Ignite stores its SQL tables using a
Complex object data type. It lets me write parser and builder for that
exact variant of Complex object used for an SQL row:
- compact footer approach, all fields are named.
Now I wonder if I can find any other real-life usage example of Complex
objects
- with no schema,
- with full schema in footer,
- with raw data.
Your advice is greatly appreciated.
Ideally I should be able to automate the creation of various kinds of
Complex objects to build my unit tests upon it.
Dmitry