apixandru

Results 16 comments of apixandru

If anyone else is having issues with this, you could add this to your startup script as a workaround until this is solved ``` export JDK_JAVA_OPTIONS="$JDK_JAVA_OPTIONS --add-opens=java.base/java.nio=ALL-UNNAMED" ```

@dzlab io.netty.util.internal.PlatformDependent0 uses both unsafe and directbytebuffer as the error message indicates. Unsafe is still allowed by default but java.base/java.nio needs to be explicitely opened if you're going to do...

Please provide an example of runnable code with the example xlsx.

Do you have a runnable example that manifests this behavior?

Good catch, I have noticed similar behavior with the numbers, it should be fixed with this pull request https://github.com/monitorjbl/excel-streaming-reader/pull/118 Main file [Main.java.txt](https://github.com/monitorjbl/excel-streaming-reader/files/1421117/Main.java.txt) Input [SampleSum2.xlsx](https://github.com/monitorjbl/excel-streaming-reader/files/1421112/SampleSum2.xlsx) Before #118 ``` -4.0 "minus" "minus"...

I can't reproduce the issue, looks like cell evaluation works the same in 'native' mode as in the streaming mode. [formula_empty_cell.xlsx](https://github.com/monitorjbl/excel-streaming-reader/files/3245005/formula_empty_cell.xlsx) ``` package com.monitorjbl.xlsx; import org.apache.poi.ss.usermodel.*; import org.junit.BeforeClass; import org.junit.Test;...

I think that what @saberya is trying to point out is that when inserting one type into another type with lexical preservation, his expectation is that the entire new type...

the db host is inaccessible, you need to post the db logs to figure out what's going on by running `docker logs **your_db_container**`

it's the mysql update that broke the docker configuration. I posted a solution here https://github.com/standardnotes/forum/issues/3593#issuecomment-2126779000

I'd keep the issue open so that the developers can update the docker-compose.yml file although I wouldn't hold my breath that they will do that anytime soon.