MonetDB: Mar2018 - Typo in error message.

2018-07-24 Thread Sjoerd Mullender
Changeset: 3f30aaf80c76 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=3f30aaf80c76
Modified Files:
monetdb5/modules/mal/clients.c
Branch: Mar2018
Log Message:

Typo in error message.


diffs (27 lines):

diff --git a/monetdb5/modules/mal/clients.c b/monetdb5/modules/mal/clients.c
--- a/monetdb5/modules/mal/clients.c
+++ b/monetdb5/modules/mal/clients.c
@@ -332,7 +332,7 @@ CLTsetSessionTimeout(Client cntxt, MalBl
(void) mb;
sto=  *getArgReference_lng(stk,pci,1);
if( sto < 0)
-   throw(MAL,"timeout","Query time out should be > 0");
+   throw(MAL,"timeout","Query time out should be >= 0");
cntxt->stimeout = sto * 1000 * 1000;
 return MAL_SUCCEED;
 }
@@ -344,12 +344,12 @@ CLTsetTimeout(Client cntxt, MalBlkPtr mb
(void) mb;
qto=  *getArgReference_lng(stk,pci,1);
if( qto < 0)
-   throw(MAL,"timeout","Query time out should be > 0");
+   throw(MAL,"timeout","Query time out should be >= 0");
cntxt->qtimeout = qto * 1000 * 1000;
if ( pci->argc == 3){
sto=  *getArgReference_lng(stk,pci,2);
if( sto < 0)
-   throw(MAL,"timeout","Session time out should be > 0");
+   throw(MAL,"timeout","Session time out should be >= 0");
cntxt->stimeout = sto * 1000 * 1000;
}
 return MAL_SUCCEED;
___
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list


MonetDB: Mar2018 - Typo.

2018-05-24 Thread Sjoerd Mullender
Changeset: ca76c2bdbc49 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=ca76c2bdbc49
Modified Files:
debian/fix-deb.sh
Branch: Mar2018
Log Message:

Typo.


diffs (11 lines):

diff --git a/debian/fix-deb.sh b/debian/fix-deb.sh
--- a/debian/fix-deb.sh
+++ b/debian/fix-deb.sh
@@ -64,6 +64,6 @@ wheezy)
 ;;
 trusty)
 # the trusty linker produces unresolved references to openSSL functions
-sed -i '/openssl_LIBS/s/WIN32\?//' clients/mapilib/Makefile.ag
+sed -i '/openssl_LIBS/s/WIN32?//' clients/mapilib/Makefile.ag
 ;;
 esac
___
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list


MonetDB: Mar2018 - Typo in comment

2018-05-16 Thread Jennie Zhang
Changeset: 1d6d54840d76 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=1d6d54840d76
Modified Files:
clients/mapiclient/mclient.c
Branch: Mar2018
Log Message:

Typo in comment


diffs (12 lines):

diff --git a/clients/mapiclient/mclient.c b/clients/mapiclient/mclient.c
--- a/clients/mapiclient/mclient.c
+++ b/clients/mapiclient/mclient.c
@@ -1976,7 +1976,7 @@ format_result(Mapi mid, MapiHdl hdl, boo
} while (!mnstr_errnr(toConsole) && (rc = mapi_next_result(hdl)) == 1);
/*
 * in case we called timerHuman() in the loop above with "total == 
false",
-* call is again with "total == true" to get the total wall-clock time
+* call it again with "total == true" to get the total wall-clock time
 * in case "singleinstr == false".
 */
if (timerHumanCalled)
___
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list


MonetDB: Mar2018 - Typo.

2018-05-15 Thread Sjoerd Mullender
Changeset: 2071f969b5e9 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=2071f969b5e9
Modified Files:
configure.ag
Branch: Mar2018
Log Message:

Typo.


diffs (12 lines):

diff --git a/configure.ag b/configure.ag
--- a/configure.ag
+++ b/configure.ag
@@ -3084,7 +3084,7 @@ for comp in \
'zlib   ' \
 ; do
AS_VAR_COPY([org], [org_have_$comp])
-   AS_VAR_COPY([have], [org_have_$comp])
+   AS_VAR_COPY([have], [have_$comp])
AS_VAR_COPY([why_not], [why_not_$comp])
 
