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

- Add ST_Z
This commit is contained in:
Lukas Eder 2021-11-18 20:42:48 +01:00
parent 5a99d6da22
commit e77df40080
5 changed files with 232 additions and 0 deletions

View File

@ -21682,6 +21682,32 @@ public class DSL {

View File

@ -457,6 +457,7 @@ final class Names {
static final Name N_ST_WITHIN = unquotedName("st_within");
static final Name N_ST_X = unquotedName("st_x");
static final Name N_ST_Y = unquotedName("st_y");
static final Name N_ST_Z = unquotedName("st_z");
static final Name N_SUBSTRING = unquotedName("substring");
static final Name N_SUBSTRING_INDEX = unquotedName("substring_index");
static final Name N_SUM = unquotedName("sum");

View File

@ -331,6 +331,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;
@ -7804,6 +7805,12 @@ final class DefaultParseContext extends AbstractScope implements ParseContext {
@ -8516,6 +8523,11 @@ final class DefaultParseContext extends AbstractScope implements ParseContext {
}
else if (parseFunctionNameIf("ST_Z") && requireProEdition()) {
}
break;

View File

@ -5506,6 +5506,22 @@ public final class QOM {

View File

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