Changeset: 5eb0b26a70a3 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=5eb0b26a70a3 Added Files: sql/backends/monet5/41_sql_hge.mal Modified Files: sql/backends/monet5/Makefile.ag sql/backends/monet5/sql.mx Branch: int128 Log Message:
fixed `make dist` diffs (118 lines): diff --git a/sql/backends/monet5/41_sql_hge.mal b/sql/backends/monet5/41_sql_hge.mal new file mode 100644 --- /dev/null +++ b/sql/backends/monet5/41_sql_hge.mal @@ -0,0 +1,19 @@ +# The contents of this file are subject to the MonetDB Public License +# Version 1.1 (the "License"); you may not use this file except in +# compliance with the License. You may obtain a copy of the License at +# http://www.monetdb.org/Legal/MonetDBLicense +# +# Software distributed under the License is distributed on an "AS IS" +# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the +# License for the specific language governing rights and limitations +# under the License. +# +# The Original Code is the MonetDB Database System. +# +# The Initial Developer of the Original Code is CWI. +# Portions created by CWI are Copyright (C) 1997-July 2008 CWI. +# Copyright August 2008-2013 MonetDB B.V. +# All Rights Reserved. + +# This loads the 128-bit support for the MonetDB/SQL module +include sql_hge; diff --git a/sql/backends/monet5/Makefile.ag b/sql/backends/monet5/Makefile.ag --- a/sql/backends/monet5/Makefile.ag +++ b/sql/backends/monet5/Makefile.ag @@ -112,5 +112,5 @@ headers_hge = { SOURCES = 41_sql_hge.mal } -EXTRA_DIST = 40_sql.mal +EXTRA_DIST = 40_sql.mal 41_sql_hge.mal EXTRA_DIST_DIR = Tests diff --git a/sql/backends/monet5/sql.mx b/sql/backends/monet5/sql.mx --- a/sql/backends/monet5/sql.mx +++ b/sql/backends/monet5/sql.mx @@ -33,7 +33,7 @@ All Rights Reserved. module batsql; module sql; -@f 41_sql_hge +@f sql_hge @mal module sql; @@ -145,7 +145,7 @@ pattern assert(b:lng,msg:str):void address SQLassertLng comment "Generate an exception when b!=0"; -@f 41_sql_hge +@f sql_hge @mal pattern assert(b:hge,msg:str):void @@ -657,7 +657,7 @@ command batcalc.hash( b:bat[:oid,:int] ) pattern calc.hash( v:lng ) :wrd address MKEYhash; command batcalc.hash( b:bat[:oid,:lng] ) :bat[:oid,:wrd] address MKEYbathash; -@f 41_sql_hge +@f sql_hge @mal pattern calc.hash( v:hge ) :wrd address MKEYhash; @@ -714,7 +714,7 @@ comment "cast @1 decimal to a second_int @:mal_round(int)@ @:mal_round(lng)@ -@f 41_sql_hge +@f sql_hge @mal @:mal_round(hge)@ @@ -801,7 +801,7 @@ comment "cast to dec(@1) and check for o @:mal_cast(int)@ @:mal_cast(lng)@ -@f 41_sql_hge +@f sql_hge @mal @:mal_cast(hge)@ @@ -918,7 +918,7 @@ comment "cast number to decimal(@1) and @:mal_cast_2dec(wrd,flt)@ @:mal_cast_2dec(lng,flt)@ -@f 41_sql_hge +@f sql_hge @mal @:mal_cast_2dec(hge,flt)@ @@ -932,7 +932,7 @@ comment "cast number to decimal(@1) and @:mal_cast_2dec(wrd,dbl)@ @:mal_cast_2dec(lng,dbl)@ -@f 41_sql_hge +@f sql_hge @mal @:mal_cast_2dec(hge,dbl)@ @@ -997,7 +997,7 @@ comment "cast decimal(@2) to decimal(@1) @:mal_cast2(dbl,wrd)@ @:mal_cast2(dbl,lng)@ -@f 41_sql_hge +@f sql_hge @mal @:mal_cast2(bte,hge)@ @@ -8287,7 +8287,7 @@ end aggr.corr; @:analytic(wrd)@ @:analytic(lng)@ -@f 41_sql_hge +@f sql_hge @mal @:analytic(hge)@ _______________________________________________ checkin-list mailing list [email protected] https://www.monetdb.org/mailman/listinfo/checkin-list
