Skip to content

Commit 218f638

Browse files
authored
Merge pull request #23548 from danhhz/test_slt_buildkite
sqllogictest: emit buildkite friendly section headers
2 parents 55875c0 + 9e009ca commit 218f638

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sqllogictest/src/runner.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1833,7 +1833,7 @@ pub async fn run_string(
18331833
// Transactions are currently relatively slow. Since sqllogictest runs in a single connection
18341834
// there should be no difference in having longer running transactions.
18351835
let mut in_transaction = false;
1836-
writeln!(runner.config.stdout, "==> {}", source);
1836+
writeln!(runner.config.stdout, "--- {}", source);
18371837

18381838
for record in parser.parse_records()? {
18391839
// In maximal-verbosity mode, print the query before attempting to run
@@ -1910,7 +1910,7 @@ pub async fn rewrite_file(runner: &mut Runner<'_>, filename: &Path) -> Result<()
19101910
let mut buf = RewriteBuffer::new(&input);
19111911

19121912
let mut parser = crate::parser::Parser::new(filename.to_str().unwrap_or(""), &input);
1913-
writeln!(runner.config.stdout, "==> {}", filename.display());
1913+
writeln!(runner.config.stdout, "--- {}", filename.display());
19141914
let mut in_transaction = false;
19151915

19161916
fn append_values_output(

0 commit comments

Comments
 (0)