merge_table_schemas.h 427 B

12345678910111213141516
  1. #pragma once
  2. #include "public.h"
  3. namespace NYT::NTableClient {
  4. ////////////////////////////////////////////////////////////////////////////////
  5. // Create schema that match both two schemas.
  6. TTableSchemaPtr MergeTableSchemas(
  7. const TTableSchemaPtr& firstSchema,
  8. const TTableSchemaPtr& secondSchema);
  9. ////////////////////////////////////////////////////////////////////////////////
  10. } // namespace NYT::NTableClient