Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GLUTEN-6834][CORE] Remove unused DDL plan that doesn't correspond to Substrait spec #6833

Merged
merged 1 commit into from
Aug 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

25 changes: 0 additions & 25 deletions gluten-core/src/main/resources/substrait/proto/substrait/ddl.proto

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
*/
package org.apache.gluten.substrait

import org.apache.gluten.substrait.ddlplan.InsertOutputNode

import java.lang.{Long => JLong}
import java.security.InvalidParameterException
import java.util.{ArrayList => JArrayList, HashMap => JHashMap, List => JList, Map => JMap}
Expand Down Expand Up @@ -64,16 +62,9 @@ class SubstraitContext extends Serializable {
private val aggregationParamsMap = new JHashMap[JLong, AggregationParams]()

private var iteratorIndex: JLong = 0L
private var insertOutputNode: InsertOutputNode = _
private var operatorId: JLong = 0L
private var relId: JLong = 0L

def getInsertOutputNode: InsertOutputNode = insertOutputNode

def setInsertOutputNode(insertOutputNode: InsertOutputNode): Unit = {
this.insertOutputNode = insertOutputNode
}

def registerFunction(funcName: String): JLong = {
if (!functionMap.containsKey(funcName)) {
val newFunctionId: JLong = functionMap.size.toLong
Expand Down
Loading