Changeset: 5f45ad2ccf0d for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=5f45ad2ccf0d
Modified Files:
        monetdb5/modules/mal/tablet.h
Branch: Oct2014
Log Message:

Cleanup: remove unused fields from struct.


diffs (34 lines):

diff --git a/monetdb5/modules/mal/tablet.h b/monetdb5/modules/mal/tablet.h
--- a/monetdb5/modules/mal/tablet.h
+++ b/monetdb5/modules/mal/tablet.h
@@ -84,30 +84,13 @@ typedef struct Column_t {
  */
 
 typedef struct Table_t {
-       char *sep;                                      /* default separator */
-       str ttopbrk, tbotbrk;           /* table brackets */
-       str rlbrk, rrbrk;                       /* row brackets */
-       str properties;                         /* of header to display */
-       str title, footer;                      /* alternatives */
        BUN offset;
        BUN nr;                                         /* allocated space for 
table loads */
-       size_t pageLimit;
-       size_t firstrow, lastrow;       /* last window to print */
        BUN nr_attrs;                           /* attributes found sofar */
-       size_t max_attrs;
        Column *format;                         /* remove later */
-       stream *fd;
-       BAT *pivot;
        str error;                                      /* last error */
        int tryall;                                     /* skip erroneous lines 
*/
        BAT *complaints;                        /* lines that did not match the 
required input */
-       unsigned int rowwidth;          /* sum of columns used for mallocs */
-       bstream *input;                         /* where to get the data from */
-       stream *output;                         /* where to leave immediate 
output */
-       lng bytes;                                      /* required bytes to 
load (round up to end of record) */
-       MT_Id tid;                                      /* Thread id for 
parallel loads only */
-       int partid;                                     /* partition number */
-       Column columns[1];                      /* at least one column, 
enlarged upon need */
 } Tablet;
 
 tablet_export BUN SQLload_file(Client cntxt, Tablet *as, bstream *b, stream 
*out, char *csep, char *rsep, char quote, lng skip, lng maxrow);
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to