-1

Working on Spring boot application test-cases. Was mocking Oracle database using hsql in-memory database but found it doesn't support partition by query and fails with below error:

Caused by: org.hsqldb.HsqlException: unexpected token: PARTITION required: )

Had checked Partition by modification but I don't want to modify my queries but use that database which support my queries.

Which alternative database will work here?

nanosoft
  • 2,913
  • 4
  • 41
  • 61

1 Answers1

-1

The HyperXtrmeSQL database is based on HSQLDB and supports OVER(PARTIION ...) syntax. See http://hyperxtreme.co.uk/features.html (disclaimer: I am the developer)

fredt
  • 24,044
  • 3
  • 40
  • 61
  • Thanks Fredt. But as I see its not free but paid software/library. I did't find link for downloading the jar or it's maven/gradle coordinates. Can you help me with this. – nanosoft Aug 03 '18 at 08:04