Changeset 19148


Ignore:
Timestamp:
08/10/18 22:56:57 (6 years ago)
Author:
tbretz
Message:
Removed the iSDC hack from the svn
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/fits2sql.cc

    r19147 r19148  
    492492            query += "   `"+name;
    493493            if (N>1)
    494                 query += "["+to_string((long long int)i)+"]";
     494                query += "["+to_string(i)+"]";
    495495            query += "` "+sqltype;
    496496            if (col.type=='A')
    497                 query += '('+to_string((long long int)col.num)+')';
     497                query += '('+to_string(col.num)+')';
    498498            query += " NOT NULL COMMENT '"+ic->first;
    499499            if (!col.unit.empty())
     
    642642                query += "   `"+c->column+"`";
    643643            else
    644                 query += "   `"+c->column+"["+to_string((long long int)i)+"]`";
     644                query += "   `"+c->column+"["+to_string(i)+"]`";
    645645
    646646            if (N>1 && i!=N-1)
Note: See TracChangeset for help on using the changeset viewer.