Skip to content

Commit

Permalink
3
Browse files Browse the repository at this point in the history
  • Loading branch information
xinyiZzz committed Dec 25, 2024
1 parent 885ad5c commit 219c21f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -521,8 +521,8 @@ public void getStreamTables(final CommandGetTables command, final CallContext co
VarCharVector tableTypeVector = (VarCharVector) vectorSchemaRoot.getVector("table_type");
// VarBinaryVector schemaVector = (VarBinaryVector) vectorSchemaRoot.getVector("table_schema");

final int tablesCount = 0;
for (int i = 0; i < 0; i++) {
final int tablesCount = 1;
for (int i = 0; i < tablesCount; i++) {
catalogNameVector.setNull(i);
schemaNameVector.setSafe(i, new Text("1111"));
tableTypeVector.setSafe(i, new Text("2222"));
Expand Down

0 comments on commit 219c21f

Please sign in to comment.