[jOOQ/jOOQ#12736] Add support for ST_Transform

This commit is contained in:
Lukas Eder 2024-06-21 17:50:43 +02:00
parent 2d9b8dca31
commit cacf0f92b0
5 changed files with 287 additions and 0 deletions

View File

@ -27184,6 +27184,66 @@ public class DSL {

View File

@ -637,6 +637,7 @@ final class Names {
static final Name N_ST_SRID = systemName("st_srid");
static final Name N_ST_STARTPOINT = systemName("st_startpoint");
static final Name N_ST_TOUCHES = systemName("st_touches");
static final Name N_ST_TRANSFORM = systemName("st_transform");
static final Name N_ST_UNION = systemName("st_union");
static final Name N_ST_WITHIN = systemName("st_within");
static final Name N_ST_X = systemName("st_x");

View File

@ -9669,6 +9669,11 @@ final class DefaultParseContext extends AbstractScope implements ParseContext {
}
else if (parseProFunctionNameIf("ST_TRANSFORM", "SDO_CS.TRANSFORM")) {
}
else if (parseProFunctionNameIf("ST_UNION")) {

View File

@ -9563,6 +9563,44 @@ public final class QOM {

View File

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