Closed uehara-delta closed 1 year ago
Fix a problem in PostgreSQL that caused incorrect ALTER TABLE output when NOT NULL constraints were removed.
For example,
ALTER TABLE "customer" DROP CONSTRAINT ; ALTER TABLE "customer" ALTER COLUMN "customername" DROP NOT NULL;
The first line is trying to remove an unnamed NOT NULL constraint, which is unnecessary.
thanks!
Fix a problem in PostgreSQL that caused incorrect ALTER TABLE output when NOT NULL constraints were removed.
For example,
The first line is trying to remove an unnamed NOT NULL constraint, which is unnecessary.