Package com.sap.hadoop.windowing.query

Examples of com.sap.hadoop.windowing.query.TableFuncSpec



    // $ANTLR start query
    // QSpecBuilder.g:94:1: query : ^( QUERY tf= tableSpec select ( funclist )? ( where )? ( outputClause )? ) ;
    public final void query() throws RecognitionException {
        TableFuncSpec tf = null;


        try {
            // QSpecBuilder.g:94:7: ( ^( QUERY tf= tableSpec select ( funclist )? ( where )? ( outputClause )? ) )
            // QSpecBuilder.g:95:4: ^( QUERY tf= tableSpec select ( funclist )? ( where )? ( outputClause )? )
View Full Code Here


    // $ANTLR start tableSpec
    // QSpecBuilder.g:98:1: tableSpec returns [TableFuncSpec tf] : ( hdfsFile | hiveTable | hiveQuery | tf1= tblfunc );
    public final TableFuncSpec tableSpec() throws RecognitionException {
        PartOrderScope_stack.push(new PartOrderScope_scope());

        TableFuncSpec tf = null;

        TableFuncSpec tf1 = null;



          ((PartOrderScope_scope)PartOrderScope_stack.peek()).partitionColumns = qSpec.getTableIn().getPartitionColumns();
          ((PartOrderScope_scope)PartOrderScope_stack.peek()).orderColumns = qSpec.getTableIn().getOrderColumns();
View Full Code Here

    // $ANTLR start tblfunc
    // QSpecBuilder.g:111:1: tblfunc returns [TableFuncSpec tf] : ^( TBLFUNCTION name= ID tf1= tableSpec (p= functionparam )* ( partitionby )? ( orderby )? (w= window_expression )? ) ;
    public final TableFuncSpec tblfunc() throws RecognitionException {
        PartOrderScope_stack.push(new PartOrderScope_scope());

        TableFuncSpec tf = null;

        CommonTree name=null;
        TableFuncSpec tf1 = null;

        FuncArg p = null;

        Window w = null;



          tf = new TableFuncSpec();
          ((PartOrderScope_scope)PartOrderScope_stack.peek()).partitionColumns = tf.getPartitionColumns();
          ((PartOrderScope_scope)PartOrderScope_stack.peek()).orderColumns = tf.getOrderColumns();

        try {
            // QSpecBuilder.g:127:1: ( ^( TBLFUNCTION name= ID tf1= tableSpec (p= functionparam )* ( partitionby )? ( orderby )? (w= window_expression )? ) )
View Full Code Here

TOP

Related Classes of com.sap.hadoop.windowing.query.TableFuncSpec

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.