Changeset: 2609f10f7706 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/2609f10f7706 Branch: default Log Message:
Merge with Aug2024 branch. diffs (35 lines): diff --git a/ChangeLog.Aug2024 b/ChangeLog.Aug2024 --- a/ChangeLog.Aug2024 +++ b/ChangeLog.Aug2024 @@ -1,10 +1,3 @@ # ChangeLog file for devel # This file is updated with Maddlog -* Thu Oct 17 2024 Niels Nes <[email protected]> -- Changed generic Decimal handling (ie without digits/scale), old cased - mapped always into dec(18,3) now this is only done in case of create of - a column. In other cases the coercion to the correct decimal type is - based on the input data type. For *api (LANG*PY/C(pp)/R) we no longer - allow generic decimal type in the function definitions. - diff --git a/monetdb5/mal/mal_parser.c b/monetdb5/mal/mal_parser.c --- a/monetdb5/mal/mal_parser.c +++ b/monetdb5/mal/mal_parser.c @@ -407,7 +407,7 @@ MALlookahead(Client cntxt, str kw, int l !isdigit((unsigned char) (CURRENT(cntxt)[length]))) { return 1; } - /* check for captialized versions */ + /* check for capitalized versions */ for (i = 0; i < length; i++) if (tolower(CURRENT(cntxt)[i]) != kw[i]) return 0; @@ -901,7 +901,7 @@ typeElm(Client cntxt, int def) * The Parser * The client is responsible to collect the * input for parsing in a single string before calling the parser. - * Once the input is available parsing runs in a critial section for + * Once the input is available parsing runs in a critical section for * a single client thread. * * The parser uses the rigid structure of the language to speedup _______________________________________________ checkin-list mailing list -- [email protected] To unsubscribe send an email to [email protected]
