File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -3071,7 +3071,7 @@ impl fmt::Display for CreateTable {
30713071 }
30723072}
30733073
3074- /// PostgreSQL partition bound specification for PARTITION OF.
3074+ /// PostgreSQL partition bound specification for ` PARTITION OF` .
30753075///
30763076/// Specifies partition bounds for a child partition table.
30773077///
Original file line number Diff line number Diff line change @@ -8063,7 +8063,7 @@ impl<'a> Parser<'a> {
80638063 }
80648064 }
80658065
8066- /// Parse PostgreSQL partition bound specification for PARTITION OF.
8066+ /// Parse [ForValues] of a ` PARTITION OF` clause .
80678067 ///
80688068 /// Parses: `FOR VALUES partition_bound_spec | DEFAULT`
80698069 ///
@@ -8106,7 +8106,7 @@ impl<'a> Parser<'a> {
81068106 }
81078107 }
81088108
8109- /// Parse a single partition bound value (MINVALUE, MAXVALUE, or expression) .
8109+ /// Parse a single [PartitionBoundValue] .
81108110 fn parse_partition_bound_value(&mut self) -> Result<PartitionBoundValue, ParserError> {
81118111 if self.parse_keyword(Keyword::MINVALUE) {
81128112 Ok(PartitionBoundValue::MinValue)
You can’t perform that action at this time.
0 commit comments