Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2024 07:31 PM
Will a deep clone of a table also clone the table's tags?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2024 09:17 PM
Hi @acegerace ,
By default, table Tags are not included in the cloned metadata. This can be observed by cloning the table and confirming in the `information_schema.table_tags` system table.
If this is not the desired behavior, the tags could be set on the cloned table using the Alter Table statement such as: `
`ALTER TABLE clone_table SET TAGS ('new' = 'value')`.
Thank you.