diff --git a/tests/sqllogictests/src/main.rs b/tests/sqllogictests/src/main.rs index 67e3489bc5637..ab30305631ae7 100644 --- a/tests/sqllogictests/src/main.rs +++ b/tests/sqllogictests/src/main.rs @@ -63,19 +63,19 @@ use std::sync::LazyLock; static HYBRID_CONFIGS: LazyLock, usize)>> = LazyLock::new(|| { vec![ (Box::new(ClientType::MySQL), 3), - // ( - // Box::new(ClientType::Ttc( - // "datafuselabs/ttc-rust:latest".to_string(), - // TTC_PORT_START, - // )), - // 1, - // ), ( Box::new(ClientType::Ttc( - "ghcr.io/forsaken628/ttc-go:latest".to_string(), + "datafuselabs/ttc-rust:latest".to_string(), TTC_PORT_START, )), - 6, + 5, + ), + ( + Box::new(ClientType::Ttc( + "ghcr.io/databendlabs/ttc-go:latest".to_string(), + TTC_PORT_START + 1, + )), + 5, ), ] });