Changeset: 31c496d1ca2d for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=31c496d1ca2d
Removed Files:
        sql/backends/monet5/sql_sort.mal
Modified Files:
        sql/backends/monet5/sql.mal
Branch: default
Log Message:

Remove obsolete SQL specific sort code


diffs (45 lines):

diff --git a/sql/backends/monet5/sql.mal b/sql/backends/monet5/sql.mal
--- a/sql/backends/monet5/sql.mal
+++ b/sql/backends/monet5/sql.mal
@@ -1103,7 +1103,6 @@ include sql_aggr_lng;
 include sql_aggr_flt;
 include sql_aggr_dbl;
 include sql_inspect;
-include sql_sort;
 include sql_rdf;
 include sql_octopus;
 
diff --git a/sql/backends/monet5/sql_sort.mal b/sql/backends/monet5/sql_sort.mal
deleted file mode 100644
--- a/sql/backends/monet5/sql_sort.mal
+++ /dev/null
@@ -1,29 +0,0 @@
-# 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-2015 MonetDB B.V.
-# All Rights Reserved.
-
-function sql.sortTail( b:bat[:oid,:any_1]) :bat[:oid,:oid];
-       s := algebra.sortTail(b);
-       m := algebra.mark(s, 0:oid);
-       return bat.reverse(m);
-end sql.sortTail;
-
-function sql.sortReverseTail( b:bat[:oid,:any_1]) :bat[:oid,:oid];
-       s := algebra.sortReverseTail(b);
-       m := algebra.mark(s, 0:oid);
-       return bat.reverse(m);
-end sql.sortReverseTail;
-
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to