AS_CASE([$why_not-$have-$org],
___
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list


MonetDB: Mar2018 - Typo in comment.

2018-04-30 Thread Sjoerd Mullender
Changeset: 0362f2b54f41 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=0362f2b54f41
Modified Files:
sql/storage/bat/bat_logger.c
Branch: Mar2018
Log Message:

Typo in comment.


diffs (12 lines):

diff --git a/sql/storage/bat/bat_logger.c b/sql/storage/bat/bat_logger.c
--- a/sql/storage/bat/bat_logger.c
+++ b/sql/storage/bat/bat_logger.c
@@ -171,7 +171,7 @@ bl_postversion( void *lg)
if (func) {
/* Either the catalog needs to be updated and
 * the geom module has been loaded
-* (geomUpgrade == 1), or the catalog new
+* (geomUpgrade == 1), or the catalog knew
 * nothing about geometries but the geom
 * module is loaded (geomUpgrade == 0) */
(*func)(lg, geomUpgrade);
___
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list


MonetDB: Mar2018 - Typo.

2018-03-23 Thread Sjoerd Mullender
Changeset: 39f728dbd170 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=39f728dbd170
Modified Files:
gdk/gdk_join.c
Branch: Mar2018
Log Message:

Typo.


diffs (12 lines):

diff --git a/gdk/gdk_join.c b/gdk/gdk_join.c
--- a/gdk/gdk_join.c
+++ b/gdk/gdk_join.c
@@ -1721,7 +1721,7 @@ mergejoin(BAT *r1, BAT *r2, BAT *l, BAT 
}
}
if (lskipped)
-   r1->tdense &= false;
+   r1->tdense = false;
if (r1->trevsorted && BATcount(r1) > 1)
r1->trevsorted = false;
} else {
___
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list


MonetDB: Mar2018 - typo

2018-03-22 Thread Stefan Manegold
Changeset: effddb2acebc for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=effddb2acebc
Modified Files:
clients/mapiclient/mclient.c
Branch: Mar2018
Log Message:

typo


diffs (12 lines):

diff --git a/clients/mapiclient/mclient.c b/clients/mapiclient/mclient.c
--- a/clients/mapiclient/mclient.c
+++ b/clients/mapiclient/mclient.c
@@ -269,7 +269,7 @@ timerHuman(int64_t sqloptimizer, int64_t
 
/*
 * report only the times we do actually measure:
-* - client-measured wall-clock time per query only when executing 
indivual queries,
+* - client-measured wall-clock time per query only when executing 
individual queries,
 *   otherwise only the total wall-clock time at the end of a batch;
 * - server-measured detailed performance measures only per query.
 */
___
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list


MonetDB: Mar2018 - Typo.

2018-03-14 Thread Sjoerd Mullender
Changeset: facff9e66fa3 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=facff9e66fa3
Modified Files:
clients/mapiclient/tomograph.c
Branch: Mar2018
Log Message:

Typo.


diffs (12 lines):

diff --git a/clients/mapiclient/tomograph.c b/clients/mapiclient/tomograph.c
--- a/clients/mapiclient/tomograph.c
+++ b/clients/mapiclient/tomograph.c
@@ -8,7 +8,7 @@
 
 /* (c) M Kersten, S Manegold
  * The easiest calling method is something like:
- * tomograph -d demo --atlast=10
+ * tomograph -d demo --atlas=10
  * which connects to the demo database server and
  * will collect the tomograph pages for at most 10 SQL queries
  * For each page a gnuplot file, a data file, and the event trace
___
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list


MonetDB: Mar2018 - Typo in test name.

2018-02-23 Thread Sjoerd Mullender
Changeset: 02a80145c406 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=02a80145c406
Added Files:
sql/test/Users/Tests/grantAndRevokeUserLoggedIN.Bug-3476.SQL.py
sql/test/Users/Tests/grantAndRevokeUserLoggedIN.Bug-3476.stable.err
sql/test/Users/Tests/grantAndRevokeUserLoggedIN.Bug-3476.stable.out
Removed Files:
sql/test/Users/Tests/grantAndRevokeUserLogedIN.Bug-3476.SQL.py
sql/test/Users/Tests/grantAndRevokeUserLogedIN.Bug-3476.stable.err
sql/test/Users/Tests/grantAndRevokeUserLogedIN.Bug-3476.stable.out
Modified Files:
sql/test/Users/Tests/All
Branch: Mar2018
Log Message:

Typo in test name.


diffs (55 lines):

diff --git a/sql/test/Users/Tests/All b/sql/test/Users/Tests/All
--- a/sql/test/Users/Tests/All
+++ b/sql/test/Users/Tests/All
@@ -17,7 +17,7 @@ changePasswordUser
 renameUser
 changeSchemaUser
 role
-HAVE_PYMONETDB?grantAndRevokeUserLogedIN.Bug-3476
+HAVE_PYMONETDB?grantAndRevokeUserLoggedIN.Bug-3476
 grantRevokeAndGrantAgain.Bug-3765
 grantMonetdbToRegularUser.Bug-3771
 grantMonetdbToSchemaOwner.Bug-3771
diff --git a/sql/test/Users/Tests/grantAndRevokeUserLogedIN.Bug-3476.SQL.py 
b/sql/test/Users/Tests/grantAndRevokeUserLoggedIN.Bug-3476.SQL.py
rename from sql/test/Users/Tests/grantAndRevokeUserLogedIN.Bug-3476.SQL.py
rename to sql/test/Users/Tests/grantAndRevokeUserLoggedIN.Bug-3476.SQL.py
diff --git a/sql/test/Users/Tests/grantAndRevokeUserLogedIN.Bug-3476.stable.err 
b/sql/test/Users/Tests/grantAndRevokeUserLoggedIN.Bug-3476.stable.err
rename from sql/test/Users/Tests/grantAndRevokeUserLogedIN.Bug-3476.stable.err
rename to sql/test/Users/Tests/grantAndRevokeUserLoggedIN.Bug-3476.stable.err
--- a/sql/test/Users/Tests/grantAndRevokeUserLogedIN.Bug-3476.stable.err
+++ b/sql/test/Users/Tests/grantAndRevokeUserLoggedIN.Bug-3476.stable.err
@@ -1,4 +1,4 @@
-stderr of test 'grantAndRevokeUserLogedIN.Bug-3476` in directory 
'sql/test/Users` itself:
+stderr of test 'grantAndRevokeUserLoggedIN.Bug-3476` in directory 
'sql/test/Users` itself:
 
 
 # 10:42:58 >  
@@ -27,7 +27,7 @@ stderr of test 'grantAndRevokeUserLogedI
 # cmdline opt  gdk_debug = 536870922
 
 # 10:42:59 >  
-# 10:42:59 >  "/usr/bin/python2" "grantAndRevokeUserLogedIN.SQL.py" 
"grantAndRevokeUserLogedIN"
+# 10:42:59 >  "/usr/bin/python2" "grantAndRevokeUserLoggedIN.SQL.py" 
"grantAndRevokeUserLoggedIN"
 # 10:42:59 >  
 
 
diff --git a/sql/test/Users/Tests/grantAndRevokeUserLogedIN.Bug-3476.stable.out 
b/sql/test/Users/Tests/grantAndRevokeUserLoggedIN.Bug-3476.stable.out
rename from sql/test/Users/Tests/grantAndRevokeUserLogedIN.Bug-3476.stable.out
rename to sql/test/Users/Tests/grantAndRevokeUserLoggedIN.Bug-3476.stable.out
--- a/sql/test/Users/Tests/grantAndRevokeUserLogedIN.Bug-3476.stable.out
+++ b/sql/test/Users/Tests/grantAndRevokeUserLoggedIN.Bug-3476.stable.out
@@ -1,4 +1,4 @@
-stdout of test 'grantAndRevokeUserLogedIN.Bug-3476` in directory 
'sql/test/Users` itself:
+stdout of test 'grantAndRevokeUserLoggedIN.Bug-3476` in directory 
'sql/test/Users` itself:
 
 
 # 10:44:33 >  
@@ -55,7 +55,7 @@ Ready.
 # loading sql script: 99_system.sql
 
 # 10:44:34 >  
-# 10:44:34 >  "/usr/bin/python2" "grantAndRevokeUserLogedIN.SQL.py" 
"grantAndRevokeUserLogedIN"
+# 10:44:34 >  "/usr/bin/python2" "grantAndRevokeUserLoggedIN.SQL.py" 
"grantAndRevokeUserLoggedIN"
 # 10:44:34 >  
 
 CREATE SCHEMA new_schema_as_well
___
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list


MonetDB: Mar2018 - Typo.

2018-02-23 Thread Sjoerd Mullender
Changeset: e88eae39c4f1 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=e88eae39c4f1
Modified Files:
monetdb5/mal/mal_readline.c
Branch: Mar2018
Log Message:

Typo.


diffs (12 lines):

diff --git a/monetdb5/mal/mal_readline.c b/monetdb5/mal/mal_readline.c
--- a/monetdb5/mal/mal_readline.c
+++ b/monetdb5/mal/mal_readline.c
@@ -115,7 +115,7 @@ readConsole(Client cntxt)
size_t len= strlen(buf);
if( len >= cntxt->fdin->size) {
char *nbuf;
-   /* extremly dirty inplace buffer overwriting */
+   /* extremely dirty inplace buffer overwriting */
nbuf= realloc(cntxt->fdin->buf, len+1);
if( nbuf == NULL) {
GDKerror("readConsole: " MAL_MALLOC_FAIL);
___
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list


MonetDB: Mar2018 - Typo.

2018-02-23 Thread Sjoerd Mullender
Changeset: db0ca0917991 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=db0ca0917991
Modified Files:
clients/odbc/setup/drvcfg.h
Branch: Mar2018
Log Message:

Typo.


diffs (14 lines):

diff --git a/clients/odbc/setup/drvcfg.h b/clients/odbc/setup/drvcfg.h
--- a/clients/odbc/setup/drvcfg.h
+++ b/clients/odbc/setup/drvcfg.h
@@ -44,8 +44,8 @@
  * CONSTANTS WHICH DO NOT EXIST ELSEWHERE
  /
 #ifndef TRUE
-#define FALSE 0;
-#define TRUE 1;
+#define FALSE 0
+#define TRUE 1
 #endif
 
 /*
___
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list