kaspersorensen commented on issue #230: dev/add datatypes to excel columns URL: https://github.com/apache/metamodel/pull/230#issuecomment-535831077 Wishful thinking code: ``` ColumnTypeDetector ctd = new ColumnTypeDetector(tableName, columnNames); for (Object[] record : nativeDataSet) { for (int i=0: i<columnNames.length; i++) { Object value = record[i]; ctd.registerValue(i, value); } if (ctd.sampledEnough()) { break; } } Table table = ctd.createTable(); ```
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services