mirror of
https://github.com/aljazceru/turso.git
synced 2026-02-23 08:55:40 +01:00
sql_generation: Fix WHERE clause generation
We're currently only generating `WHERE (TRUE)` and `WHERE (FALSE)`. Fix that.
This commit is contained in:
@@ -229,7 +229,7 @@ impl FromClause {
|
||||
|
||||
let mut join_table = JoinTable {
|
||||
tables: vec![first_table.clone()],
|
||||
rows: Vec::new(),
|
||||
rows: first_table.rows.clone(),
|
||||
};
|
||||
|
||||
for join in &self.joins {
|
||||
|
||||
Reference in New Issue
Block a user