mirror of
https://github.com/aljazceru/turso.git
synced 2026-02-02 06:44:23 +01:00
schema: fix extra whitespace in BTreeTable::from_sql
This commit is contained in:
@@ -430,7 +430,7 @@ impl BTreeTable {
|
||||
}
|
||||
|
||||
pub fn to_sql(&self) -> String {
|
||||
let mut sql = format!("CREATE TABLE {} (", self.name);
|
||||
let mut sql = format!("CREATE TABLE {}(", self.name);
|
||||
for (i, column) in self.columns.iter().enumerate() {
|
||||
if i > 0 {
|
||||
sql.push_str(", ");
|
||||
|
||||
Reference in New Issue
Block a user