mirror of
https://git.freebsd.org/ports.git
synced 2025-06-26 23:20:30 -04:00
PR: 186653 Submitted by: Jim (Ohlste.in) Reworked by: marino MonetDB is an open source column-oriented database management system developed at the Centrum Wiskunde & Informatica (CWI) in the Netherlands. It was designed to provide high performance on complex queries against large databases, such as combining tables with hundreds of columns and multi-million rows. MonetDB has been applied in high-performance applications for data mining, online analytical processing, geographic information systems, XML Query (XQuery), text and multimedia retrieval.
11 lines
452 B
Text
11 lines
452 B
Text
--- tools/merovingian/client/monetdb.c.orig 2014-02-03 15:56:43.493060136 +0100
|
|
+++ tools/merovingian/client/monetdb.c 2014-02-03 15:58:52.276051225 +0100
|
|
@@ -1196,7 +1196,7 @@
|
|
|
|
for (stats = orig; stats != NULL; stats = stats->next) {
|
|
if (type == INHERIT) {
|
|
- strncat(property, "=", sizeof(property));
|
|
+ strncat(property, "=", sizeof(property) - strlen(property) - 1);
|
|
p = property;
|
|
}
|
|
out = control_send(&res, mero_host, mero_port,
|