Alen Turkovic

Results 35 comments of Alen Turkovic

I am also having issues with this. Using a schema like: ``` CsvSchema.builder() .addColumn("name") .addNumberColumn("age") .addColumn("title") .build() ``` I would expect this csv: `"John Doe",25,Mr.` to be parsed as: `...

Here is the code snippet that I used: ```kotlin val csv = """"John Doe",25,Mr.""" val schema = CsvSchema.builder() .addColumn("name") .addNumberColumn("age") .addColumn("title") .build() val nodes = csvMapper.readerFor(JsonNode::class.java) .with(schema) .readValues(csv) .readAll() //...

> @alturkovic please have a look. Also if merged can you release `2.1.0` with this change or do you have any other plans for next version? I will release a...

Should be fixed in 1.5.0, I decided to change the default table name as suggested to avoid further complications

It seems like it might be due to the semicolon at the end? I released a new fix version, could you try with that one? (1.5.1)

I would not worry about refs since I could always resolve them beforehand and inline all the refs. To be more specific, I am trying to implement something like: https://json-schema-faker.js.org/#gist/1902737e7bef9573af02a3fc49761c13...

Thanks for the quick reply! That sounds great. Thank you for maintaining such a useful library.

That sounds very reasonable, I will gladly merge `@Locked(throwing = false)` with default value being `true` MR. Please also update the README.md to explain this feature and usecase.