Skip to content

Commit 1edd4a2

Browse files
fix(csharp): address issue #546 (1 review thread)
Addresses: - #3463183641 at csharp/src/StatementExecution/StatementExecutionStatement.cs:1187
1 parent b464c75 commit 1edd4a2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

csharp/src/StatementExecution/StatementExecutionStatement.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1186,7 +1186,7 @@ private async Task<QueryResult> GetTablesAsync(CancellationToken cancellationTok
11861186
var refGenBuilder = new StringArray.Builder();
11871187
// Type-name comparison is case-sensitive against the uppercase server
11881188
// types (TABLE/VIEW/SYSTEM TABLE/...), matching JDBC's exact
1189-
// Arrays.asList(types).contains(...) and the Thrift path. An empty/whitespace
1189+
// Arrays.asList(types).contains(...) and the Thrift path. A null or empty
11901190
// filter means "all types" (handled by IsNullOrEmpty above), also matching JDBC.
11911191
var tableTypeFilter = !string.IsNullOrEmpty(_metadataTableTypes)
11921192
? new HashSet<string>(

0 commit comments

Comments
 (0)