File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -2032,12 +2032,16 @@ pub enum UserDefinedTypeRepresentation {
20322032 /// Note: this is PostgreSQL-specific. See <https://www.postgresql.org/docs/current/sql-createtype.html>
20332033 Enum { labels : Vec < Ident > } ,
20342034 /// Range type: `CREATE TYPE name AS RANGE (options)`
2035+ ///
2036+ /// Note: this is PostgreSQL-specific. See <https://www.postgresql.org/docs/current/sql-createtype.html>
20352037 Range {
20362038 options : Vec < UserDefinedTypeRangeOption > ,
20372039 } ,
20382040 /// Base type (SQL definition): `CREATE TYPE name (options)`
20392041 ///
20402042 /// Note the lack of `AS` keyword
2043+ ///
2044+ /// Note: this is PostgreSQL-specific. See <https://www.postgresql.org/docs/current/sql-createtype.html>
20412045 SqlDefinition {
20422046 options : Vec < UserDefinedTypeSqlDefinitionOption > ,
20432047 } ,
You can’t perform that action at this time.
0 commit comments