New columns in DESCRIBE command output are no longer treated as behavior changes

Beginning October 19, 2026, new columns in the output of DESCRIBE <object> commands are no longer treated as behavior changes.

When a new column is added to the output of a DESCRIBE command, the change will no longer be included in a behavior change bundle, and the change will no longer be announced with the other behavior changes. These types of changes will be introduced in server releases and feature updates.

If you depend on an exact column list, introducing a new column may cause unexpected problems. To avoid this, update your scripts to select specific columns from the DESCRIBE command output instead of relying on all columns.

To select specific columns from the output of a DESCRIBE command, you can use the pipe operator. See the example in Select a list of columns for the output of a SHOW command.