Package com.facebook.presto.sql.tree

Examples of com.facebook.presto.sql.tree.SortItem


        return ImmutableList.<Relation>of(new TableSubquery(query));
    }

    public static SortItem ascending(String name)
    {
        return new SortItem(nameReference(name), SortItem.Ordering.ASCENDING, SortItem.NullOrdering.UNDEFINED);
    }
View Full Code Here


        return ImmutableList.<Relation>of(new TableSubquery(query));
    }

    public static SortItem ascending(String name)
    {
        return new SortItem(nameReference(name), SortItem.Ordering.ASCENDING, SortItem.NullOrdering.UNDEFINED);
    }
View Full Code Here

TOP

Related Classes of com.facebook.presto.sql.tree.SortItem

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.