Skip to content

Commit

Permalink
ORC-1615: Fix Broken hyperlinks (#17)
Browse files Browse the repository at this point in the history
### What changes were proposed in this pull request?

The PR aims at fixing broken hyperlinks in the ORC Format specification

### Why are the changes needed?

The changes are need to avoid 404 errors

### How was this patch tested?

Manually verified
  • Loading branch information
paliwalashish authored Apr 27, 2024
1 parent 509c4c0 commit 6e30e63
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion specification/ORCv0.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ The metadata for ORC is stored using
[Protocol Buffers](https://s.apache.org/protobuf_encoding), which provides
the ability to add new fields without breaking readers. This document
incorporates the Protobuf definition from the
[ORC source code](https://github.com/apache/orc/blob/main/proto/orc_proto.proto) and the
[ORC source code](../src/main/proto/orc/proto/orc_proto.proto) and the
reader is encouraged to review the Protobuf encoding if they need to
understand the byte-level encoding

Expand Down
2 changes: 1 addition & 1 deletion specification/ORCv1.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ The metadata for ORC is stored using
[Protocol Buffers](https://s.apache.org/protobuf_encoding), which provides
the ability to add new fields without breaking readers. This document
incorporates the Protobuf definition from the
[ORC source code](https://github.com/apache/orc/blob/main/proto/orc_proto.proto) and the
[ORC source code](../src/main/proto/orc/proto/orc_proto.proto) and the
reader is encouraged to review the Protobuf encoding if they need to
understand the byte-level encoding

Expand Down
2 changes: 1 addition & 1 deletion specification/ORCv2.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ The metadata for ORC is stored using
[Protocol Buffers](https://s.apache.org/protobuf_encoding), which provides
the ability to add new fields without breaking readers. This document
incorporates the Protobuf definition from the
[ORC source code](https://github.com/apache/orc/blob/main/proto/orc_proto.proto) and the
[ORC source code](../src/main/proto/orc/proto/orc_proto.proto) and the
reader is encouraged to review the Protobuf encoding if they need to
understand the byte-level encoding

Expand Down
6 changes: 3 additions & 3 deletions specification/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ title: ORC Specification

There have been two released ORC file versions:

* [ORC v0](ORCv0) was released in Hive 0.11.
* [ORC v1](ORCv1) was released in Hive 0.12 and ORC 1.x.
* [ORC v0](ORCv0.md) was released in Hive 0.11.
* [ORC v1](ORCv1.md) was released in Hive 0.12 and ORC 1.x.

Each version of the library will detect the format version and use
the appropriate reader. The library can also write the older versions
Expand All @@ -15,4 +15,4 @@ clusters can read correctly.

We are working on a new version of the file format:

* [ORC v2](ORCv2) is a work in progress and is rapidly evolving.
* [ORC v2](ORCv2.md) is a work in progress and is rapidly evolving.

0 comments on commit 6e30e63

Please sign in to comment.