[jOOQ/jOOQ#12736] More spatial support

- ST_COVEREDBY
- ST_COVERS
This commit is contained in:
Lukas Eder 2024-06-18 11:27:04 +02:00
parent 434db6e94a
commit 9cb042dcaa
7 changed files with 527 additions and 7 deletions

View File

@ -26986,6 +26986,126 @@ public class DSL {

View File

@ -604,6 +604,8 @@ final class Names {
static final Name N_ST_ASWKB = systemName("st_aswkb");
static final Name N_ST_CENTROID = systemName("st_centroid");
static final Name N_ST_CONTAINS = systemName("st_contains");
static final Name N_ST_COVEREDBY = systemName("st_coveredby");
static final Name N_ST_COVERS = systemName("st_covers");
static final Name N_ST_CROSSES = systemName("st_crosses");
static final Name N_ST_DIFFERENCE = systemName("st_difference");
static final Name N_ST_DISJOINT = systemName("st_disjoint");

View File

@ -6855,6 +6855,16 @@ final class DefaultParseContext extends AbstractScope implements ParseContext {
}
else if (parseProFunctionNameIf("ST_COVEREDBY", "SDO_COVEREDBY")) {
}
else if (parseProFunctionNameIf("ST_COVERS", "SDO_COVERS")) {
}
else if (parseProFunctionNameIf("ST_CROSSES")) {

View File

@ -9476,6 +9476,36 @@ public final class QOM {

View File

@ -169,13 +169,6 @@ package org.jooq.impl;

View File

@ -0,0 +1,179 @@
/*
* 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
*
* https://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: https://www.jooq.org/legal/licensing
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package org.jooq.impl;

View File

@ -0,0 +1,186 @@
/*
* 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
*
* https://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: https://www.jooq.org/legal/licensing
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package org.jooq.impl;