Changeset: 4a6a877396f4 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=4a6a877396f4
Modified Files:
geom/monetdb5/geom.mal
Branch: default
Log Message:
Use correct MAL module.
diffs (17 lines):
diff --git a/geom/monetdb5/geom.mal b/geom/monetdb5/geom.mal
--- a/geom/monetdb5/geom.mal
+++ b/geom/monetdb5/geom.mal
@@ -666,11 +666,11 @@ comment "Returns the number of geometrie
command NumRings(w:bat[:wkb], exterior:int) :bat[:int] address wkbNumRings_bat
comment "Returns the number of interior rings+exterior on the first polygon of
the geometry";
function NumInteriorRings(w:bat[:wkb]) :bat[:int];
- x := geom.NumRings(w, 0);
+ x := batgeom.NumRings(w, 0);
return x;
end NumInteriorRings;
function NRings(w:bat[:wkb]) :bat[:int];
- x := geom.NumRings(w, 1);
+ x := batgeom.NumRings(w, 1);
return x;
end NRings;
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list