mirror of
https://github.com/apache/superset.git
synced 2026-04-22 17:45:21 +00:00
fix: column values with NaN (#26946)
This commit is contained in:
@@ -602,7 +602,14 @@ def test_get_samples_with_filters(test_client, login_as_admin, virtual_dataset):
|
||||
},
|
||||
)
|
||||
assert rv.status_code == 200
|
||||
assert rv.json["result"]["colnames"] == ["col1", "col2", "col3", "col4", "col5"]
|
||||
assert rv.json["result"]["colnames"] == [
|
||||
"col1",
|
||||
"col2",
|
||||
"col3",
|
||||
"col4",
|
||||
"col5",
|
||||
"col6",
|
||||
]
|
||||
assert rv.json["result"]["rowcount"] == 1
|
||||
|
||||
# empty results
|
||||
|
||||
Reference in New Issue
Block a user