Changeset: 3ded3fcc7d7d for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/3ded3fcc7d7d
Modified Files:
gdk/gdk_bbp.c
Branch: Sep2022
Log Message:
The wkba (GeometryA) type is deprecated.
This change will produce a warning in the logs when a column of this
type is detected during startup.
diffs (13 lines):
diff --git a/gdk/gdk_bbp.c b/gdk/gdk_bbp.c
--- a/gdk/gdk_bbp.c
+++ b/gdk/gdk_bbp.c
@@ -550,6 +550,9 @@ heapinit(BAT *b, const char *buf,
return -1;
}
+ if (strcmp(type, "wkba") == 0)
+ TRC_WARNING(GDK, "type wkba (SQL name: GeometryA) is
deprecated\n");
+
if (properties & ~0x0F81) {
TRC_CRITICAL(GDK, "unknown properties are set: incompatible
database on line %d of BBP.dir\n", lineno);
return -1;
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]