File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -442,6 +442,21 @@ public override long TimestampResolutionInTicks
442
442
}
443
443
}
444
444
445
+ public override string GetIfExistsDropConstraint ( Table table , string name )
446
+ {
447
+ return GetIfExistsDropConstraint ( table , name , null ) ;
448
+ }
449
+
450
+ protected virtual string GetSelectExistingObject ( string name , Table table )
451
+ {
452
+ return GetSelectExistingObject ( name , table , null ) ;
453
+ }
454
+
455
+ public override string GetIfNotExistsCreateConstraint ( Table table , string name )
456
+ {
457
+ return GetIfNotExistsCreateConstraint ( table , name , null ) ;
458
+ }
459
+
445
460
public override string GetIfExistsDropConstraint ( Table table , string name , string defaultSchema )
446
461
{
447
462
string selectExistingObject = GetSelectExistingObject ( name , table , defaultSchema ) ;
You can’t perform that action at this time.
0 commit comments