MCPcopy Create free account
hub / github.com/featureform/featureform / IsSQLTransformation

Method IsSQLTransformation

metadata/client.go:2093–2098  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2091}
2092
2093func (variant *SourceVariant) IsSQLTransformation() bool {
2094 if !variant.IsTransformation() {
2095 return false
2096 }
2097 return reflect.TypeOf(variant.serialized.GetTransformation().Type) == reflect.TypeOf(&pb.Transformation_SQLTransformation{})
2098}
2099
2100func (variant *SourceVariant) SQLTransformationQuery() string {
2101 if !variant.IsSQLTransformation() {

Callers 12

getSourceStringFunction · 0.80
getSourceTypeFunction · 0.80
TestMethod · 0.80
getInputsFunction · 0.80
getSourceStringFunction · 0.80
getSourceTypeFunction · 0.80
runRegisterSourceJobMethod · 0.80
runLabelRegisterJobMethod · 0.80

Calls 2

IsTransformationMethod · 0.95
GetTransformationMethod · 0.80

Tested by 1

TestMethod · 0.64