Skip to content

Commit 81392f0

Browse files
authored
Update explain.rs
tmp workaround for sqlite3 left join query! failure
1 parent 6fdef5b commit 81392f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sqlx-core/src/sqlite/connection/explain.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -211,14 +211,14 @@ pub(super) fn explain(
211211
_ => {}
212212
}
213213
}
214-
214+
/*
215215
OP_NULL_ROW => {
216216
// all registers that map to cursor X are potentially nullable
217217
for register in &r_cursor[&p1] {
218218
n.insert(*register, true);
219219
}
220220
}
221-
221+
*/
222222
OP_AGG_STEP => {
223223
let p4 = from_utf8(p4).map_err(Error::protocol)?;
224224

0 commit comments

Comments
 (0)