You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The defaults for the dataset should have been set according to the docs:
column_delimiter - (Optional) The column delimiter. Defaults to ,.
row_delimiter - (Optional) The row delimiter. Defaults to any of the following values on read: \r\n, \r, \n, and \n or \r\n on write by mapping data flow and Copy activity respectively.
encoding - (Optional) The encoding format for the file.
quote_character - (Optional) The quote character. Defaults to ".
escape_character - (Optional) The escape character. Defaults to \.
The pertinent keys in the JSON object (columnDelimiter, escapeChar, quoteChar, rowDelimiter) are set as empty strings instead of being left absent, or set to sensible defaults. This means that there are no defaults.
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
Community Note
Terraform (and AzureRM Provider) Version
Affected Resource(s)
azurerm_data_factory_dataset_delimited_text
Terraform Configuration Files
Debug Output
N/A
Panic Output
N/A
Expected Behaviour
The defaults for the dataset should have been set according to the docs:
column_delimiter
- (Optional) The column delimiter. Defaults to,
.row_delimiter
- (Optional) The row delimiter. Defaults to any of the following values on read:\r\n
,\r
,\n
, and\n
or\r\n
on write by mapping data flow and Copy activity respectively.encoding
- (Optional) The encoding format for the file.quote_character
- (Optional) The quote character. Defaults to"
.escape_character
- (Optional) The escape character. Defaults to\
.Which looks like this in Data Factory:
With the following JSON definition:
Actual Behaviour
The pertinent keys in the JSON object (
columnDelimiter
,escapeChar
,quoteChar
,rowDelimiter
) are set as empty strings instead of being left absent, or set to sensible defaults. This means that there are no defaults.Which looks like this in Data Factory:
With the following JSON definition:
Steps to Reproduce
terraform apply
Important Factoids
N/A
References
N/A
The text was updated successfully, but these errors were encountered: