Skip to content

Commit 512c70f

Browse files
committed
Change key length to 600char in tests.
This is to reflect changes from #25 in tests.
1 parent 19344ac commit 512c70f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/test/java/org/vss/impl/postgres/PostgresBackendImplIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ void destroy() throws Exception {
4848
private void createTable(DSLContext dslContext) {
4949
dslContext.execute("CREATE TABLE vss_db ("
5050
+ "store_id character varying(120) NOT NULL CHECK (store_id <> ''),"
51-
+ "key character varying(120) NOT NULL,"
51+
+ "key character varying(600) NOT NULL,"
5252
+ "value bytea NULL,"
5353
+ "version bigint NOT NULL,"
5454
+ "created_at TIMESTAMP WITH TIME ZONE,"

0 commit comments

Comments
 (0)