Skip to content

Commit

Permalink
uncomment ignored tests
Browse files Browse the repository at this point in the history
Signed-off-by: Ruihang Xia <waynestxia@gmail.com>
  • Loading branch information
waynexia committed Sep 26, 2023
1 parent 2197f70 commit 1342c40
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions tests-integration/tests/sql.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,10 @@ macro_rules! sql_tests {
$service,

test_mysql_auth,
// ignore: https://github.com/GreptimeTeam/greptimedb/issues/2445
// test_mysql_crud,
test_mysql_crud,
test_postgres_auth,
// ignore: https://github.com/GreptimeTeam/greptimedb/issues/2445
// test_postgres_crud,
// ignore: https://github.com/GreptimeTeam/greptimedb/issues/2445
// test_postgres_parameter_inference,
test_postgres_crud,
test_postgres_parameter_inference,
);
)*
};
Expand Down Expand Up @@ -123,7 +120,6 @@ pub async fn test_mysql_auth(store_type: StorageType) {
guard.remove_all().await;
}

#[allow(dead_code)]
pub async fn test_mysql_crud(store_type: StorageType) {
common_telemetry::init_default_ut_logging();

Expand Down Expand Up @@ -270,7 +266,6 @@ pub async fn test_postgres_auth(store_type: StorageType) {
guard.remove_all().await;
}

#[allow(dead_code)]
pub async fn test_postgres_crud(store_type: StorageType) {
let (addr, mut guard, fe_pg_server) = setup_pg_server(store_type, "sql_crud").await;

Expand Down Expand Up @@ -347,7 +342,6 @@ pub async fn test_postgres_crud(store_type: StorageType) {
guard.remove_all().await;
}

#[allow(dead_code)]
pub async fn test_postgres_parameter_inference(store_type: StorageType) {
let (addr, mut guard, fe_pg_server) = setup_pg_server(store_type, "sql_inference").await;

Expand Down

0 comments on commit 1342c40

Please sign in to comment.