@@ -48,7 +48,7 @@ type Config interface {
4848 GetCurrentTable (internaldto.HeirarchyIdentifiers ) (internaldto.DBTable , error )
4949 GetRelationalType (string ) string
5050 GenerateDDL (util.AnnotatedTabulation , anysdk.Provider ,
51- anysdk.Service , anysdk.Resource , anysdk.StandardOperationStore ,
51+ anysdk.Service , anysdk.Resource , anysdk.StandardOperationStore , bool ,
5252 int , bool , bool ) ([]string , error )
5353 GetControlAttributes () sqlcontrol.ControlAttributes
5454 GetGolangValue (string ) interface {}
@@ -457,6 +457,7 @@ func (dc *staticDRMConfig) genRelationalTable(
457457 svc anysdk.Service ,
458458 resource anysdk.Resource ,
459459 m anysdk.StandardOperationStore ,
460+ isAwait bool ,
460461 discoveryGenerationID int ,
461462 isNilResponseAlloed bool ,
462463) (relationaldto.RelationalTable , error ) {
@@ -483,6 +484,7 @@ func (dc *staticDRMConfig) genRelationalTable(
483484 resource ,
484485 m ,
485486 m .GetProjections (),
487+ isAwait ,
486488 )
487489 addressSpaceErr := addressSpaceFormulator .Formulate ()
488490 if addressSpaceErr != nil {
@@ -521,12 +523,13 @@ func (dc *staticDRMConfig) GenerateDDL(
521523 svc anysdk.Service ,
522524 resource anysdk.Resource ,
523525 m anysdk.StandardOperationStore ,
526+ isAwait bool ,
524527 discoveryGenerationID int ,
525528 dropTable bool ,
526529 isNilResponseAlloed bool ,
527530) ([]string , error ) {
528531 relationalTable , err := dc .genRelationalTable (
529- tabAnn , prov , svc , resource , m , discoveryGenerationID , isNilResponseAlloed )
532+ tabAnn , prov , svc , resource , m , isAwait , discoveryGenerationID , isNilResponseAlloed )
530533 if err != nil {
531534 return nil , err
532535 }
0 commit comments