Optional. Controls whether or not default values for metadata columns are included. Valid values are:
true
. Default values are provided for metadata columns that have the INFA* and DTL__* prefixes. You do not need to provide the column name, type, or value.
false
. Default values are not provided for these metadata columns. You must specify the column name, type, and value for the metadata columns you want to test in the custom pattern data file.
If you set include_default_metadata_columns =true and also provide values in the custom data pattern file for the same default metadata columns, unpredictable results might occur.
In the following example, this parameter is set to true:
#example definition for tableA
[include_default_metadata_columns = true,
table_name = tableA,
...
With this setting, the following example metadata values are generated:
Column Name: DTL__CAPXACTION
Column Type: string
Column Value: dtlaction
Column Name: DTL__CAPXRESTART1
Column Type: string
Column Value: restart1ABCDEF
Column Name: DTL__CAPXRESTART2
Column Type: string
Column Value: restart2GHIJK
In the following example, this parameter is set to false and you must provide the metadata column information:
[include_default_metadata_columns = false,
table_name = tableA,
column_name = DTL__CAPXUSER, column_type = string, column_value = "USERID",
column_name = "AColumn_1", column_type = "string", column_value = "This is column 1 data for tableA",
column_name = "AColumn_2", column_type = "string", column_value = "This is column 2 data for tableA"
]