[Pljava-dev] Compatibility with Java 1.7 and PostgreSQL 9.2? Is this project still alive?

Lists: pljava-dev
From: ch at lathspell(dot)de (Christian Hammers)
To:
Subject: [Pljava-dev] Compatibility with Java 1.7 and PostgreSQL 9.2? Is this project still alive?
Date: 2013-01-10 22:27:46
Message-ID: 20130110232746.105a633d@james.intern
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pljava-dev

Hello

I can't find Debian packages of plJava for PostgreSQL 9.2 and found
some unanswered questions regarding the availability for 9.2 on
last years mailing list archives.
So is it currently impossible to build against 9.2? Any plans for
updates?

Apart from that, there seem to be problems with Java 1.7.0 as well,
it seems some abstract classes got more methods:

/srv/home/james/Desktop/pljava-1.4.2/src/java/pljava/org/postgresql/pljava/jdbc/TriggerResultSet.java:22:
error: TriggerResultSet is not abstract and does not override abstract
method getObject(String,Class) in ResultSet public class
TriggerResultSet extends SingleRowResultSet

/srv/home/james/Desktop/pljava-1.4.2/src/java/pljava/org/postgresql/pljava/jdbc/SingleRowReader.java:22:
error: SingleRowReader is not abstract and does not override abstract
method getObject(String,Class) in ResultSet public class
SingleRowReader extends SingleRowResultSet

I can file a more verbose report in your bug tracker if you like but
I'm wondering if this project is still alive as the latest release is
from 2011-09 and the latest on the Wiki "Downloads" page even from
2010...

bye,

-christian-


From: hal(dot)hildebrand at me(dot)com (Hal Hildebrand)
To:
Subject: [Pljava-dev] Compatibility with Java 1.7 and PostgreSQL 9.2? Is this project still alive?
Date: 2013-01-11 00:48:57
Message-ID: 622891DB-3ED6-4A37-BDD0-169321496E14@me.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pljava-dev

I have a git hub fork where I've worked through these Java 1.6 issues.

https://github.com/Hellblazer/pljava

This is a Maven 3 project, and requires 1.6. Just cd to the top level directory and do:

mvn clean install

Sent from my Tricorder

On Jan 10, 2013, at 2:27 PM, Christian Hammers <ch at lathspell.de> wrote:

> Hello
>
> I can't find Debian packages of plJava for PostgreSQL 9.2 and found
> some unanswered questions regarding the availability for 9.2 on
> last years mailing list archives.
> So is it currently impossible to build against 9.2? Any plans for
> updates?
>
> Apart from that, there seem to be problems with Java 1.7.0 as well,
> it seems some abstract classes got more methods:
>
> /srv/home/james/Desktop/pljava-1.4.2/src/java/pljava/org/postgresql/pljava/jdbc/TriggerResultSet.java:22:
> error: TriggerResultSet is not abstract and does not override abstract
> method getObject(String,Class) in ResultSet public class
> TriggerResultSet extends SingleRowResultSet
>
> /srv/home/james/Desktop/pljava-1.4.2/src/java/pljava/org/postgresql/pljava/jdbc/SingleRowReader.java:22:
> error: SingleRowReader is not abstract and does not override abstract
> method getObject(String,Class) in ResultSet public class
> SingleRowReader extends SingleRowResultSet
>
> I can file a more verbose report in your bug tracker if you like but
> I'm wondering if this project is still alive as the latest release is
> from 2011-09 and the latest on the Wiki "Downloads" page even from
> 2010...
>
> bye,
>
> -christian-
> _______________________________________________
> Pljava-dev mailing list
> Pljava-dev at pgfoundry.org
> http://lists.pgfoundry.org/mailman/listinfo/pljava-dev
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.pgfoundry.org/pipermail/pljava-dev/attachments/20130110/f9982e20/attachment.html>


From: craig at 2ndQuadrant(dot)com (Craig Ringer)
To:
Subject: [Pljava-dev] Compatibility with Java 1.7 and PostgreSQL 9.2? Is this project still alive?
Date: 2013-01-11 03:40:36
Message-ID: 50EF89B4.3010306@2ndQuadrant.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pljava-dev

