Changeset: df18ca185b41 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=df18ca185b41
Modified Files:
        sql/backends/monet5/vaults/geotiff/geotiff.c
Branch: sciql
Log Message:

fix compilation issue after merge

the signature of count_col has been changed


diffs (21 lines):

diff --git a/sql/backends/monet5/vaults/geotiff/geotiff.c 
b/sql/backends/monet5/vaults/geotiff/geotiff.c
--- a/sql/backends/monet5/vaults/geotiff/geotiff.c
+++ b/sql/backends/monet5/vaults/geotiff/geotiff.c
@@ -97,7 +97,7 @@ GTIFFattach(Client cntxt, MalBlkPtr mb, 
 
        /* add row in the rs.files catalog table */
        col = mvc_bind_column(m, fls, "fileid");
-       fid = store_funcs.count_col(col) + 1;
+       fid = store_funcs.count_col(col, 1) + 1;
 
        snprintf(buf, BUFSIZ, INSFILE, (int)fid, fname, 0);
        if ( ( msg = SQLstatementIntern(cntxt,&s,"geotiff.attach",TRUE,FALSE)) 
!= MAL_SUCCEED)
@@ -106,7 +106,7 @@ GTIFFattach(Client cntxt, MalBlkPtr mb, 
 
        /* add row in the rs.catalog catalog table */
        col = mvc_bind_column(m, cat, "imageid");
-       imid = store_funcs.count_col(col) + 1;
+       imid = store_funcs.count_col(col, 1) + 1;
        TIFFGetField(tif, TIFFTAG_IMAGEWIDTH, &wid);
        TIFFGetField(tif, TIFFTAG_IMAGELENGTH, &len);
        TIFFGetField(tif, TIFFTAG_BITSPERSAMPLE, &bps);
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to