Skip to content

Commit

Permalink
Remove geography support bit from Spatialite
Browse files Browse the repository at this point in the history
  • Loading branch information
roji committed May 27, 2022
1 parent 67525ce commit 5ea42c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,6 @@ public SqliteNetTopologySuiteAggregateMethodTranslator(
},
nullable: true,
argumentsPropagateNullability: new[] { true },
typeof(Geometry),
sqlExpression.TypeMapping is null
? null
: _typeMappingSource.FindMapping(typeof(Geometry), sqlExpression.TypeMapping.StoreType));
typeof(Geometry));
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ public override async Task ConvexHull_aggregate(bool async)
await base.ConvexHull_aggregate(async);

AssertSql(
@"SELECT ""p"".""Group"" AS ""Id"", ST_ConvexHull(Collect(""p"".""Point"")) AS ""ConvexHull""
@"SELECT ""p"".""Group"" AS ""Id"", ConvexHull(Collect(""p"".""Point"")) AS ""ConvexHull""
FROM ""PointEntity"" AS ""p""
WHERE ""p"".""Point"" IS NOT NULL
GROUP BY ""p"".""Group""");
Expand Down

0 comments on commit 5ea42c9

Please sign in to comment.