fix-timezone.patch 1.2 KB

12345678910111213141516171819202122
  1. --- contrib/libs/apache/arrow/cpp/src/arrow/ipc/metadata_internal.cc (index)
  2. +++ contrib/libs/apache/arrow/cpp/src/arrow/ipc/metadata_internal.cc (working tree)
  3. @@ -315,1 +315,1 @@ Status ConcreteTypeFromFlatbuffer(flatbuf::Type type, const void* type_data,
  4. - *out = timestamp(unit, StringFromFlatbuffers(ts_type->timezone()));
  5. + *out = timestamp(unit, StringFromFlatbuffers(ts_type->time_zone()));
  6. --- contrib/libs/apache/arrow/cpp/src/generated/Schema.fbs (index)
  7. +++ contrib/libs/apache/arrow/cpp/src/generated/Schema.fbs (working tree)
  8. @@ -269,1 +269,1 @@ table Timestamp {
  9. - timezone: string;
  10. + time_zone: string;
  11. --- contrib/libs/apache/arrow/cpp/src/arrow/ipc/feather.cc (index)
  12. +++ contrib/libs/apache/arrow/cpp/src/arrow/ipc/feather.cc (working tree)
  13. @@ -210,2 +210,2 @@ class ReaderV1 : public Reader {
  14. - if (meta->timezone() != 0) {
  15. - tz = meta->timezone()->str();
  16. + if (meta->time_zone() != 0) {
  17. + tz = meta->time_zone()->str();
  18. --- contrib/libs/apache/arrow/cpp/src/generated/feather.fbs (index)
  19. +++ contrib/libs/apache/arrow/cpp/src/generated/feather.fbs (working tree)
  20. @@ -113,1 +113,1 @@ table TimestampMetadata {
  21. - timezone: string;
  22. + time_zone: string;