On 01/11/2013 06:27 AM, Christian Hammers wrote:
> Hello
>
> I can't find Debian packages of plJava for PostgreSQL 9.2 and found
> some unanswered questions regarding the availability for 9.2 on
> last years mailing list archives.
> So is it currently impossible to build against 9.2? Any plans for
> updates?
Building against 9.2 works fine for me. Java 1.7 won't work, though.

--
Craig Ringer http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services


From: thomas at tada(dot)se (Thomas Hallgren)
To:
Subject: [Pljava-dev] Compatibility with Java 1.7 and PostgreSQL 9.2? Is this project still alive?
Date: 2013-01-11 07:22:44
Message-ID: 50EFBDC4.7070309@tada.se
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pljava-dev

Sweet. I'm much in favor of moving the code to GitHub. Personally, I
wouldn't mind at all if we base the official code on this fork rather
than the CVS stuff that it origins from (with possible merge if more
things has been added to CVS of course). Ideally, we should have a fork
under "postgres/pljava".

- thomas

On 2013-01-11 01:48, Hal Hildebrand wrote:
> I have a git hub fork where I've worked through these Java 1.6 issues.
>
> https://github.com/Hellblazer/pljava
>
> This is a Maven 3 project, and requires 1.6. Just cd to the top level
> directory and do:
>
> mvn clean install
>
>
> Sent from my Tricorder
>
> On Jan 10, 2013, at 2:27 PM, Christian Hammers <ch at lathspell.de
> <mailto:ch at lathspell.de>> wrote:
>
>> Hello
>>
>> I can't find Debian packages of plJava for PostgreSQL 9.2 and found
>> some unanswered questions regarding the availability for 9.2 on
>> last years mailing list archives.
>> So is it currently impossible to build against 9.2? Any plans for
>> updates?
>>
>> Apart from that, there seem to be problems with Java 1.7.0 as well,
>> it seems some abstract classes got more methods:
>>
>> /srv/home/james/Desktop/pljava-1.4.2/src/java/pljava/org/postgresql/pljava/jdbc/TriggerResultSet.java:22:
>> error: TriggerResultSet is not abstract and does not override abstract
>> method getObject(String,Class) in ResultSet public class
>> TriggerResultSet extends SingleRowResultSet
>>
>> /srv/home/james/Desktop/pljava-1.4.2/src/java/pljava/org/postgresql/pljava/jdbc/SingleRowReader.java:22:
>> error: SingleRowReader is not abstract and does not override abstract
>> method getObject(String,Class) in ResultSet public class
>> SingleRowReader extends SingleRowResultSet
>>
>> I can file a more verbose report in your bug tracker if you like but
>> I'm wondering if this project is still alive as the latest release is
>> from 2011-09 and the latest on the Wiki "Downloads" page even from
>> 2010...
>>
>> bye,
>>
>> -christian-
>> _______________________________________________
>> Pljava-dev mailing list
>> Pljava-dev at pgfoundry.org <mailto:Pljava-dev at pgfoundry.org>
>> http://lists.pgfoundry.org/mailman/listinfo/pljava-dev
>
>
> _______________________________________________
> Pljava-dev mailing list
> Pljava-dev at pgfoundry.org
> http://lists.pgfoundry.org/mailman/listinfo/pljava-dev

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.pgfoundry.org/pipermail/pljava-dev/attachments/20130111/617e1f63/attachment.html>


From: ruralhunter at gmail(dot)com (Rural Hunter)
To:
Subject: [Pljava-dev] Compatibility with Java 1.7 and PostgreSQL 9.2? Is this project still alive?
Date: 2013-01-11 09:42:03
Message-ID: 50EFDE6B.3080207@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pljava-dev

From: thomas at tada(dot)se (Thomas Hallgren)
To:
Subject: [Pljava-dev] Compatibility with Java 1.7 and PostgreSQL 9.2? Is this project still alive?
Date: 2013-01-11 10:39:02
Message-ID: 50EFEBC6.3040803@tada.se
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pljava-dev

I took the liberty of forking the Hellblazer/pljava into pljava/pljava.

- thomas

