· 8 years ago · Aug 28, 2018, 02:10 PM
1Why does H2 balk at line continuation '\' in stored procedures?
2DROP ALIAS IF EXISTS NEXT_PRIME;
3CREATE ALIAS NEXT_PRIME AS $$
4 String nextPrime(String value) {
5 return new BigInteger(value).nextProbablePrime().toString();
6 }
7$$;
8
9//stringid=
10create table if not exists test(
11 id int,
12 name varchar,
13);