Changeset: 5d709923dbc9 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=5d709923dbc9
Modified Files:
        tools/monetdbe/monetdbe.c
Branch: monetdbe-proxy
Log Message:

Fix error message.


diffs (15 lines):

diff --git a/tools/monetdbe/monetdbe.c b/tools/monetdbe/monetdbe.c
--- a/tools/monetdbe/monetdbe.c
+++ b/tools/monetdbe/monetdbe.c
@@ -891,9 +891,9 @@ monetdbe_result_cb(void* context, char* 
                int scale               = results[i].scale;
 
                if ( b == NULL)
-                       mdbe->msg= 
createException(MAL,"sql.resultset",SQLSTATE(HY005) "Cannot access column 
descriptor ");
+                       mdbe->msg= 
createException(MAL,"monetdbe.monetdbe_result_cb",SQLSTATE(HY005) "Cannot 
access column descriptor ");
                else if (mvc_result_column(be, tblname, colname, tpename, 
digits, scale, b))
-                       mdbe->msg = createException(SQL, "sql.resultset", 
SQLSTATE(42000) "Cannot access column descriptor %s.%s",tblname,colname);
+                       mdbe->msg = createException(SQL, 
"monetdbe.monetdbe_result_cb", SQLSTATE(42000) "Cannot access column descriptor 
%s.%s",tblname,colname);
                if( b)
                        BBPkeepref(b->batCacheid);
        }
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to