mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-02 11:39:12 +00:00
* DOCS - Prepare 1.7 Release and 1.8 SNAPSHOT * DOCS - Prepare 1.7 Release and 1.8 SNAPSHOT
955 B
955 B
Reverse Metadata
Description Management
Redshift supports description updates at all levels:
- Database level
- Schema level
- Table level
- Column level
Owner Management
Redshift supports owner management at the following levels:
- Database level
- Schema level
- Table level
Tag Management
❌ Tag management is not supported for Redshift.
Custom SQL Template
Redshift supports custom SQL templates for metadata changes. The template is interpreted using python f-strings.
Here are examples of custom SQL queries for metadata changes:
-- Update column description
COMMENT ON COLUMN {database}.{schema}.{table}.{column} IS {description};
The list of variables for custom SQL can be found here.
For more details about reverse metadata ingestion, visit our Reverse Metadata Documentation.