Skip to content

Commit e057f2e

Browse files
authored
chore(ci): fix intergration ttc-go (#17363)
chore(ci): fix intergration ttc-gc
1 parent 742ca86 commit e057f2e

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

tests/sqllogictests/src/main.rs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -63,19 +63,19 @@ use std::sync::LazyLock;
6363
static HYBRID_CONFIGS: LazyLock<Vec<(Box<ClientType>, usize)>> = LazyLock::new(|| {
6464
vec![
6565
(Box::new(ClientType::MySQL), 3),
66-
// (
67-
// Box::new(ClientType::Ttc(
68-
// "datafuselabs/ttc-rust:latest".to_string(),
69-
// TTC_PORT_START,
70-
// )),
71-
// 1,
72-
// ),
7366
(
7467
Box::new(ClientType::Ttc(
75-
"ghcr.io/forsaken628/ttc-go:latest".to_string(),
68+
"datafuselabs/ttc-rust:latest".to_string(),
7669
TTC_PORT_START,
7770
)),
78-
6,
71+
5,
72+
),
73+
(
74+
Box::new(ClientType::Ttc(
75+
"ghcr.io/databendlabs/ttc-go:latest".to_string(),
76+
TTC_PORT_START + 1,
77+
)),
78+
5,
7979
),
8080
]
8181
});

0 commit comments

Comments
 (0)