Package com.foundationdb.server.service.text

Examples of com.foundationdb.server.service.text.FullTextQueryExpression


        protected RowStream assembleFullTextScan(FullTextScan textScan) {
            RowStream stream = new RowStream();
            FullTextQueryBuilder builder = new FullTextQueryBuilder(textScan.getIndex(),
                                                                    schema.ais(),
                                                                    planContext.getQueryContext());
            FullTextQueryExpression queryExpression = assembleFullTextQuery(textScan.getQuery(),
                                                                            builder);
            stream.operator = builder.scanOperator(queryExpression, textScan.getLimit());
            stream.rowType = stream.operator.rowType();
            return stream;
        }
View Full Code Here

TOP

Related Classes of com.foundationdb.server.service.text.FullTextQueryExpression

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.