Skip to content

Commit

Permalink
flight sql skip tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
youngsofun committed Nov 12, 2024
1 parent 7400a50 commit 4addd18
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions driver/tests/driver/temp_table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ use tokio::time::sleep;
use crate::common::DEFAULT_DSN;

async fn test_temp_table(session_token_enabled: bool) {
let dsn = option_env!("TEST_DATABEND_DSN").unwrap_or(DEFAULT_DSN);
if dsn.starts_with("databend+flight://") {
return;
}

let session_token = if session_token_enabled {
"enable"
} else {
Expand Down

0 comments on commit 4addd18

Please sign in to comment.