(client: &mut FlightSqlServiceClient<Channel>)
| 833 | } |
| 834 | |
| 835 | async fn auth_client(client: &mut FlightSqlServiceClient<Channel>) { |
| 836 | let token = client.handshake("admin", "password").await.unwrap(); |
| 837 | client.set_token(String::from_utf8(token.to_vec()).unwrap()); |
| 838 | } |
| 839 | |
| 840 | async fn test_uds_client<F, C>(f: F) |
| 841 | where |