pub async fn select_single_field(test: &mut Test) -> Result<()>
.select(field) on a Query<List<Item>> returns a Query<List<String>> whose .exec() produces a Vec<String> of the projected column.
.select(field)
Query<List<Item>>
Query<List<String>>
.exec()
Vec<String>