File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed
Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -450,7 +450,6 @@ func (dc *staticDRMConfig) genRelationalTable(
450450 discoveryGenerationID int ,
451451 isNilResponseAlloed bool ,
452452) (relationaldto.RelationalTable , error ) {
453-
454453 tableName , err := dc .getTableName (tabAnn .GetHeirarchyIdentifiers (), discoveryGenerationID )
455454 if err != nil {
456455 return nil , err
Original file line number Diff line number Diff line change 11package util
22
33import (
4- "fmt"
54 "strings"
65
76 "github.com/stackql/any-sdk/anysdk"
@@ -42,10 +41,10 @@ func TrimSelectItemsKey(selectItemsKey string) string {
4241func (ta * simpleTableSchemaAnalyzer ) GetColumns () ([]Column , error ) {
4342 var rv []Column
4443 // This will be a function of method not schema
45- addressSpace , hasAddressSpace := ta .m .GetAddressSpace ()
46- if ! hasAddressSpace || addressSpace == nil {
47- return nil , fmt .Errorf ("no address space found for method %s" , ta .m .GetName ())
48- }
44+ // addressSpace, hasAddressSpace := ta.m.GetAddressSpace()
45+ // if !hasAddressSpace || addressSpace == nil {
46+ // return nil, fmt.Errorf("no address space found for method %s", ta.m.GetName())
47+ // }
4948 tableColumns := ta .s .Tabulate (false , "" ).GetColumns ()
5049 existingColumns := make (map [string ]struct {})
5150 for _ , col := range tableColumns {
You can’t perform that action at this time.
0 commit comments