-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
65101: sql: changed pg_catalog data type columns to "char" to match postgres r=arulajmani a=mnovelodou Previously, some columns where is expected "char" datatype it is created as TEXT This was inadequate because some tools are expecting these columns to have "char" datatype To address this, this patch change the data types from these columns Release note (backward-incompatible change): Switched types from TEXT to "char" for compatibility with postgres in the following columns: pg_constraint (confdeltype, confmatchtype, confudptype, contype) pg_operator (oprkind) pg_prog (proargmodes) pg_rewrite (ev_enabled, ev_type) pg_trigger (tgenabled) Fixes #64434 Co-authored-by: MiguelNovelo <[email protected]>
- Loading branch information
Showing
3 changed files
with
28 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters