Changeset: 0201f165ef5b for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=0201f165ef5b
Modified Files:
        geom/monetdb5/geom.mal
Branch: default
Log Message:

A type and precision.
MAL functions names are resolved against the latest module name.
Missing ';' cause incorrect parsing.


diffs (32 lines):

diff --git a/geom/monetdb5/geom.mal b/geom/monetdb5/geom.mal
--- a/geom/monetdb5/geom.mal
+++ b/geom/monetdb5/geom.mal
@@ -156,11 +156,11 @@ end GeomCollFromText;
 command NumRings(w:wkb, exterior:int) :int address wkbNumRings
 comment "Returns the number of interior rings+exterior on the first polygon of 
the geometry";
 function NumInteriorRings(w:wkb) :int;
-       x := NumRings(w, 0);
+       x := geom.NumRings(w, 0);
        return x;
-end NumInteriorRings
+end NumInteriorRings;
 function NRings(w:wkb) :int;
-       x := NumRings(w, 1);
+       x := geom.NumRings(w, 1);
        return x;
 end NRings;
 
@@ -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 := NumRings(w, 0);
+       x := geom.NumRings(w, 0);
        return x;
 end NumInteriorRings
 function NRings(w:bat[:wkb]) :bat[:int];
-       x := NumRings(w, 1);
+       x := geom.NumRings(w, 1);
        return x;
 end NRings;
 
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to