| 3004 | #ifdef TILEDB_SERIALIZATION |
| 3005 | |
| 3006 | shared_ptr<ArraySchema> EnumerationFx::ser_des_array_schema( |
| 3007 | shared_ptr<const ArraySchema> schema, |
| 3008 | bool client_side, |
| 3009 | SerializationType stype) { |
| 3010 | SerializationBuffer buf{tiledb::test::get_test_memory_tracker()->get_resource( |
| 3011 | MemoryType::SERIALIZATION_BUFFER)}; |
| 3012 | throw_if_not_ok(serialization::array_schema_serialize( |
| 3013 | *(schema.get()), stype, buf, client_side)); |
| 3014 | return serialization::array_schema_deserialize(stype, buf, memory_tracker_); |
| 3015 | } |
| 3016 | |
| 3017 | shared_ptr<ArraySchemaEvolution> EnumerationFx::ser_des_array_schema_evolution( |
| 3018 | ArraySchemaEvolution* ase, bool client_side, SerializationType stype) { |
nothing calls this directly
no test coverage detected