Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
enricocolasante committed Nov 15, 2023
1 parent cb08c37 commit 1804cbe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public JdbcEnrollmentAnalyticsTableManager(
List.of(
new AnalyticsTableColumn(quote("pi"), CHARACTER_11, NOT_NULL, "pi.uid"),
new AnalyticsTableColumn(quote("enrollmentdate"), TIMESTAMP, "pi.enrollmentdate"),
new AnalyticsTableColumn(quote("occurreddate"), TIMESTAMP, "pi.occurreddate"),
new AnalyticsTableColumn(quote("incidentdate"), TIMESTAMP, "pi.occurreddate"),
new AnalyticsTableColumn(
quote("completeddate"),
TIMESTAMP,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public JdbcEventAnalyticsTableManager(
new AnalyticsTableColumn(quote("ps"), CHARACTER_11, NOT_NULL, "ps.uid"),
new AnalyticsTableColumn(quote("ao"), CHARACTER_11, NOT_NULL, "ao.uid"),
new AnalyticsTableColumn(quote("enrollmentdate"), TIMESTAMP, "pi.enrollmentdate"),
new AnalyticsTableColumn(quote("occurreddate"), TIMESTAMP, "pi.occurreddate"),
new AnalyticsTableColumn(quote("incidentdate"), TIMESTAMP, "pi.occurreddate"),
new AnalyticsTableColumn(quote("occurreddate"), TIMESTAMP, "psi.occurreddate"),
new AnalyticsTableColumn(quote("scheduleddate"), TIMESTAMP, "psi.scheduleddate"),
new AnalyticsTableColumn(quote("completeddate"), TIMESTAMP, "psi.completeddate"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public JdbcTeiEnrollmentsAnalyticsTableManager(
new AnalyticsTableColumn(quote("programinstanceuid"), CHARACTER_11, NULL, "pi.uid"),
new AnalyticsTableColumn(quote("enrollmentdate"), TIMESTAMP, "pi.enrollmentdate"),
new AnalyticsTableColumn(quote("enddate"), TIMESTAMP, "pi.completeddate"),
new AnalyticsTableColumn(quote("occurreddate"), TIMESTAMP, "pi.occurreddate"),
new AnalyticsTableColumn(quote("incidentdate"), TIMESTAMP, "pi.occurreddate"),
new AnalyticsTableColumn(quote("enrollmentstatus"), VARCHAR_50, "pi.status"),
new AnalyticsTableColumn(quote("pigeometry"), GEOMETRY, "pi.geometry")
.withIndexType(GIST),
Expand Down

0 comments on commit 1804cbe

Please sign in to comment.