[jOOQ/jOOQ#12736] More spatial support

- ST_IsRing
This commit is contained in:
Lukas Eder 2024-06-21 10:51:42 +02:00
parent a8dda0b90d
commit 9ea22a633c
5 changed files with 211 additions and 0 deletions

View File

@ -622,6 +622,7 @@ final class Names {
static final Name N_ST_INTERSECTS = systemName("st_intersects");
static final Name N_ST_ISCLOSED = systemName("st_isclosed");
static final Name N_ST_ISEMPTY = systemName("st_isempty");
static final Name N_ST_ISRING = systemName("st_isring");
static final Name N_ST_ISSIMPLE = systemName("st_issimple");
static final Name N_ST_ISVALID = systemName("st_isvalid");
static final Name N_ST_LENGTH = systemName("st_length");

View File

@ -385,6 +385,7 @@ 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;
@ -6897,6 +6898,11 @@ final class DefaultParseContext extends AbstractScope implements ParseContext {
}
else if (parseProFunctionNameIf("ST_ISRING")) {
}
else if (parseProFunctionNameIf("ST_ISSIMPLE")) {
@ -8764,6 +8770,10 @@ final class DefaultParseContext extends AbstractScope implements ParseContext {

View File

@ -9545,6 +9545,25 @@ public final class QOM {

View File

@ -0,0 +1,174 @@
/*
* 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

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