예제 #1
0
파일: Subquery.cs 프로젝트: deveel/deveeldb
        private static SqlQueryExpression Form(PlSqlParser.SubqueryBasicElementsContext context, out IntoClause into)
        {
            var sub = context.subquery();
            if (sub != null && !sub.IsEmpty)
                return Form(sub, out into);

            return Form(context.queryBlock(), out into);
        }