fix: customize column description limit size in db_engine_spec (#34808)

(cherry picked from commit 75af53dc3d)
This commit is contained in:
JUST.in DO IT
2025-08-22 10:00:39 -07:00
committed by Joe Li
parent 548d9e6f7b
commit 4cc6984ebf
9 changed files with 67 additions and 20 deletions

View File

@@ -718,7 +718,14 @@ def test_get_samples_with_filters(test_client, login_as_admin, virtual_dataset):
},
)
assert rv.status_code == 200
assert rv.json["result"]["colnames"] == []
assert rv.json["result"]["colnames"] == [
"col1",
"col2",
"col3",
"col4",
"col5",
"col6",
]
assert rv.json["result"]["rowcount"] == 0