Repository: tajo Updated Branches: refs/heads/master 042c3e882 -> ab60d02e1
TAJO-680: Improve the IN operator to support sub queries (missing change). Project: http://git-wip-us.apache.org/repos/asf/tajo/repo Commit: http://git-wip-us.apache.org/repos/asf/tajo/commit/ab60d02e Tree: http://git-wip-us.apache.org/repos/asf/tajo/tree/ab60d02e Diff: http://git-wip-us.apache.org/repos/asf/tajo/diff/ab60d02e Branch: refs/heads/master Commit: ab60d02e14cfd9e774abfdf27f72c582ca952b55 Parents: 042c3e8 Author: Jihoon Son <[email protected]> Authored: Fri Aug 14 13:31:04 2015 +0900 Committer: Jihoon Son <[email protected]> Committed: Fri Aug 14 13:31:04 2015 +0900 ---------------------------------------------------------------------- .../tajo/algebra/SimpleTableSubQuery.java | 28 -------------------- .../tajo/algebra/SimpleTableSubquery.java | 28 ++++++++++++++++++++ 2 files changed, 28 insertions(+), 28 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tajo/blob/ab60d02e/tajo-algebra/src/main/java/org/apache/tajo/algebra/SimpleTableSubQuery.java ---------------------------------------------------------------------- diff --git a/tajo-algebra/src/main/java/org/apache/tajo/algebra/SimpleTableSubQuery.java b/tajo-algebra/src/main/java/org/apache/tajo/algebra/SimpleTableSubQuery.java deleted file mode 100644 index fd2f777..0000000 --- a/tajo-algebra/src/main/java/org/apache/tajo/algebra/SimpleTableSubQuery.java +++ /dev/null @@ -1,28 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.apache.tajo.algebra; - -public class SimpleTableSubquery extends CommonSubquery { - - public final static String TEMP_RELATION_NAME = "TempSubqueryName"; - - public SimpleTableSubquery(Expr subquery) { - super(OpType.SimpleTableSubquery, TEMP_RELATION_NAME, subquery); - } -} http://git-wip-us.apache.org/repos/asf/tajo/blob/ab60d02e/tajo-algebra/src/main/java/org/apache/tajo/algebra/SimpleTableSubquery.java ---------------------------------------------------------------------- diff --git a/tajo-algebra/src/main/java/org/apache/tajo/algebra/SimpleTableSubquery.java b/tajo-algebra/src/main/java/org/apache/tajo/algebra/SimpleTableSubquery.java new file mode 100644 index 0000000..fd2f777 --- /dev/null +++ b/tajo-algebra/src/main/java/org/apache/tajo/algebra/SimpleTableSubquery.java @@ -0,0 +1,28 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.tajo.algebra; + +public class SimpleTableSubquery extends CommonSubquery { + + public final static String TEMP_RELATION_NAME = "TempSubqueryName"; + + public SimpleTableSubquery(Expr subquery) { + super(OpType.SimpleTableSubquery, TEMP_RELATION_NAME, subquery); + } +}
