[jOOQ/jOOQ#16844] Add support for ST_StartPoint and ST_EndPoint

This commit is contained in:
Lukas Eder 2024-06-21 12:04:28 +02:00
parent 02bb47216a
commit 4b7f12ad1b
3 changed files with 16 additions and 2 deletions

View File

@ -9576,7 +9576,7 @@ final class DefaultParseContext extends AbstractScope implements ParseContext {
}
else if (parseProFunctionNameIf("ST_ENDPOINT")) {
else if (parseProFunctionNameIf("ST_ENDPOINT", "SDO_LRS.GEOM_SEGMENT_END_PT")) {
@ -9665,7 +9665,7 @@ final class DefaultParseContext extends AbstractScope implements ParseContext {
}
else if (parseProFunctionNameIf("ST_STARTPOINT")) {
else if (parseProFunctionNameIf("ST_STARTPOINT", "SDO_LRS.GEOM_SEGMENT_START_PT")) {

View File

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

View File

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