Changeset: c525257c1c3d for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/c525257c1c3d
Modified Files:
        monetdb5/mal/mal_profiler.h
        sql/include/sql_catalog.h
Branch: sql_profiler
Log Message:

Fix types in structs.


diffs (24 lines):

diff --git a/monetdb5/mal/mal_profiler.h b/monetdb5/mal/mal_profiler.h
--- a/monetdb5/mal/mal_profiler.h
+++ b/monetdb5/mal/mal_profiler.h
@@ -26,7 +26,7 @@ struct GenericEvent {
        ulng* tid; /* transaction_id */
        str query; /* statement */
        ulng usec;  /* event duration */
-       lng clk;   /* GDKusec in callside */
+       ulng clk;   /* GDKusec in callside */
        int rc;    /* return code */
 };
 
diff --git a/sql/include/sql_catalog.h b/sql/include/sql_catalog.h
--- a/sql/include/sql_catalog.h
+++ b/sql/include/sql_catalog.h
@@ -308,7 +308,7 @@ typedef struct sql_trans {
 
        ulng ts;                        /* transaction start timestamp */
        ulng tid;                       /* transaction id */
-       lng clk_start;                  /* transaction start timestamp in 
microseconds */
+       ulng clk_start;                 /* transaction start timestamp in 
microseconds */
 
        sql_store store;        /* keep link into the global store */
        MT_Lock lock;           /* lock protecting concurrent writes to the 
changes list */
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to