MonetDB: Oct2020 - Typo.

2021-05-07 Thread Sjoerd Mullender
Changeset: 5bddde10a5be for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/5bddde10a5be
Modified Files:
clients/odbc/ChangeLog.Oct2020
Branch: Oct2020
Log Message:

Typo.


diffs (10 lines):

diff --git a/clients/odbc/ChangeLog.Oct2020 b/clients/odbc/ChangeLog.Oct2020
--- a/clients/odbc/ChangeLog.Oct2020
+++ b/clients/odbc/ChangeLog.Oct2020
@@ -1,3 +1,6 @@
 # ChangeLog file for odbc
 # This file is updated with Maddlog
 
+* Fri May  7 2021 Sjoerd Mullender 
+- A typo that made the SQLSpecialColumns function unusable was fixed.
+
___
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list


MonetDB: Oct2020 - Typo.

2021-04-22 Thread Sjoerd Mullender
Changeset: 3012932b11d2 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/3012932b11d2
Modified Files:
sql/storage/sql_storage.h
Branch: Oct2020
Log Message:

Typo.


diffs (12 lines):

diff --git a/sql/storage/sql_storage.h b/sql/storage/sql_storage.h
--- a/sql/storage/sql_storage.h
+++ b/sql/storage/sql_storage.h
@@ -291,7 +291,7 @@ typedef struct store_functions {
 
snapshot_fptr save_snapshot;
 
-   /* rollforward the changes, first snapshot, then log and finaly apply */
+   /* rollforward the changes, first snapshot, then log and finally apply 
*/
update_table_fptr snapshot_table;
update_table_fptr log_table;
update_table_fptr update_table;
___
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list


MonetDB: Oct2020 - Typo.

2021-01-04 Thread Sjoerd Mullender
Changeset: 07d29bc30525 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=07d29bc30525
Modified Files:
monetdb5/modules/atoms/uuid.c
Branch: Oct2020
Log Message:

Typo.


diffs (12 lines):

diff --git a/monetdb5/modules/atoms/uuid.c b/monetdb5/modules/atoms/uuid.c
--- a/monetdb5/modules/atoms/uuid.c
+++ b/monetdb5/modules/atoms/uuid.c
@@ -365,7 +365,7 @@ UUIDhash(const void *v)
(ulng) u->u[10] << 40 | (ulng) u->u[11] << 32 |
(ulng) u->u[12] << 24 | (ulng) u->u[13] << 16 |
(ulng) u->u[14] << 8 | (ulng) u->u[15];
-   /* we're not using mix_hge since this we way get the same result
+   /* we're not using mix_hge since this way we get the same result
 * on systems with and without 128 bit integer support */
return (BUN) (mix_lng(u1) ^ mix_lng(u2));
 }
___
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list


MonetDB: Oct2020 - Typo.

2020-12-24 Thread Sjoerd Mullender
Changeset: bce550ed5ab0 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=bce550ed5ab0
Modified Files:
sql/server/rel_rel.c
Branch: Oct2020
Log Message:

Typo.


diffs (12 lines):

