@@ -15,7 +15,7 @@ pub struct BackupMeta {
1515 pub version : i32 ,
1616 /// A set of files that compose a backup.
1717 /// Note: `files` is deprecated, as it bloats backupmeta. It is kept for
18- /// compatibility, so new BR can restore older backups.
18+ /// compatibility, so new BR can restore older backups.
1919 #[ prost( message, repeated, tag = "4" ) ]
2020 pub files : :: prost:: alloc:: vec:: Vec < File > ,
2121 /// An index to files contains data files.
@@ -25,14 +25,14 @@ pub struct BackupMeta {
2525 /// For full backup, the start_version equals to the end_version,
2626 /// it means point in time.
2727 /// For incremental backup, the time range is specified as
28- /// (start_version, end_version].
28+ /// (start_version, end_version\ ].
2929 #[ prost( uint64, tag = "5" ) ]
3030 pub start_version : u64 ,
3131 #[ prost( uint64, tag = "6" ) ]
3232 pub end_version : u64 ,
3333 /// Table metadata describes database and table info.
3434 /// Note: `schemas` is deprecated, as it bloats backupmeta. It is kept for
35- /// compatibility, so new BR can restore older backups.
35+ /// compatibility, so new BR can restore older backups.
3636 #[ prost( message, repeated, tag = "7" ) ]
3737 pub schemas : :: prost:: alloc:: vec:: Vec < Schema > ,
3838 /// An index to files contains Schemas.
@@ -43,16 +43,16 @@ pub struct BackupMeta {
4343 #[ prost( bool , tag = "8" ) ]
4444 pub is_raw_kv : bool ,
4545 /// Note: `raw_ranges` is deprecated, as it bloats backupmeta. It is kept for
46- /// compatibility, so new BR can restore older backups.
46+ /// compatibility, so new BR can restore older backups.
4747 #[ prost( message, repeated, tag = "9" ) ]
4848 pub raw_ranges : :: prost:: alloc:: vec:: Vec < RawRange > ,
4949 /// An index to files contains RawRanges.
5050 #[ prost( message, optional, tag = "15" ) ]
5151 pub raw_range_index : :: core:: option:: Option < MetaFile > ,
5252 /// In incremental backup, DDLs which are completed in
53- /// (lastBackupTS, backupTS] will be stored here.
53+ /// (lastBackupTS, backupTS\ ] will be stored here.
5454 /// Note: `raw_ranges` is deprecated, as it bloats backupmeta. It is kept for
55- /// compatibility, so new BR can restore older backups.
55+ /// compatibility, so new BR can restore older backups.
5656 #[ prost( bytes = "vec" , tag = "10" ) ]
5757 pub ddls : :: prost:: alloc:: vec:: Vec < u8 > ,
5858 /// An index to files contains DDLs.
@@ -332,7 +332,7 @@ pub struct AzureBlobStorage {
332332 /// If the node's environment variables($AZURE_CLIENT_ID, $AZURE_TENANT_ID, $AZURE_CLIENT_SECRET) exist,
333333 /// prefer to use token to access the azure blob.
334334 ///
335- /// See <https://docs.microsoft.com/en-us/azure/storage/common/identity-library-acquire-token?toc=/azure/storage/blobs/toc.json>
335+ /// See <https://docs.microsoft.com/en-us/azure/storage/common/identity-library-acquire-token?toc=/azure/storage/blobs/toc.json>
336336 ///
337337 /// Otherwise, if empty, try to read shared key from the node's environment variable $AZURE_STORAGE_KEY.
338338 #[ prost( string, tag = "6" ) ]
@@ -371,7 +371,7 @@ pub struct CloudDynamic {
371371#[ allow( clippy:: derive_partial_eq_without_eq) ]
372372#[ derive( Clone , PartialEq , :: prost:: Message ) ]
373373pub struct Hdfs {
374- /// a URL: hdfs:///some/path or hdfs://host:port/some/path
374+ /// a URL: hdfs:///some/path or hdfs://host:port/some/path
375375 #[ prost( string, tag = "1" ) ]
376376 pub remote : :: prost:: alloc:: string:: String ,
377377}
0 commit comments