Changeset: 976a921f2d82 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=976a921f2d82 Modified Files: monetdb5/modules/mal/sample.c monetdb5/modules/mal/sample.mal Branch: stratified_sampling Log Message:
remove wrd type from mal files diffs (42 lines): diff --git a/monetdb5/modules/mal/sample.c b/monetdb5/modules/mal/sample.c --- a/monetdb5/modules/mal/sample.c +++ b/monetdb5/modules/mal/sample.c @@ -17,7 +17,7 @@ * query, b) the base tables, and c) the entire database schema. Sampling * can be performed during query execution, as well as during data loading in * the case of predefined sampling indexes. In addition to the sampling - * methods, a number of query plan optimisations for sampling are introduced on + * methods, a number of query plan optimizations for sampling are introduced on * the SQL and MAL level. * * Besides the sampling methods, SciBORQ also aims at multi-layered bounded diff --git a/monetdb5/modules/mal/sample.mal b/monetdb5/modules/mal/sample.mal --- a/monetdb5/modules/mal/sample.mal +++ b/monetdb5/modules/mal/sample.mal @@ -20,7 +20,7 @@ command subuniform(b:bat[:any],p:dbl):ba address SAMPLEuniform_dbl comment "Returns the oids of a uniform sample (without replacement) of size = (p x count(b)), where 0 <= p <= 1.0"; -command subweighted(b:bat[:any],s:wrd,w:bat[:dbl]):bat[:oid] +command subweighted(b:bat[:any],s:lng,w:bat[:dbl]):bat[:oid] address SAMPLEweighted comment "Returns the oids of a weighted sample (without replacement) of size s"; @@ -29,7 +29,7 @@ address SAMPLEweighted_dbl comment "Returns the oids of a weighted sample (without replacement) of size = (p x count(b)), where 0 <= p <= 1.0"; -command subuniform_bitbat(b:bat[:any],s:wrd):bat[:bit] +command subuniform_bitbat(b:bat[:any],s:lng):bat[:bit] address SAMPLEuniform_bitbat comment "Returns the oids of a uniform sample (without replacement) of size s"; @@ -37,7 +37,7 @@ command subuniform_bitbat(b:bat[:any],p: address SAMPLEuniform_bitbat_dbl comment "Returns the oids of a uniform sample (without replacement) of size = (p x count(b)), where 0 <= p <= 1.0"; -command subweighted_bitbat(b:bat[:any],s:wrd,w:bat[:dbl]):bat[:bit] +command subweighted_bitbat(b:bat[:any],s:lng,w:bat[:dbl]):bat[:bit] address SAMPLEweighted_bitbat comment "Returns the oids of a weighted sample (without replacement) of size s"; _______________________________________________ checkin-list mailing list [email protected] https://www.monetdb.org/mailman/listinfo/checkin-list
