Skip to content

Commit a2c5c48

Browse files
author
Thomas Mahlberg
committed
Moved WHCF to DB namespace
1 parent bda30b1 commit a2c5c48

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

KustoSchemaTools/KustoTypes/WHCFG/FunctionRows.cs renamed to KustoSchemaTools/KustoTypes/DB/FunctionRows.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
namespace KustoSchemaTools.KustoTypes.WHCFG
1+
namespace KustoSchemaTools.KustoTypes.DB
22
{
33
internal class FunctionRows
44
{
5-
5+
66
public string Name { get; set; }
77
public string Parameters { get; set; }
88
public string Body { get; set; }

KustoSchemaTools/KustoTypes/WHCFG/MaterializedViewRows.cs renamed to KustoSchemaTools/KustoTypes/DB/MaterializedViewRows.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using KustoSchemaTools.Model;
22

3-
namespace KustoSchemaTools.KustoTypes.WHCFG
3+
namespace KustoSchemaTools.KustoTypes.DB
44
{
55
public class MaterializedViewRows
66
{

KustoSchemaTools/KustoTypes/WHCFG/PrincipalRow.cs renamed to KustoSchemaTools/KustoTypes/DB/PrincipalRow.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using KustoSchemaTools.Model;
22

3-
namespace KustoSchemaTools.KustoTypes.WHCFG
3+
namespace KustoSchemaTools.KustoTypes.DB
44
{
55
public class PrincipalRow
66
{
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
using KustoSchemaTools.Model;
22

3-
namespace KustoSchemaTools.KustoTypes.WHCFG
3+
namespace KustoSchemaTools.KustoTypes.DB
44
{
55
public class TableRows
6-
{
6+
{
77
public string TableName { get; set; }
88
public string DocString { get; set; }
99
public string Folder { get; set; }
1010
public List<UpdatePolicy> UpdatePolicies { get; set; }
1111
public RetentionAndCachePolicy RetentionAndCachePolicy { get; set; }
1212
public bool RestrictedViewAccess { get; set; }
1313
public string RowLevelSecurity { get; set; }
14-
public Dictionary<string,string> Columns { get; set; }
14+
public Dictionary<string, string> Columns { get; set; }
1515

1616
}
1717
}

KustoSchemaTools/Parser/KustoLoader/KustoDatabasePrincipalLoader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using Kusto.Data.Common;
2-
using KustoSchemaTools.KustoTypes.WHCFG;
2+
using KustoSchemaTools.KustoTypes.DB;
33
using KustoSchemaTools.Model;
44
using KustoSchemaTools.Plugins;
55

0 commit comments

Comments
 (0)