Newly tracked file
src/sqlfluff/dialects/dialect_postgres.py
changed.
Other files ignored by Codecov
4390 | 4390 | class AlterTypeStatementSegment(BaseSegment): |
|
4391 | 4391 | """An `ALTER TYPE` statement. |
|
4392 | 4392 | ||
4393 | - | https://www.postgresql.org/docs/current/sql-createtype.html |
|
4393 | + | https://www.postgresql.org/docs/current/sql-altertype.html |
|
4394 | 4394 | """ |
|
4395 | 4395 | ||
4396 | 4396 | type = "alter_type_statement" |
4409 | 4409 | Ref("ObjectReferenceSegment"), |
|
4410 | 4410 | ), |
|
4411 | 4411 | ), |
|
4412 | + | Sequence( |
|
4413 | + | "RENAME", |
|
4414 | + | "VALUE", |
|
4415 | + | Ref("QuotedLiteralSegment"), |
|
4416 | + | "TO", |
|
4417 | + | Ref("QuotedLiteralSegment"), |
|
4418 | + | ), |
|
4412 | 4419 | Sequence( |
|
4413 | 4420 | "RENAME", |
|
4414 | 4421 | "TO", |
Files | Coverage |
---|---|
src/sqlfluff | 100.00% |
Project Totals (193 files) | 100.00% |