PS: https://issues.apache.org/jira/browse/INFRA-17945

Romain Manni-Bucau
@rmannibucau <https://twitter.com/rmannibucau> |  Blog
<https://rmannibucau.metawerx.net/> | Old Blog
<http://rmannibucau.wordpress.com> | Github <https://github.com/rmannibucau> |
LinkedIn <https://www.linkedin.com/in/rmannibucau> | Book
<https://www.packtpub.com/application-development/java-ee-8-high-performance>


Le dim. 3 mars 2019 à 09:49, Romain Manni-Bucau <rmannibu...@gmail.com> a
écrit :

> oki, will do, thanks for confirming
>
> Romain Manni-Bucau
> @rmannibucau <https://twitter.com/rmannibucau> |  Blog
> <https://rmannibucau.metawerx.net/> | Old Blog
> <http://rmannibucau.wordpress.com> | Github
> <https://github.com/rmannibucau> | LinkedIn
> <https://www.linkedin.com/in/rmannibucau> | Book
> <https://www.packtpub.com/application-development/java-ee-8-high-performance>
>
>
> Le dim. 3 mars 2019 à 09:46, Maxim Solodovnik <solomax...@gmail.com> a
> écrit :
>
>> yep :(
>>
>> top level URL works
>> second level `diff` links are broken ...
>> Can be reported to INFRA, I guess
>>
>> On Sun, 3 Mar 2019 at 15:44, Romain Manni-Bucau <rmannibu...@gmail.com>
>> wrote:
>> >
>> > Yep but means our gitbox setup is broken
>> >
>> > The diff link is for instance:
>> >
>> >
>> https://gitbox.apache.org/repos/asf?p=openjpa.git;a=blobdiff;f=openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/meta/ClassMappingInfo.java;h=60cc2a035ff45d3aff9747b5dbcf1be86b413b55;hp=1b384a637f3c66340971a7c5cd2c8db9ce42fb62;hb=d1e4c11;hpb=a0eaa234eaf88f1068069fe9c5ff4ca8c1ad8010
>> >
>> > Open it and do 4-5 F5, none is in openjpa project :s
>> >
>> > Romain Manni-Bucau
>> > @rmannibucau <https://twitter.com/rmannibucau> |  Blog
>> > <https://rmannibucau.metawerx.net/> | Old Blog
>> > <http://rmannibucau.wordpress.com> | Github <
>> https://github.com/rmannibucau> |
>> > LinkedIn <https://www.linkedin.com/in/rmannibucau> | Book
>> > <
>> https://www.packtpub.com/application-development/java-ee-8-high-performance
>> >
>> >
>> >
>> > Le dim. 3 mars 2019 à 09:40, Maxim Solodovnik <solomax...@gmail.com> a
>> > écrit :
>> >
>> > > Works for me
>> > >
>> > > You can use this link:
>> > >
>> > >
>> https://github.com/apache/openjpa/pull/39/commits/d1e4c110e60a1eae335de3c3a26ad639f0cfde0f
>> > > And perform review in github :)
>> > >
>> > > On Sun, 3 Mar 2019 at 15:38, Romain Manni-Bucau <
>> rmannibu...@gmail.com>
>> > > wrote:
>> > > >
>> > > > Anyone has the diff button working once clicked on this link? I get
>> > > lucene
>> > > > or cassandra diff error. Hash collision?
>> > > >
>> > > > ---------- Forwarded message ---------
>> > > > From: ASF subversion and git services (JIRA) <j...@apache.org>
>> > > > Date: dim. 3 mars 2019 à 09:14
>> > > > Subject: [jira] [Commented] (OPENJPA-2777) Indices specified using
>> > > > javax.persistence.Index annotation are not being created
>> > > > To: <dev@openjpa.apache.org>
>> > > >
>> > > >
>> > > >
>> > > >     [
>> > > >
>> > >
>> https://issues.apache.org/jira/browse/OPENJPA-2777?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16782630#comment-16782630
>> > > > ]
>> > > >
>> > > > ASF subversion and git services commented on OPENJPA-2777:
>> > > > ----------------------------------------------------------
>> > > >
>> > > > Commit d1e4c110e60a1eae335de3c3a26ad639f0cfde0f in openjpa's branch
>> > > > refs/heads/javax-index from Maxim Solodovnik
>> > > > [ https://gitbox.apache.org/repos/asf?p=openjpa.git;h=d1e4c11 ]
>> > > >
>> > > > [OPENJPA-2777] messages are corrected
>> > > >
>> > > >
>> > > > > Indices specified using javax.persistence.Index annotation are not
>> > > being
>> > > > created
>> > > > >
>> > > >
>> > >
>> --------------------------------------------------------------------------------
>> > > > >
>> > > > >                 Key: OPENJPA-2777
>> > > > >                 URL:
>> > > https://issues.apache.org/jira/browse/OPENJPA-2777
>> > > > >             Project: OpenJPA
>> > > > >          Issue Type: Bug
>> > > > >          Components: jdbc
>> > > > >    Affects Versions: 3.0.0
>> > > > >            Reporter: Maxim Solodovnik
>> > > > >            Assignee: Maxim Solodovnik
>> > > > >            Priority: Major
>> > > > >             Fix For: 3.0.1
>> > > > >
>> > > > >
>> > > > > Indices specified using javax.persistence.Index annotation are not
>> > > being
>> > > > created
>> > > > > i saw a similar example but was hoping the index could be
>> automatically
>> > > > > created.  some indexes are automatically created but seeingly not
>> > > others.
>> > > > > i tried the annotations as in the example and the index is never
>> > > > > created.  here is what i have added to my class
>> > > > > @Entity
>> > > > > @Table(name = "billentry", indexes = {
>> > > > >          @Index(name = "I_BLLNTRY_SECTION", columnList =
>> > > > > "BILLSECTION_ID", unique = false),
>> > > > >          @Index(name = "I_BLLNTRY_BILLTEMPLATEENTRY", columnList =
>> > > > > "btentryid", unique = false) })
>> > > > > public class BillEntry implements Serializable {
>> > > > >      private static final long serialVersionUID = 1L;
>> > > > >      @Id
>> > > > >      @GeneratedValue(strategy = GenerationType.IDENTITY)
>> > > > >      private Long id;
>> > > > >      @Version
>> > > > >      private Long version;
>> > > > >      @ManyToOne
>> > > > >      private BillSection billSection;
>> > > > >      @ManyToOne
>> > > > >      @Column(name = "btentryid")
>> > > > >      private BillTemplateEntry billTemplateEntry;
>> > > > > Mail thread: https://markmail.org/message/c4tom6hwjt7temur
>> > > >
>> > > >
>> > > >
>> > > > --
>> > > > This message was sent by Atlassian JIRA
>> > > > (v7.6.3#76005)
>> > >
>> > >
>> > >
>> > > --
>> > > WBR
>> > > Maxim aka solomax
>> > >
>>
>>
>>
>> --
>> WBR
>> Maxim aka solomax
>>
>

Reply via email to