diff --git a/sql/server/rel_rel.c b/sql/server/rel_rel.c
--- a/sql/server/rel_rel.c
+++ b/sql/server/rel_rel.c
@@ -530,7 +530,7 @@ rel_setop_set_exps(mvc *sql, sql_rel *re
 
assert(is_set(rel->op) && list_length(lexps) == list_length(rexps) && 
list_length(exps) == list_length(lexps));
 
-   for (node *n = exps->h, *m = lexps->h, *o = rexps->h ; m && m && o ; n 
= n->next, m = m->next,o = o->next) {
+   for (node *n = exps->h, *m = lexps->h, *o = rexps->h ; m && n && o ; n 
= n->next, m = m->next,o = o->next) {
sql_exp *e = n->data, *f = m->data, *g = o->data;
 
if (is_union(rel->op)) { /* propagate set_has_no_nil only if 
it's applicable to both sides of the union*/
___
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list


MonetDB: Oct2020 - Typo.

2020-10-08 Thread Sjoerd Mullender
Changeset: daab03794a08 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=daab03794a08
Modified Files:
cmake/monetdb-defines.cmake
Branch: Oct2020
Log Message:

Typo.


diffs (12 lines):

diff --git a/cmake/monetdb-defines.cmake b/cmake/monetdb-defines.cmake
--- a/cmake/monetdb-defines.cmake
+++ b/cmake/monetdb-defines.cmake
@@ -14,7 +14,7 @@ function(monetdb_configure_defines)
   check_include_file("dispatch/dispatch.h" HAVE_DISPATCH_DISPATCH_H)
   check_include_file("dlfcn.h" HAVE_DLFCN_H)
   check_include_file("fcntl.h" HAVE_FCNTL_H)
-# use find_path for getop.h since we need the path on Windows
+# use find_path for getopt.h since we need the path on Windows
   find_path(HAVE_GETOPT_H "getopt.h")
   check_include_file("io.h" HAVE_IO_H)
   check_include_file("kvm.h" HAVE_KVM_H)
___
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list


MonetDB: Oct2020 - Typo

2020-09-30 Thread Pedro Ferreira
Changeset: 3aa3447d555d for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=3aa3447d555d
Modified Files:
tools/monetdbe/monetdbe.h
Branch: Oct2020
Log Message:

Typo


diffs (12 lines):

diff --git a/tools/monetdbe/monetdbe.h b/tools/monetdbe/monetdbe.h
--- a/tools/monetdbe/monetdbe.h
+++ b/tools/monetdbe/monetdbe.h
@@ -93,7 +93,7 @@ typedef struct {
int memorylimit;  // top off the amount of RAM to be used, in MB
int querytimeout;  // graceful terminate query after a few seconds
int sessiontimeout;  // graceful terminate the session after a few 
seconds
-   int nr_threads; // maximum number of worker 
treads, limits level of parallalism
+   int nr_threads;  // maximum number of worker treads, limits level of 
parallelism
 } monetdbe_options;
 
 #define DEFAULT_STRUCT_DEFINITION(ctype, typename) \
___
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list


MonetDB: Oct2020 - Typo

2020-09-17 Thread Pedro Ferreira
Changeset: 35d450a3e8a3 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=35d450a3e8a3
Modified Files:
sql/test/SQLancer/Tests/sqlancer07.sql
Branch: Oct2020
Log Message:

Typo


diffs (9 lines):

diff --git a/sql/test/SQLancer/Tests/sqlancer07.sql 
b/sql/test/SQLancer/Tests/sqlancer07.sql
--- a/sql/test/SQLancer/Tests/sqlancer07.sql
+++ b/sql/test/SQLancer/Tests/sqlancer07.sql
@@ -161,4 +161,4 @@ SELECT 1 WHERE (SELECT 1 WHERE FALSE) IS
-- 1
 
 PREPARE SELECT 1 WHERE greatest(true, ?);
-   -- ? should be set to true
+   -- ? should be set to boolean
___
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list


MonetDB: Oct2020 - Typo.

2020-09-15 Thread Sjoerd Mullender
Changeset: 3bf2c148abd6 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=3bf2c148abd6
Modified Files:
gdk/gdk_calc.c
Branch: Oct2020
Log Message:

Typo.


diffs (21 lines):

diff --git a/gdk/gdk_calc.c b/gdk/gdk_calc.c
--- a/gdk/gdk_calc.c
+++ b/gdk/gdk_calc.c
@@ -5622,7 +5622,7 @@ mul_##TYPE1##_##TYPE2##_##TYPE3(  
\
nils++; \
} else if (lft[i] == 0 || rgt[j] == 0) {\
dst[k] = 0; \
-   } else if (max / rgt[i] < lft[j]) { \
+   } else if (max / rgt[j] < lft[i]) { \
if (abort_on_error) \
ON_OVERFLOW(TYPE1, TYPE2, "*"); \
dst[k] = TYPE3##_nil;   \
@@ -5643,7 +5643,7 @@ mul_##TYPE1##_##TYPE2##_##TYPE3(  
\
nils++; \
} else if (lft[i] == 0 || rgt[j] == 0) {\
dst[k] = 0; \
-   } else if (max / rgt[i] < lft[j]) { \
+   } else if (max / rgt[j] < lft[i]) { \
if (abort_on_error) \
ON_OVERFLOW(TYPE1, TYPE2, "*"); \
dst[k] = TYPE3##_nil;   \
___
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list


MonetDB: Oct2020 - Typo.

2020-09-10 Thread Sjoerd Mullender
Changeset: 2117cfb6a726 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=2117cfb6a726
Modified Files:
gdk/gdk_system.c
Branch: Oct2020
Log Message:

Typo.


diffs (12 lines):

diff --git a/gdk/gdk_system.c b/gdk/gdk_system.c
--- a/gdk/gdk_system.c
+++ b/gdk/gdk_system.c
@@ -296,7 +296,7 @@ MT_thread_setalgorithm(const char *algo)
if (algo) {
if (w->algolen > 0) {
if (w->algolen < sizeof(w->algorithm))
-   w->algolen += 
strconcat_len(w->algorithm + l, sizeof(w->algorithm) - l, "; ", algo, NULL);
+   w->algolen += 
strconcat_len(w->algorithm + w->algolen, sizeof(w->algorithm) - w->algolen, "; 
", algo, NULL);
} else
w->algolen = strcpy_len(w->algorithm, algo, 
sizeof(w->algorithm));
} else {
___
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list


MonetDB: Oct2020 - Typo in comment

2020-09-09 Thread Martin van Dinther
Changeset: da5676c0c424 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=da5676c0c424
Modified Files:
sql/backends/monet5/sql_session.mal
Branch: Oct2020
Log Message:

Typo in comment


diffs (12 lines):

diff --git a/sql/backends/monet5/sql_session.mal 
b/sql/backends/monet5/sql_session.mal
--- a/sql/backends/monet5/sql_session.mal
+++ b/sql/backends/monet5/sql_session.mal
@@ -24,7 +24,7 @@ unsafe pattern sql.setsessiontimeout(sid
 address SQLsessionTimeout;
 unsafe pattern sql.setsessiontimeout(sid:int, n:int):void
 address SQLsessionTimeout
-comment "Set the session timeout for a particulat session id";
+comment "Set the session timeout for a particular session id";
 
 unsafe pattern sql.setoptimizer(opt:str):void
 address SQLsetoptimizer;
___
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list