Sergei G.
Sergei G.
UP! after aborting process electron-webpack dev doesn't dev-server process doesn't kill
i use this workaround in dev: `import shell from 'node-powershell';` `app.on('window-all-closed', async () => { if (isDevelopment) { await killElectronWebpackDevServer(); } app.quit(); });` `const killElectronWebpackDevServer = async () => {...
> Provide minimal step to reproduce the issue. First migration create 3 Tables with different column types like what: String Int32 Bool DateTime64(7) Decimal128(4) Some columns nullable TableEngine: MergeTree OrderBy:...
@denis-ivanov The issue is marked as resolved, but there are no commits yet, when can we expect a version with a fix to be released?
> Yes - in case when you provide good steps to reproduce. https://drive.google.com/file/d/1wU9hhmjsMlosVa31x5IB_oOKByCguPXP/view?usp=sharing ` cd ClickHouseTest dotnet ef database update --context ClickHouseContext `
@denis-ivanov is the project above enough to open an issue or not?
@denis-ivanov The problem is using the **Decimal128(4)** type, which is actually cast to **Decimal(38, 4)**, when I switched to using Decimal(38, 4), the error disappeared, but a new one appeared...