Changeset: 3a440b2c7f3e for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=3a440b2c7f3e
Modified Files:
        sql/backends/monet5/vaults/lidar/lidar.c
Branch: data-vaults
Log Message:

[LiDAR] Fix some function strings


diffs (38 lines):

diff --git a/sql/backends/monet5/vaults/lidar/lidar.c 
b/sql/backends/monet5/vaults/lidar/lidar.c
--- a/sql/backends/monet5/vaults/lidar/lidar.c
+++ b/sql/backends/monet5/vaults/lidar/lidar.c
@@ -612,7 +612,7 @@ LIDARopenFile(str fname)
        res->hi = NULL;
        /* check if file exists */
        if (access(fname, F_OK) == -1) {
-               res->msg = createException(MAL, "lidar.test", "File %s not 
found.", fname);
+               res->msg = createException(MAL, "lidar.openfile", "File %s not 
found.", fname);
                return res;
        }
 
@@ -622,7 +622,7 @@ LIDARopenFile(str fname)
        reader = LASReader_Create(fname);
        MT_lock_unset(&mt_lidar_lock);
        if (LASError_GetErrorCount() != 0) {
-               res->msg = createException(MAL, "lidar.test", "Error accessing 
LIDAR file %s (%s)",
+               res->msg = createException(MAL, "lidar.openfile", "Error 
accessing LIDAR file %s (%s)",
                                                          fname, 
LASError_GetLastErrorMsg());
                return res;
        }
@@ -630,7 +630,7 @@ LIDARopenFile(str fname)
        /* get the header */
        header = LASReader_GetHeader(reader);
        if (!header) {
-               res->msg = createException(MAL, "lidar.test", "Error accessing 
LIDAR file %s (%s)",
+               res->msg = createException(MAL, "lidar.openfile", "Error 
accessing LIDAR file %s (%s)",
                                                          fname, 
LASError_GetLastErrorMsg());
                return res;
        }
@@ -695,7 +695,6 @@ str LIDARattach(Client cntxt, MalBlkPtr 
        oid fid, tid, cid, rid = oid_nil;
        char *tname_low = NULL, *s, bname[BUFSIZ];
        char *p;
-       //long rows;
        int cnum;
        lidar_header *header;
        /* table */
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to