On 2013-01-11 08:22, Thomas Hallgren wrote:
> Sweet. I'm much in favor of moving the code to GitHub. Personally, I
> wouldn't mind at all if we base the official code on this fork rather
> than the CVS stuff that it origins from (with possible merge if more
> things has been added to CVS of course). Ideally, we should have a
> fork under "postgres/pljava".
>
> - thomas
>
> On 2013-01-11 01:48, Hal Hildebrand wrote:
>> I have a git hub fork where I've worked through these Java 1.6 issues.
>>
>> https://github.com/Hellblazer/pljava
>>
>> This is a Maven 3 project, and requires 1.6. Just cd to the top
>> level directory and do:
>>
>> mvn clean install
>>

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.pgfoundry.org/pipermail/pljava-dev/attachments/20130111/7b2a4575/attachment.html>


From: craig at 2ndQuadrant(dot)com (Craig Ringer)
To:
Subject: [Pljava-dev] Compatibility with Java 1.7 and PostgreSQL 9.2? Is this project still alive?
Date: 2013-01-11 12:38:53
Message-ID: 50F007DD.7090600@2ndQuadrant.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pljava-dev

On 01/11/2013 06:39 PM, Thomas Hallgren wrote:
> On 2013-01-11 01:48, Hal Hildebrand wrote:
>>> I have a git hub fork where I've worked through these Java 1.6 issues.
>>>
>>> https://github.com/Hellblazer/pljava
I'm a bit worried by the changelog on that. The changes to make failures
silent, in particular, are not something I am at all comfortable with,
especially as they appear to be a workaround for an ORM or other
intermediary. If they're going to be there, surely they should be
conditional? "notsupportederror={log|throw|ignore}" ?

The sources and build look like they would benefit from a clean-up, so
that seems like a good idea - but what's this change going to do to
Windows build support?

--
Craig Ringer http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.pgfoundry.org/pipermail/pljava-dev/attachments/20130111/26738785/attachment.html>


From: thomas at tada(dot)se (Thomas Hallgren)
To:
Subject: [Pljava-dev] Compatibility with Java 1.7 and PostgreSQL 9.2? Is this project still alive?
Date: 2013-01-11 13:50:43
Message-ID: 50F018B3.8010200@tada.se
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pljava-dev

On 2013-01-11 13:38, Craig Ringer wrote:
> On 01/11/2013 06:39 PM, Thomas Hallgren wrote:
>> On 2013-01-11 01:48, Hal Hildebrand wrote:
>>>> I have a git hub fork where I've worked through these Java 1.6 issues.
>>>>
>>>> https://github.com/Hellblazer/pljava
> I'm a bit worried by the changelog on that. The changes to make
> failures silent, in particular, are not something I am at all
> comfortable with, especially as they appear to be a workaround for an
> ORM or other intermediary. If they're going to be there, surely they
> should be conditional? "notsupportederror={log|throw|ignore}" ?
>
Looking closer at the changes, I wasn't too thrilled about that part
either. Making it conditional seems to be a very good idea.

> The sources and build look like they would benefit from a clean-up, so
> that seems like a good idea - but what's this change going to do to
> Windows build support?
>
Seems some work remain to the the native parts building. Perhaps we
could establish a decent process around this at GitHub? I.e. we use
pljava/pjlava as the base where we enter issues and submit
pull-requests? I'm not at all against adding collaborators to the actual
project either if that would speed up reviews and acceptance of
contributions. Anyone who wants to help, please raise a hand.

Regards,
Thomas Hallgren

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.pgfoundry.org/pipermail/pljava-dev/attachments/20130111/5d99aab6/attachment.html>


From: hal(dot)hildebrand at me(dot)com (Hal Hildebrand)
To:
Subject: [Pljava-dev] Compatibility with Java 1.7 and PostgreSQL 9.2? Is this project still alive?
Date: 2013-01-11 16:55:31
Message-ID: F0185274-7D6B-4758-8DB5-69AF23D9C660@me.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pljava-dev

Yes, there are some changes that might not be desirable. Always a good idea to read the change log :).

As to the issues, my thought was to make this a flag so the USOE could be conditionally thrown, defaulting to thrown.

Hadn't worked on the C code yet, bit that was on my plate.

In general, I certainly didn't intend for this to replace the current work. I just threw this out because I solved the generic signature issues and have verified that the code works.

