We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d6cd13 commit fd237f8Copy full SHA for fd237f8
1 file changed
datafusion-cli/src/exec.rs
@@ -70,6 +70,9 @@ pub async fn exec_from_lines(
70
71
for line in reader.lines() {
72
match line {
73
+ Ok(line) if line.starts_with("#!") => {
74
+ continue;
75
+ }
76
Ok(line) if line.starts_with("--") => {
77
continue;
78
}
0 commit comments