| trigger_tag_automatic_creation |
+ -- Use named argument
+ CALL [catalog.]sys.trigger_tag_automatic_creation(`table` => 'identifier')
+ CALL [catalog.]sys.trigger_tag_automatic_creation(`table` => 'identifier', force => false)
+ -- Use indexed argument
CALL [catalog.]sys.trigger_tag_automatic_creation('identifier')
+ CALL [catalog.]sys.trigger_tag_automatic_creation('identifier', false)
|
Trigger the tag automatic creation. Arguments:
table: the target table identifier. Cannot be empty.
+ force: force creating the auto-tag when it's after tag.creation-delay even no data exits. Default false.
|
- CALL sys.trigger_tag_automatic_creation(table => 'default.T')
+ CALL sys.trigger_tag_automatic_creation(table => 'default.T')
+ CALL sys.trigger_tag_automatic_creation(table => 'default.T', force => false)
|