Skip to content

Commit

Permalink
fix: mysql tests error (#897)
Browse files Browse the repository at this point in the history
fix: mysql tests merge error
  • Loading branch information
sunng87 authored Jan 20, 2023
1 parent 302d7ec commit 9bc4c0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/servers/tests/mysql/mysql_server_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ async fn test_server_required_secure_client_plain() -> Result<()> {
let recordbatch = RecordBatch::new(schema, columns).unwrap();
let table = MemTable::new("all_datatypes", recordbatch);

let mysql_server = create_mysql_server(table, server_tls)?;
let mysql_server = create_mysql_server(table, server_tls, None)?;

let listening = "127.0.0.1:0".parse::<SocketAddr>().unwrap();
let server_addr = mysql_server.start(listening).await.unwrap();
Expand Down

0 comments on commit 9bc4c0d

Please sign in to comment.