Glad people found it useful and I look forward to seeing more work on the fork.

Sent from my Tricorder

On Jan 11, 2013, at 5:50 AM, Thomas Hallgren <thomas at tada.se> wrote:

> On 2013-01-11 13:38, Craig Ringer wrote:
>> On 01/11/2013 06:39 PM, Thomas Hallgren wrote:
>>> On 2013-01-11 01:48, Hal Hildebrand wrote:
>>>>> I have a git hub fork where I've worked through these Java 1.6 issues.
>>>>>
>>>>> https://github.com/Hellblazer/pljava
>> I'm a bit worried by the changelog on that. The changes to make failures silent, in particular, are not something I am at all comfortable with, especially as they appear to be a workaround for an ORM or other intermediary. If they're going to be there, surely they should be conditional? "notsupportederror={log|throw|ignore}" ?
> Looking closer at the changes, I wasn't too thrilled about that part either. Making it conditional seems to be a very good idea.
>
>> The sources and build look like they would benefit from a clean-up, so that seems like a good idea - but what's this change going to do to Windows build support?
> Seems some work remain to the the native parts building. Perhaps we could establish a decent process around this at GitHub? I.e. we use pljava/pjlava as the base where we enter issues and submit pull-requests? I'm not at all against adding collaborators to the actual project either if that would speed up reviews and acceptance of contributions. Anyone who wants to help, please raise a hand.
>
> Regards,
> Thomas Hallgren
>
> _______________________________________________
> Pljava-dev mailing list
> Pljava-dev at pgfoundry.org
> http://lists.pgfoundry.org/mailman/listinfo/pljava-dev
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.pgfoundry.org/pipermail/pljava-dev/attachments/20130111/a2980db6/attachment.html>


From: thomas at tada(dot)se (Thomas Hallgren)
To:
Subject: [Pljava-dev] Compatibility with Java 1.7 and PostgreSQL 9.2? Is this project still alive?
Date: 2013-01-12 10:16:16
Message-ID: 50F137F0.7090001@tada.se
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pljava-dev

Hi,

I decided to create a 'tada' organization instead. That way, we can
manage teams and members of the project etc. Open source organizations
are free at GitHub. So the new location for the pljava project will be
tada/pljava.

Unless I'm missing something, all version CVS history was stripped off
when Hal created his repository? If that's the case, then I'm planning
to recreate the repository from scratch there so that all CVS version
history is retained and then reapply the commits that was made by Hal.

I hope this is OK with everyone.

Thomas Hallgren

On 2013-01-11 17:55, Hal Hildebrand wrote:
> Yes, there are some changes that might not be desirable. Always a good
> idea to read the change log :).
>
> As to the issues, my thought was to make this a flag so the USOE could
> be conditionally thrown, defaulting to thrown.
>
> Hadn't worked on the C code yet, bit that was on my plate.
>
> In general, I certainly didn't intend for this to replace the current
> work. I just threw this out because I solved the generic signature
> issues and have verified that the code works.
>
> Glad people found it useful and I look forward to seeing more work on
> the fork.
>
> Sent from my Tricorder
>
> On Jan 11, 2013, at 5:50 AM, Thomas Hallgren <thomas at tada.se
> <mailto:thomas at tada.se>> wrote:
>
>> On 2013-01-11 13:38, Craig Ringer wrote:
>>> On 01/11/2013 06:39 PM, Thomas Hallgren wrote:
>>>> On 2013-01-11 01:48, Hal Hildebrand wrote:
>>>>>> I have a git hub fork where I've worked through these Java 1.6
>>>>>> issues.
>>>>>>
>>>>>> https://github.com/Hellblazer/pljava
>>> I'm a bit worried by the changelog on that. The changes to make
>>> failures silent, in particular, are not something I am at all
>>> comfortable with, especially as they appear to be a workaround for
>>> an ORM or other intermediary. If they're going to be there, surely
>>> they should be conditional? "notsupportederror={log|throw|ignore}" ?
>>>
>> Looking closer at the changes, I wasn't too thrilled about that part
>> either. Making it conditional seems to be a very good idea.
>>
>>> The sources and build look like they would benefit from a clean-up,
>>> so that seems like a good idea - but what's this change going to do
>>> to Windows build support?
>>>
>> Seems some work remain to the the native parts building. Perhaps we
>> could establish a decent process around this at GitHub? I.e. we use
>> pljava/pjlava as the base where we enter issues and submit
>> pull-requests? I'm not at all against adding collaborators to the
>> actual project either if that would speed up reviews and acceptance
>> of contributions. Anyone who wants to help, please raise a hand.
>>
>> Regards,
>> Thomas Hallgren
>>
>> _______________________________________________
>> Pljava-dev mailing list
>> Pljava-dev at pgfoundry.org <mailto:Pljava-dev at pgfoundry.org>
>> http://lists.pgfoundry.org/mailman/listinfo/pljava-dev

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.pgfoundry.org/pipermail/pljava-dev/attachments/20130112/5e302f9e/attachment.html>


