Skip to content

Commit f5148a8

Browse files
Added doc links
1 parent bed896f commit f5148a8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/ast/ddl.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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
},

0 commit comments

Comments
 (0)