You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (EnableTraceOutput <> true) then Transform else
158
-
// the if statement conditions will force the values to evaluated/written to diagnostics
159
-
if (Diagnostics.LogValue("SQLColumns.TableName", tableName) <> "***" and Diagnostics.LogValue("SQLColumns.ColumnName", columnName) <> "***") then
160
-
let
161
-
// Outputting the entire table might be too large, and result in the value being truncated.
162
-
// We can output a row at a time instead with Table.TransformRows()
163
-
rows = Table.TransformRows(Transform, each Diagnostics.LogValue("SQLColumns", _)),
164
-
toTable = Table.FromRecords(rows)
165
-
in
166
-
Value.ReplaceType(toTable, Value.Type(Transform))
167
-
else
168
-
Transform,
169
96
170
97
//
171
98
// Call to Odbc.DataSource
@@ -178,7 +105,7 @@ shared ODBCMySQLDirect.Database = (dsn as text) as table =>
178
105
// When HierarchialNavigation is set to true, the navigation tree
179
106
// will be organized by Database -> Schema -> Table. When set to false,
180
107
// all tables will be displayed in a flat list using fully qualified names.
181
-
HierarchicalNavigation = false,
108
+
HierarchicalNavigation = true,
182
109
//Prevent exposure of Native Query
183
110
HideNativeQuery = true,
184
111
//Allows the M engine to select a compatible data type when conversion between two specific numeric types is not declared as supported in the SQL_CONVERT_* capabilities.
@@ -189,13 +116,7 @@ shared ODBCMySQLDirect.Database = (dsn as text) as table =>
189
116
//Requires AstVisitor since Top is not supported in Postgres
0 commit comments