Skip to content

Commit

Permalink
fix: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Oreilles committed Nov 14, 2023
1 parent bbe5a50 commit 61fe634
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,9 @@ impl SqlRenderer for SqliteFlavour {
let column_name = col.name();
let SQLiteType::Geometry(geom) = col.column_native_type().unwrap();
let geom = geom.expect("Couldn't get geometry column type informations");
write!(
writeln!(
result,
"SELECT RecoverGeometryColumn('{table_name}', '{column_name}', {srid}, '{ty}', '{dims}');\n",
"SELECT RecoverGeometryColumn('{table_name}', '{column_name}', {srid}, '{ty}', '{dims}');",
srid = geom.srid,
ty = geom.ty.as_2d(),
dims = geom.ty.dimensions(),
Expand Down

0 comments on commit 61fe634

Please sign in to comment.