Skip to content

Commit

Permalink
HSEARCH-3277 Use lowercase "instant" property type in XML mapping
Browse files Browse the repository at this point in the history
"Instant" becomes "instant" in ORM 6.
  • Loading branch information
fax4ever authored and yrodiere committed Jan 27, 2023
1 parent c8fda47 commit 9a9787a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,13 @@ public final class OutboxPollingOutboxEventAdditionalJaxbMappingProducer
" <column length=\"2147483647\" />\n" +
" </property>\n" +
" <property name=\"retries\" type=\"integer\" nullable=\"false\" />\n" +
" <property name=\"processAfter\" type=\"Instant\" index=\"processAfter\" nullable=\"true\" />\n" +
" <property name=\"processAfter\" type=\"instant\" index=\"processAfter\" nullable=\"true\" />\n" +
" <property name=\"status\" index=\"status\" nullable=\"false\">\n" +
" <type name=\"org.hibernate.type.EnumType\">\n" +
" <param name=\"enumClass\">" + OutboxEvent.Status.class.getName() + "</param>\n" +
" </type>\n" +
" </property>\n" +
" <property name=\"created\" type=\"Instant\" index=\"created\" nullable=\"false\" />\n" +
" <property name=\"created\" type=\"instant\" index=\"created\" nullable=\"false\" />\n" +
" </class>\n" +
"</hibernate-mapping>\n";

Expand Down

0 comments on commit 9a9787a

Please sign in to comment.