Columns are ignored if they are not supplied in the first row for that table in the dataset
See original GitHub issueThis issue occurs again: https://github.com/database-rider/database-rider/issues/34
In this case, column 3 of row 2 isn’t persisted:
<table1 column1="row1col1" column2="row1col2"/>
<table1 column1="row2col1" column2="row2col2" column3="row2col3"/>
It is when I just change the order:
<table1 column1="row2col1" column2="row2col2" column3="row2col3"/>
<table1 column1="row1col1" column2="row1col2"/>
The order shouldn’t matter.
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Troubleshooting skipped row errors - Amazon QuickSight
When a saved dataset reports skipped rows, you can view the errors so you can take action to fix the issues. To view...
Read more >Package 'data.table'
ignore.row.order. A logical indicating whether or not to ignore rows order in data.table. This option requires datasets to use data types on ...
Read more >Loading CSV data from Cloud Storage | BigQuery
This option applies only to CSV and JSON files. If you want to ignore values in a row that are not present in...
Read more >SUMMARIZECOLUMNS function (DAX) - Microsoft Learn
A table which includes combinations of values from the supplied columns based on the grouping specified. Only rows for which at least one...
Read more >Read a delimited file (including CSV and TSV) into a tibble
If NULL (the default) only show the column types if they are not explicitly supplied by the col_types argument. skip_empty_rows. Should blank rows...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi guys, looking at the PR, it was fixed for YAML dataset which is maintained in this repo.
For XML we use standard dbunit XML datasets so maybe consider opening an issue at dbunit project
Closing as it’s not related to DBRider