Re: [Geotools-devel] Backport GEOT-5186 (DB2 SELECTIVITY CLAUSE) to 13.x

2015-08-16 Thread Ben Caradoc-Davies
+1. Looks like a useful addition with few potential side-effects as it 
is off by default. The only thing that seems to be missing is unit test 
coverage for the new functionality.

Kind regards,
Ben.

On 17/08/15 04:18, Christian Mueller wrote:
> Hi all
>
> The issue is hiere
>
> https://osgeo-org.atlassian.net/browse/GEOT-5186
>
> I would like to backport https://github.com/geotools/geotools/pull/929.
>
> Only DB2 specific classes are affected and one of my customers has
> performance problems. The change does not change the default behavior and
> there is a boolean parameter you must set explicitly to activate the
> feature.
>
> Looking at the user mailing lists (goeserver/geotools) indicates that DB2
> users are rare. No mails since some years. I fear my customer is the only
> one using DB2.
>
> Please vote
>
>
>
>
> --
>
>
>
> ___
> GeoTools-Devel mailing list
> GeoTools-Devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geotools-devel
>

-- 
Ben Caradoc-Davies 
Director
Transient Software Limited 
New Zealand

--
___
GeoTools-Devel mailing list
GeoTools-Devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geotools-devel


Re: [Geotools-devel] Backport GEOT-5186 (DB2 SELECTIVITY CLAUSE) to 13.x

2015-08-16 Thread Andrea Aime
No objection here

Cheers
Andrea

On Sun, Aug 16, 2015 at 6:18 PM, Christian Mueller <
christian.muel...@os-solutions.at> wrote:

> Hi all
>
> The issue is hiere
>
> https://osgeo-org.atlassian.net/browse/GEOT-5186
>
> I would like to backport https://github.com/geotools/geotools/pull/929.
>
> Only DB2 specific classes are affected and one of my customers has
> performance problems. The change does not change the default behavior and
> there is a boolean parameter you must set explicitly to activate the
> feature.
>
> Looking at the user mailing lists (goeserver/geotools) indicates that DB2
> users are rare. No mails since some years. I fear my customer is the only
> one using DB2.
>
> Please vote
>
>
> --
> DI Christian Mueller MSc (GIS), MSc (IT-Security)
> OSS Open Source Solutions GmbH
>
>
>
> --
>
> ___
> GeoTools-Devel mailing list
> GeoTools-Devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geotools-devel
>
>


-- 
==
GeoServer Professional Services from the experts! Visit
http://goo.gl/it488V for more information.
==

Ing. Andrea Aime
@geowolf
Technical Lead

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax: +39 0584 1660272
mob: +39  339 8844549

http://www.geo-solutions.it
http://twitter.com/geosolutions_it

*AVVERTENZE AI SENSI DEL D.Lgs. 196/2003*

Le informazioni contenute in questo messaggio di posta elettronica e/o
nel/i file/s allegato/i sono da considerarsi strettamente riservate. Il
loro utilizzo è consentito esclusivamente al destinatario del messaggio,
per le finalità indicate nel messaggio stesso. Qualora riceviate questo
messaggio senza esserne il destinatario, Vi preghiamo cortesemente di
darcene notizia via e-mail e di procedere alla distruzione del messaggio
stesso, cancellandolo dal Vostro sistema. Conservare il messaggio stesso,
divulgarlo anche in parte, distribuirlo ad altri soggetti, copiarlo, od
utilizzarlo per finalità diverse, costituisce comportamento contrario ai
principi dettati dal D.Lgs. 196/2003.



The information in this message and/or attachments, is intended solely for
the attention and use of the named addressee(s) and may be confidential or
proprietary in nature or covered by the provisions of privacy act
(Legislative Decree June, 30 2003, no.196 - Italy's New Data Protection
Code).Any use not in accord with its purpose, any disclosure, reproduction,
copying, distribution, or either dissemination, either whole or partial, is
strictly forbidden except previous formal approval of the named
addressee(s). If you are not the intended recipient, please contact
immediately the sender by telephone, fax or e-mail and delete the
information in this message that has been received in error. The sender
does not give any warranty or accept liability as the content, accuracy or
completeness of sent messages and accepts no responsibility  for changes
made after they were sent or for other risks which arise as a result of
e-mail transmission, viruses, etc.

---
--
___
GeoTools-Devel mailing list
GeoTools-Devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geotools-devel


[Geotools-devel] Backport GEOT-5186 (DB2 SELECTIVITY CLAUSE) to 13.x

2015-08-16 Thread Christian Mueller
Hi all

The issue is hiere

https://osgeo-org.atlassian.net/browse/GEOT-5186

I would like to backport https://github.com/geotools/geotools/pull/929.

Only DB2 specific classes are affected and one of my customers has
performance problems. The change does not change the default behavior and
there is a boolean parameter you must set explicitly to activate the
feature.

Looking at the user mailing lists (goeserver/geotools) indicates that DB2
users are rare. No mails since some years. I fear my customer is the only
one using DB2.

Please vote


-- 
DI Christian Mueller MSc (GIS), MSc (IT-Security)
OSS Open Source Solutions GmbH
--
___
GeoTools-Devel mailing list
GeoTools-Devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geotools-devel


Re: [Geotools-devel] SLD Stroke Dasharray Property

2015-08-16 Thread Igor Volkov
In order to clarify the essence of my doubts about the expected behavior of
the method float[] Stroke.getDashArray() I have add new test in
SLDStyleTest:

Stroke stroke = sf.createStroke(null, null);
assertNull(stroke.getDashArray());

List dashArray = stroke.dashArray();
dashArray.add(ff.literal("5"));
dashArray.add(ff.literal("10"));
assertTrue(Arrays.equals(new float[]{5, 10},  stroke.getDashArray()));

dashArray.add(ff.property("dash_size"));
assertTrue(Arrays.equals(new float[]{},  stroke.getDashArray()));

Stroke stroke2 = sf.createStroke(null, null, null,
null, null, new float[]{5, 10}, null,
null, null);
assertTrue(Arrays.equals(new float[]{5, 10},  stroke2.getDashArray()));

Is this the behavior that users of method getDashArray() can expect?



--
View this message in context: 
http://osgeo-org.1560.x6.nabble.com/SLD-Stroke-Dasharray-Property-tp5083512p5219894.html
Sent from the geotools-devel mailing list archive at Nabble.com.

--
___
GeoTools-Devel mailing list
GeoTools-Devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geotools-devel