From: hal(dot)hildebrand at me(dot)com (Hal Hildebrand)
To:
Subject: [Pljava-dev] Compatibility with Java 1.7 and PostgreSQL 9.2? Is this project still alive?
Date: 2013-01-12 14:45:17
Message-ID: 678A27D3-C2A6-4EDA-9E76-750E1F156409@me.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pljava-dev

Sounds good to me.

Sent from my Tricorder

On Jan 12, 2013, at 2:16 AM, Thomas Hallgren <thomas at tada.se> wrote:

> Hi,
>
> I decided to create a 'tada' organization instead. That way, we can manage teams and members of the project etc. Open source organizations are free at GitHub. So the new location for the pljava project will be tada/pljava.
>
> Unless I'm missing something, all version CVS history was stripped off when Hal created his repository? If that's the case, then I'm planning to recreate the repository from scratch there so that all CVS version history is retained and then reapply the commits that was made by Hal.
>
> I hope this is OK with everyone.
>
> Thomas Hallgren
>
>
> On 2013-01-11 17:55, Hal Hildebrand wrote:
>> Yes, there are some changes that might not be desirable. Always a good idea to read the change log :).
>>
>> As to the issues, my thought was to make this a flag so the USOE could be conditionally thrown, defaulting to thrown.
>>
>> Hadn't worked on the C code yet, bit that was on my plate.
>>
>> In general, I certainly didn't intend for this to replace the current work. I just threw this out because I solved the generic signature issues and have verified that the code works.
>>
>> Glad people found it useful and I look forward to seeing more work on the fork.
>>
>> Sent from my Tricorder
>>
>> On Jan 11, 2013, at 5:50 AM, Thomas Hallgren <thomas at tada.se> wrote:
>>
>>> On 2013-01-11 13:38, Craig Ringer wrote:
>>>> On 01/11/2013 06:39 PM, Thomas Hallgren wrote:
>>>>> On 2013-01-11 01:48, Hal Hildebrand wrote:
>>>>>>> I have a git hub fork where I've worked through these Java 1.6 issues.
>>>>>>>
>>>>>>> https://github.com/Hellblazer/pljava
>>>> I'm a bit worried by the changelog on that. The changes to make failures silent, in particular, are not something I am at all comfortable with, especially as they appear to be a workaround for an ORM or other intermediary. If they're going to be there, surely they should be conditional? "notsupportederror={log|throw|ignore}" ?
>>> Looking closer at the changes, I wasn't too thrilled about that part either. Making it conditional seems to be a very good idea.
>>>
>>>> The sources and build look like they would benefit from a clean-up, so that seems like a good idea - but what's this change going to do to Windows build support?
>>> Seems some work remain to the the native parts building. Perhaps we could establish a decent process around this at GitHub? I.e. we use pljava/pjlava as the base where we enter issues and submit pull-requests? I'm not at all against adding collaborators to the actual project either if that would speed up reviews and acceptance of contributions. Anyone who wants to help, please raise a hand.
>>>
>>> Regards,
>>> Thomas Hallgren
>>> _______________________________________________
>>> Pljava-dev mailing list
>>> Pljava-dev at pgfoundry.org
>>> http://lists.pgfoundry.org/mailman/listinfo/pljava-dev
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.pgfoundry.org/pipermail/pljava-dev/attachments/20130112/27f0f31a/attachment.html>