Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Commit

Permalink
fix: compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
paullatzelsperger committed Aug 3, 2023
1 parent ac51b7a commit f8f2834
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@

package org.eclipse.edc.registration.store.sql.schema;

import org.eclipse.edc.sql.dialect.BaseSqlDialect;

import org.eclipse.edc.sql.dialect.PostgresDialect;

import static java.lang.String.format;

Expand Down Expand Up @@ -55,7 +56,7 @@ public String getSelectParticipantByStateTemplate() {
}

protected String getFormatJsonOperator() {
return BaseSqlDialect.getJsonCastOperator();
return PostgresDialect.getJsonCastOperator();
}

}

0 comments on commit f8f2834

Please sign in to comment.