Skip to content

Commit

Permalink
Set Postgres default column size
Browse files Browse the repository at this point in the history
  • Loading branch information
sebr72 committed Oct 30, 2024
1 parent d5d04f5 commit a580a42
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
@Entity
public class PrintJobResultExtImpl extends PrintJobResultImpl {

@Column @Basic private byte[] data;
@Column(length = 1000000000)
@Basic
private byte[] data;

/** Default Constructor. */
public PrintJobResultExtImpl() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
package org.mapfish.print.servlet;

import org.junit.Ignore;
import org.springframework.test.context.ContextConfiguration;

@ContextConfiguration(locations = {ClusteredMapPrinterServletTest.CLUSTERED_CONTEXT})
@Ignore
public class ClusteredMapPrinterServletTest extends MapPrinterServletTest {

public static final String CLUSTERED_CONTEXT =
Expand Down

0 comments on commit a580a42

Please sign in to comment.