public static bool GetIsHistoryTable(this RelationalTable table)
 {
     return(table.GetFlag("IsHistory"));
 }
 public static bool GetEtlRunInfoDisabled(this RelationalTable table)
 {
     return(table.GetFlag("NoEtlRunInfo"));
 }
 public static bool GetIsEtlRunInfo(this RelationalTable table)
 {
     return(table.GetFlag("EtlRunInfo"));
 }