Fix h2 migration

Using java source code obviously requires `javac` during migration.
This commit is contained in:
Eike Kettner 2021-03-13 16:35:13 +01:00
parent 2e443bc9b9
commit 177488817d
2 changed files with 13 additions and 11 deletions

View File

@ -1,12 +1,2 @@
DROP ALIAS IF EXISTS CAST_TO_NUMERIC;
CREATE ALIAS CAST_TO_NUMERIC AS '
import java.text.*;
import java.math.*;
@CODE
BigDecimal castToNumeric(String s) throws Exception {
try { return new BigDecimal(s); }
catch (Exception e) {
return null;
}
}
'
CREATE ALIAS CAST_TO_NUMERIC FOR "docspell.store.impl.h2.CastNumericFun.castToNumeric";

View File

@ -0,0 +1,12 @@
package docspell.store.impl.h2
import java.math.BigDecimal
/** This is used from within the H2 database! */
object CastNumericFun {
def castToNumeric(str: String): BigDecimal =
try new BigDecimal(str)
catch {
case _: Throwable => null
}
}