Skip to content

Commit

Permalink
Update java/cqn-services/persistence-services.md
Browse files Browse the repository at this point in the history
  • Loading branch information
smahati authored Dec 11, 2024
1 parent 21bdea2 commit dfcd905
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/cqn-services/persistence-services.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ CAP Java SDK is tested on [PostgreSQL](https://www.postgresql.org/) 15 and suppo

[H2](https://www.h2database.com/html/main.html) is the recommended in-memory databases for local development and testing with CAP Java. There's no production support for H2 from CAP and there are the following limitations:

1. H2 only supports database-level collation. The default sort order is by ASCII-code, for dictionary order set a [collation](https://www.h2database.com/html/commands.html#set_collation).
1. H2 only supports database-level collation and the default sort order is by ASCII-code. You can set a [collation](https://www.h2database.com/html/commands.html#set_collation) to sort using dictionary order instead.
2. Case-insensitive comparison isn't yet supported.
3. By default, views aren't updatable on H2. However, the CAP Java SDK supports some views to be updatable as described [here](../working-with-cql/query-execution#updatable-views).
4. Although referential and foreign key constraints are supported, H2 [doesn't support deferred checking](https://www.h2database.com/html/grammar.html#referential_action). As a consequence, schema SQL is never generated with referential constraints.
Expand Down

0 comments on commit dfcd905

Please sign in to comment.