Björn Michael
Björn Michael
When reading given CSV with _jackson-dataformat-csv_ 2.11.4 ``` name Roger Chris ``` using following snippet ``` CsvMapper csvMapper = new CsvMapper(); csvMapper.configure(CsvParser.Feature.FAIL_ON_MISSING_COLUMNS, true); CsvSchema csvSchema = CsvSchema.builder().setUseHeader(true).setReorderColumns(true) .addColumn("name").addColumn("age").build(); List persons...
When reading given CSV with _jackson-dataformat-csv_ 2.11.4 ``` name,weight,age Roger,69,27 Chris,89,53 ``` using following snippet ``` CsvMapper csvMapper = new CsvMapper(); CsvSchema csvSchema = CsvSchema.builder().setUseHeader(true) .addColumn("name").addColumn("age").build(); List persons = csvMapper...
Version 2.1.212 `set mode mysql` enabled When DATABASE instead of SCHEMA is specified it fails. ``` CREATE DATABASE `mydb`; org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "CREATE [*]DATABASE `mydb`;\000a"; expected "OR,...
Version 2.1.212 `set mode mysql` enabled When COMMENT is specified in index definition, it fails: ``` CREATE TABLE `tablewithindexes` ( `col1` varchar(20) NOT NULL, `col2` varchar(20) NOT NULL, `col3` varchar(20)...
I would find it very useful if indent character is displayed (e.g. TAB / SPACE). These are even sometimes mixed within a single file and autodectect encoding could display it...
Please update cfr_0_115.jar that was released **2016**-03-08 Current version is 0_122 (2017-06-12) Details and download from: http://www.benf.org/other/cfr/
All _Eclipse Class Decompiler * Extension (Optional)_ features should declare _Eclipse Class Decompiler (Core)_ **feature** as required in feature.xml.
Every now and then I'd like to check a variable for a _non-null_ value or otherwise provide a reasonable _non-null_ default value. Sometimes the second value is computed or should...
### API(s) ```java ReaderInputStream(reader, charset, bufferSize) ``` ### How do you want it to be improved? Use the default error action for malformed input and unmappable characters when creating the...
The main advantage of Guava `Joiner` over JDKs `Collectors.joining(...)` or `StringJoiner` that it can handle arbitrary objects and has a convenient builder api to express e.g. `.useForNull(nullText)`. Thus allow the...