We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8532dd3 commit 9ae0afbCopy full SHA for 9ae0afb
1 file changed
src/ast/ddl.rs
@@ -351,10 +351,13 @@ pub enum AlterTableOperation {
351
ValidateConstraint {
352
name: Ident,
353
},
354
- /// `SET ( storage_parameter [= value] [, ... ] )`
+ /// Arbitrary parenthesized `SET` options.
355
///
356
- /// Note: this is a PostgreSQL-specific operation.
357
- /// Please refer to [PostgreSQL documentation](https://www.postgresql.org/docs/current/sql-altertable.html)
+ /// Example:
+ /// ```sql
358
+ /// SET (scale_factor = 0.01, threshold = 500)`
359
+ /// ```
360
+ /// [PostgreSQL](https://www.postgresql.org/docs/current/sql-altertable.html)
361
SetOptionsParens {
362
options: Vec<SqlOption>,
363
0 commit comments