We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 742ca86 commit e057f2eCopy full SHA for e057f2e
tests/sqllogictests/src/main.rs
@@ -63,19 +63,19 @@ use std::sync::LazyLock;
63
static HYBRID_CONFIGS: LazyLock<Vec<(Box<ClientType>, usize)>> = LazyLock::new(|| {
64
vec![
65
(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
- // ),
73
(
74
Box::new(ClientType::Ttc(
75
- "ghcr.io/forsaken628/ttc-go:latest".to_string(),
+ "datafuselabs/ttc-rust:latest".to_string(),
76
TTC_PORT_START,
77
)),
78
- 6,
+ 5,
+ ),
+ (
+ Box::new(ClientType::Ttc(
+ "ghcr.io/databendlabs/ttc-go:latest".to_string(),
+ TTC_PORT_START + 1,
+ )),
79
),
80
]
81
});
0 commit comments