-
Notifications
You must be signed in to change notification settings - Fork 688
Closed
Description
UNION and UNION ALL only gives data from first table when source are HTML tables while rows from the second table are empty.
Please see the issue in action at: http://jsfiddle.net/yp83t1p9/
The problem is illustrated here where the last "rows" are empty:
[
{
"ID": "ID",
"Name": "Name",
"Month": "Month",
"Savings": "Savings"
},
{
"ID": "111",
"Name": "John",
"Month": "January",
"Savings": "$100"
},
{
"ID": "122",
"Name": "Rianna",
"Month": "Feb",
"Savings": "$200"
},
{
"ID": "133",
"Name": "Michael",
"Month": "Mar",
"Savings": "$300"
},
{},
{},
{},
{}
]Copilot