Skip to content

Commit 93f50e0

Browse files
authored
Remove restrictions for UInt8 (#2193)
Remove restrictions for cds.UInt8
1 parent c87f0d0 commit 93f50e0

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

java/cqn-services/persistence-services.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,7 @@ CAP Java SDK is tested on [PostgreSQL](https://www.postgresql.org/) 15 and suppo
5050

5151
1. No locale specific sorting. The sort order of queries behaves as configured on the database.
5252
2. Write operations through CDS views are only supported for views that can be [resolved](../working-with-cql/query-execution#updatable-views) or are [updatable](https://www.postgresql.org/docs/14/sql-createview.html#SQL-CREATEVIEW-UPDATABLE-VIEWS) in PostgreSQL.
53-
3. The CDS type `UInt8` can't be used with PostgreSQL, as there's no `TINYINT`. Use `Int16` instead.
54-
4. [Multitenancy](../../guides/multitenancy/) and [extensibility](../../guides/extensibility/) aren't yet supported on PostgreSQL.
53+
3. [Multitenancy](../../guides/multitenancy/) and [extensibility](../../guides/extensibility/) aren't yet supported on PostgreSQL.
5554

5655
### H2 Database
5756

@@ -62,8 +61,7 @@ CAP Java SDK is tested on [PostgreSQL](https://www.postgresql.org/) 15 and suppo
6261
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).
6362
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.
6463
5. In [pessimistic locking](../working-with-cql/query-execution#pessimistic-locking), _shared_ locks are not supported but an _exclusive_ lock is used instead.
65-
6. The CDS type `UInt8` can't be used with H2, as there is no `TINYINT`. Use `Int16` instead.
66-
7. For regular expressions, H2's implementation is compatible with Java's: the matching behaviour is an equivalent of the `Matcher.find()` call for the given pattern.
64+
6. For regular expressions, H2's implementation is compatible with Java's: the matching behaviour is an equivalent of the `Matcher.find()` call for the given pattern.
6765

6866
::: warning
6967
Support for localized and temporal data via session context variables requires H2 v2.2.x or later.

0 commit comments

Comments
 (0)