[jOOQ/jOOQ#982] Add support for GIS extensions

- Support ST_GeometryN, ST_NumGeometries
This commit is contained in:
Lukas Eder 2021-11-13 16:47:35 +01:00
parent ebc4d8d6e2
commit bc5de9c233
9 changed files with 1218 additions and 0 deletions

View File

@ -21439,6 +21439,194 @@ public class DSL {

View File

@ -435,13 +435,18 @@ final class Names {
static final Name N_ST_DISTANCE = unquotedName("st_distance");
static final Name N_ST_ENDPOINT = unquotedName("st_endpoint");
static final Name N_ST_EQUALS = unquotedName("st_equals");
static final Name N_ST_EXTERIORRING = unquotedName("st_exteriorring");
static final Name N_ST_GEOMETRYN = unquotedName("st_geometryn");
static final Name N_ST_GEOMETRYTYPE = unquotedName("st_geometrytype");
static final Name N_ST_GEOMFROMTEXT = unquotedName("st_geomfromtext");
static final Name N_ST_INTERIORRINGN = unquotedName("st_interiorringn");
static final Name N_ST_INTERSECTION = unquotedName("st_intersection");
static final Name N_ST_INTERSECTS = unquotedName("st_intersects");
static final Name N_ST_ISCLOSED = unquotedName("st_isclosed");
static final Name N_ST_ISEMPTY = unquotedName("st_isempty");
static final Name N_ST_LENGTH = unquotedName("st_length");
static final Name N_ST_NUMGEOMETRIES = unquotedName("st_numgeometries");
static final Name N_ST_NUMINTERIORRING = unquotedName("st_numinteriorring");
static final Name N_ST_NUMPOINTS = unquotedName("st_numpoints");
static final Name N_ST_OVERLAPS = unquotedName("st_overlaps");
static final Name N_ST_POINTN = unquotedName("st_pointn");

View File

@ -325,6 +325,11 @@ import static org.jooq.impl.DSL.square;
// ...
// ...
// ...
// ...
// ...
// ...
// ...
// ...
import static org.jooq.impl.DSL.stddevPop;
import static org.jooq.impl.DSL.stddevSamp;
import static org.jooq.impl.DSL.sum;
@ -7763,6 +7768,16 @@ final class DefaultParseContext extends AbstractScope implements ParseContext {
@ -8364,6 +8379,16 @@ final class DefaultParseContext extends AbstractScope implements ParseContext {
}
else if (parseFunctionNameIf("ST_EXTERIORRING") && requireProEdition()) {
}
else if (parseFunctionNameIf("ST_GEOMETRYN") && requireProEdition()) {
}
else if (parseFunctionNameIf("ST_GEOMETRYTYPE") && requireProEdition()) {
@ -8374,6 +8399,11 @@ final class DefaultParseContext extends AbstractScope implements ParseContext {
}
else if (parseFunctionNameIf("ST_INTERIORRINGN") && requireProEdition()) {
}
else if (parseFunctionNameIf("ST_INTERSECTION") && requireProEdition()) {
@ -8384,6 +8414,16 @@ final class DefaultParseContext extends AbstractScope implements ParseContext {
}
else if (parseFunctionNameIf("ST_NUMINTERIORRING", "ST_NUMINTERIORRINGS") && requireProEdition()) {
}
else if (parseFunctionNameIf("ST_NUMGEOMETRIES") && requireProEdition()) {
}
else if (parseFunctionNameIf("ST_NUMPOINTS") && requireProEdition()) {

View File

@ -5400,6 +5400,90 @@ public final class QOM {

View File

@ -0,0 +1,173 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Other licenses:
* -----------------------------------------------------------------------------
* Commercial licenses for this work are available. These replace the above
* ASL 2.0 and offer limited warranties, support, maintenance, and commercial
* database integrations.
*
* For more information, please visit: http://www.jooq.org/licenses
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package org.jooq.impl;

View File

@ -0,0 +1,191 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Other licenses:
* -----------------------------------------------------------------------------
* Commercial licenses for this work are available. These replace the above
* ASL 2.0 and offer limited warranties, support, maintenance, and commercial
* database integrations.
*
* For more information, please visit: http://www.jooq.org/licenses
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package org.jooq.impl;

View File

@ -0,0 +1,191 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Other licenses:
* -----------------------------------------------------------------------------
* Commercial licenses for this work are available. These replace the above
* ASL 2.0 and offer limited warranties, support, maintenance, and commercial
* database integrations.
*
* For more information, please visit: http://www.jooq.org/licenses
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package org.jooq.impl;

View File

@ -0,0 +1,173 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Other licenses:
* -----------------------------------------------------------------------------
* Commercial licenses for this work are available. These replace the above
* ASL 2.0 and offer limited warranties, support, maintenance, and commercial
* database integrations.
*
* For more information, please visit: http://www.jooq.org/licenses
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package org.jooq.impl;

View File

@ -0,0 +1,173 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Other licenses:
* -----------------------------------------------------------------------------
* Commercial licenses for this work are available. These replace the above
* ASL 2.0 and offer limited warranties, support, maintenance, and commercial
* database integrations.
*
* For more information, please visit: http://www.jooq.org/licenses
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package org.jooq.impl;