Skip to content

Commit b9562b9

Browse files
Rachelintalamb
andauthored
fix doc ci in latest rust nightly version (#6012)
* allow rustdoc::unportable_markdown in arrow-flight. * fix doc in sql_info.rs. * reduce scope of lint disable --------- Co-authored-by: Andrew Lamb <[email protected]>
1 parent a85768d commit b9562b9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

arrow-flight/src/sql/metadata/sql_info.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ impl SqlInfoName for u32 {
148148
/// * int32_to_int32_list_map: map<key: int32, value: list<$data$: int32>>
149149
/// * >
150150
/// ```
151-
///[flightsql]: (https://github.com/apache/arrow/blob/f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3/format/FlightSql.proto#L32-L43
151+
///[flightsql]: https://github.com/apache/arrow/blob/f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3/format/FlightSql.proto#L32-L43
152152
///[Union Spec]: https://arrow.apache.org/docs/format/Columnar.html#dense-union
153153
struct SqlInfoUnionBuilder {
154154
// Values for each child type
@@ -361,7 +361,7 @@ impl SqlInfoDataBuilder {
361361

362362
/// Encode the contents of this list according to the [FlightSQL spec]
363363
///
364-
/// [FlightSQL spec]: (https://github.com/apache/arrow/blob/f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3/format/FlightSql.proto#L32-L43
364+
/// [FlightSQL spec]: https://github.com/apache/arrow/blob/f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3/format/FlightSql.proto#L32-L43
365365
pub fn build(self) -> Result<SqlInfoData> {
366366
let mut name_builder = UInt32Builder::new();
367367
let mut value_builder = SqlInfoUnionBuilder::new();

arrow-flight/src/sql/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ use prost::Message;
4545

4646
mod gen {
4747
#![allow(clippy::all)]
48+
#![allow(rustdoc::unportable_markdown)]
4849
include!("arrow.flight.protocol.sql.rs");
4950
}
5051

0 commit comments

Comments
 (0)