Changeset: 97e5f6e61788 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=97e5f6e61788 Modified Files: clients/Tests/MAL-signatures_all.stable.out clients/Tests/MAL-signatures_fits_geom.stable.out clients/Tests/MAL-signatures_geom.stable.out clients/Tests/MAL-signatures_none.stable.out clients/Tests/exports.stable.out Branch: Oct2014 Log Message:
Approved after changeset 595ed57b0e63. diffs (107 lines): diff --git a/clients/Tests/MAL-signatures_all.stable.out b/clients/Tests/MAL-signatures_all.stable.out --- a/clients/Tests/MAL-signatures_all.stable.out +++ b/clients/Tests/MAL-signatures_all.stable.out @@ -40625,10 +40625,18 @@ comment Subtract seconds from a time command mtime.timestamp(t:timestamp):timestamp address MTIMEtimestamp2timestamp; +command mtime.timestamp_add_month_interval(t:timestamp,s:lng):timestamp +address MTIMEtimestamp_add_month_interval_lng_wrap; +comment Add months to a timestamp + command mtime.timestamp_add_month_interval(t:timestamp,s:int):timestamp address MTIMEtimestamp_add_month_interval_wrap; comment Add months to a timestamp +command mtime.timestamp_sub_month_interval(t:timestamp,s:lng):timestamp +address MTIMEtimestamp_sub_month_interval_lng_wrap; +comment Subtract months from a timestamp + command mtime.timestamp_sub_month_interval(t:timestamp,s:int):timestamp address MTIMEtimestamp_sub_month_interval_wrap; comment Subtract months from a timestamp diff --git a/clients/Tests/MAL-signatures_fits_geom.stable.out b/clients/Tests/MAL-signatures_fits_geom.stable.out --- a/clients/Tests/MAL-signatures_fits_geom.stable.out +++ b/clients/Tests/MAL-signatures_fits_geom.stable.out @@ -40542,10 +40542,18 @@ comment Subtract seconds from a time command mtime.timestamp(t:timestamp):timestamp address MTIMEtimestamp2timestamp; +command mtime.timestamp_add_month_interval(t:timestamp,s:lng):timestamp +address MTIMEtimestamp_add_month_interval_lng_wrap; +comment Add months to a timestamp + command mtime.timestamp_add_month_interval(t:timestamp,s:int):timestamp address MTIMEtimestamp_add_month_interval_wrap; comment Add months to a timestamp +command mtime.timestamp_sub_month_interval(t:timestamp,s:lng):timestamp +address MTIMEtimestamp_sub_month_interval_lng_wrap; +comment Subtract months from a timestamp + command mtime.timestamp_sub_month_interval(t:timestamp,s:int):timestamp address MTIMEtimestamp_sub_month_interval_wrap; comment Subtract months from a timestamp diff --git a/clients/Tests/MAL-signatures_geom.stable.out b/clients/Tests/MAL-signatures_geom.stable.out --- a/clients/Tests/MAL-signatures_geom.stable.out +++ b/clients/Tests/MAL-signatures_geom.stable.out @@ -40518,10 +40518,18 @@ comment Subtract seconds from a time command mtime.timestamp(t:timestamp):timestamp address MTIMEtimestamp2timestamp; +command mtime.timestamp_add_month_interval(t:timestamp,s:lng):timestamp +address MTIMEtimestamp_add_month_interval_lng_wrap; +comment Add months to a timestamp + command mtime.timestamp_add_month_interval(t:timestamp,s:int):timestamp address MTIMEtimestamp_add_month_interval_wrap; comment Add months to a timestamp +command mtime.timestamp_sub_month_interval(t:timestamp,s:lng):timestamp +address MTIMEtimestamp_sub_month_interval_lng_wrap; +comment Subtract months from a timestamp + command mtime.timestamp_sub_month_interval(t:timestamp,s:int):timestamp address MTIMEtimestamp_sub_month_interval_wrap; comment Subtract months from a timestamp diff --git a/clients/Tests/MAL-signatures_none.stable.out b/clients/Tests/MAL-signatures_none.stable.out --- a/clients/Tests/MAL-signatures_none.stable.out +++ b/clients/Tests/MAL-signatures_none.stable.out @@ -40331,10 +40331,18 @@ comment Subtract seconds from a time command mtime.timestamp(t:timestamp):timestamp address MTIMEtimestamp2timestamp; +command mtime.timestamp_add_month_interval(t:timestamp,s:lng):timestamp +address MTIMEtimestamp_add_month_interval_lng_wrap; +comment Add months to a timestamp + command mtime.timestamp_add_month_interval(t:timestamp,s:int):timestamp address MTIMEtimestamp_add_month_interval_wrap; comment Add months to a timestamp +command mtime.timestamp_sub_month_interval(t:timestamp,s:lng):timestamp +address MTIMEtimestamp_sub_month_interval_lng_wrap; +comment Subtract months from a timestamp + command mtime.timestamp_sub_month_interval(t:timestamp,s:int):timestamp address MTIMEtimestamp_sub_month_interval_wrap; comment Subtract months from a timestamp diff --git a/clients/Tests/exports.stable.out b/clients/Tests/exports.stable.out --- a/clients/Tests/exports.stable.out +++ b/clients/Tests/exports.stable.out @@ -1702,6 +1702,7 @@ str MTIMEtimestamp_GT(bit *retval, const str MTIMEtimestamp_LE(bit *retval, const timestamp *val1, const timestamp *val2); str MTIMEtimestamp_LT(bit *retval, const timestamp *val1, const timestamp *val2); str MTIMEtimestamp_add(timestamp *ret, const timestamp *v, const lng *msecs); +str MTIMEtimestamp_add_month_interval_lng_wrap(timestamp *ret, const timestamp *t, const lng *months); str MTIMEtimestamp_add_month_interval_wrap(timestamp *ret, const timestamp *t, const int *months); str MTIMEtimestamp_bulk(bat *ret, bat *bid); str MTIMEtimestamp_create(timestamp *ret, const date *d, const daytime *t, const tzone *z); @@ -1727,6 +1728,7 @@ str MTIMEtimestamp_minutes(int *ret, con str MTIMEtimestamp_month(int *ret, const timestamp *t); str MTIMEtimestamp_seconds(int *ret, const timestamp *t); str MTIMEtimestamp_sql_seconds(int *ret, const timestamp *t); +str MTIMEtimestamp_sub_month_interval_lng_wrap(timestamp *ret, const timestamp *t, const lng *months); str MTIMEtimestamp_sub_month_interval_wrap(timestamp *ret, const timestamp *t, const int *months); str MTIMEtimestamp_sub_msec_interval_lng_wrap(timestamp *ret, const timestamp *t, const lng *msec); str MTIMEtimestamp_timestamp(timestamp *d, const timestamp *s); _______________________________________________ checkin-list mailing list [email protected] https://www.monetdb.org/mailman/listinfo/checkin-list
