[jOOQ/jOOQ#14648] Add Spatial support to Snowflake

This commit is contained in:
Lukas Eder 2023-02-21 12:48:29 +01:00
parent abf66f37bd
commit 14a62a47ef

View File

@ -801,12 +801,7 @@ public class DefaultBinding<T, U> implements Binding<T, U> {
}
// [#7242] [#13252] Other vendor specific types also need a lot of casting
if (dataType.isJSON()
|| dataType.isXML()
) {
if (dataType.isJSON() || dataType.isXML()) {
switch (ctx.family()) {
@ -822,6 +817,20 @@ public class DefaultBinding<T, U> implements Binding<T, U> {
@ -5473,6 +5482,12 @@ public class DefaultBinding<T, U> implements Binding<T, U> {