Skip to content

[Enhancement] (nereids)implement showColumnsCommand in nereids #45832

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
May 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,8 @@ supportedShowStatement
| SHOW OPEN TABLES ((FROM | IN) database=multipartIdentifier)? wildWhere? #showOpenTables
| SHOW FRONTENDS name=identifier? #showFrontends
| SHOW DATABASE databaseId=INTEGER_VALUE #showDatabaseId
| SHOW FULL? (COLUMNS | FIELDS) (FROM | IN) tableName=multipartIdentifier
((FROM | IN) database=multipartIdentifier)? wildWhere? #showColumns
| SHOW TABLE tableId=INTEGER_VALUE #showTableId
| SHOW TRASH (ON backend=STRING_LITERAL)? #showTrash
| SHOW (CLUSTERS | (COMPUTE GROUPS)) #showClusters
Expand Down Expand Up @@ -459,8 +461,6 @@ unsupportedShowStatement
| SHOW CREATE statementScope? FUNCTION functionIdentifier
LEFT_PAREN functionArguments? RIGHT_PAREN
((FROM | IN) database=multipartIdentifier)? #showCreateFunction
| SHOW FULL? (COLUMNS | FIELDS) (FROM | IN) tableName=multipartIdentifier
((FROM | IN) database=multipartIdentifier)? wildWhere? #showColumns
| SHOW LOAD WARNINGS ((((FROM | IN) database=multipartIdentifier)?
wildWhere? limitClause?) | (ON url=STRING_LITERAL)) #showLoadWarings
| SHOW EXPORT ((FROM | IN) database=multipartIdentifier)? wildWhere?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,7 @@
import org.apache.doris.nereids.DorisParser.ShowClustersContext;
import org.apache.doris.nereids.DorisParser.ShowCollationContext;
import org.apache.doris.nereids.DorisParser.ShowColumnHistogramStatsContext;
import org.apache.doris.nereids.DorisParser.ShowColumnsContext;
import org.apache.doris.nereids.DorisParser.ShowConfigContext;
import org.apache.doris.nereids.DorisParser.ShowConstraintContext;
import org.apache.doris.nereids.DorisParser.ShowConvertLscContext;
Expand Down Expand Up @@ -683,6 +684,7 @@
import org.apache.doris.nereids.trees.plans.commands.ShowClustersCommand;
import org.apache.doris.nereids.trees.plans.commands.ShowCollationCommand;
import org.apache.doris.nereids.trees.plans.commands.ShowColumnHistogramStatsCommand;
import org.apache.doris.nereids.trees.plans.commands.ShowColumnsCommand;
import org.apache.doris.nereids.trees.plans.commands.ShowConfigCommand;
import org.apache.doris.nereids.trees.plans.commands.ShowConstraintsCommand;
import org.apache.doris.nereids.trees.plans.commands.ShowConvertLSCCommand;
Expand Down Expand Up @@ -5971,6 +5973,24 @@ public LogicalPlan visitShowSyncJob(ShowSyncJobContext ctx) {
return new ShowSyncJobCommand(databaseName);
}

@Override
public LogicalPlan visitShowColumns(ShowColumnsContext ctx) {
boolean isFull = ctx.FULL() != null;
List<String> nameParts = visitMultipartIdentifier(ctx.tableName);
String databaseName = ctx.database != null ? ctx.database.getText() : null;
String likePattern = null;
Expression expr = null;
if (ctx.wildWhere() != null) {
if (ctx.wildWhere().LIKE() != null) {
likePattern = stripQuotes(ctx.wildWhere().STRING_LITERAL().getText());
} else {
expr = (Expression) ctx.wildWhere().expression().accept(this);
}
}

return new ShowColumnsCommand(isFull, new TableNameInfo(nameParts), databaseName, likePattern, expr);
}

@Override
public LogicalPlan visitDropFile(DropFileContext ctx) {
String dbName = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,7 @@ public enum PlanType {
SHOW_CLUSTERS_COMMAND,
SHOW_COLLATION_COMMAND,
SHOW_COLUMN_HISTOGRAM,
SHOW_COLUMNS_COMMAND,
SHOW_CONFIG_COMMAND,
SHOW_CREATE_CATALOG_COMMAND,
SHOW_CREATE_DATABASE_COMMAND,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,254 @@
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.

package org.apache.doris.nereids.trees.plans.commands;

import org.apache.doris.catalog.Column;
import org.apache.doris.catalog.DatabaseIf;
import org.apache.doris.catalog.Env;
import org.apache.doris.catalog.ScalarType;
import org.apache.doris.catalog.TableIf;
import org.apache.doris.common.AnalysisException;
import org.apache.doris.common.CaseSensibility;
import org.apache.doris.common.ErrorCode;
import org.apache.doris.common.ErrorReport;
import org.apache.doris.common.PatternMatcher;
import org.apache.doris.common.PatternMatcherWrapper;
import org.apache.doris.mysql.privilege.PrivPredicate;
import org.apache.doris.nereids.analyzer.UnboundSlot;
import org.apache.doris.nereids.trees.expressions.Expression;
import org.apache.doris.nereids.trees.expressions.visitor.DefaultExpressionRewriter;
import org.apache.doris.nereids.trees.plans.PlanType;
import org.apache.doris.nereids.trees.plans.commands.info.AliasInfo;
import org.apache.doris.nereids.trees.plans.commands.info.TableNameInfo;
import org.apache.doris.nereids.trees.plans.logical.LogicalPlan;
import org.apache.doris.nereids.trees.plans.visitor.PlanVisitor;
import org.apache.doris.nereids.util.Utils;
import org.apache.doris.qe.ConnectContext;
import org.apache.doris.qe.ShowResultSet;
import org.apache.doris.qe.ShowResultSetMetaData;
import org.apache.doris.qe.StmtExecutor;

import com.google.common.base.Strings;
import com.google.common.collect.Lists;

import java.util.ArrayList;
import java.util.List;
import java.util.Locale;

/**
* Represents the SHOW COLUMNS command.
*/
public class ShowColumnsCommand extends ShowCommand {
private static final ShowResultSetMetaData META_DATA = ShowResultSetMetaData.builder()
.addColumn(new Column("Field", ScalarType.createVarchar(20)))
.addColumn(new Column("Type", ScalarType.createVarchar(20)))
.addColumn(new Column("Null", ScalarType.createVarchar(20)))
.addColumn(new Column("Key", ScalarType.createVarchar(20)))
.addColumn(new Column("Default", ScalarType.createVarchar(20)))
.addColumn(new Column("Extra", ScalarType.createVarchar(20))).build();

private static final ShowResultSetMetaData META_DATA_VERBOSE =
ShowResultSetMetaData.builder()
.addColumn(new Column("Field", ScalarType.createVarchar(20)))
.addColumn(new Column("Type", ScalarType.createVarchar(20)))
.addColumn(new Column("Collation", ScalarType.createVarchar(20)))
.addColumn(new Column("Null", ScalarType.createVarchar(20)))
.addColumn(new Column("Key", ScalarType.createVarchar(20)))
.addColumn(new Column("Default", ScalarType.createVarchar(20)))
.addColumn(new Column("Extra", ScalarType.createVarchar(20)))
.addColumn(new Column("Privileges", ScalarType.createVarchar(20)))
.addColumn(new Column("Comment", ScalarType.createVarchar(20)))
.build();

private final boolean isFull;
private TableNameInfo tableNameInfo;
private final String databaseName;
private final String likePattern;
private final Expression whereClause;

/**
* SHOW COLUMNS command Constructor.
*/
public ShowColumnsCommand(boolean isFull, TableNameInfo tableNameInfo, String databaseName, String likePattern,
Expression whereClause) {
super(PlanType.SHOW_COLUMNS_COMMAND);
this.isFull = isFull;
this.tableNameInfo = tableNameInfo;
this.databaseName = databaseName;
this.likePattern = likePattern;
this.whereClause = whereClause;
}

/**
* SHOW COLUMNS validate.
*/
public void validate(ConnectContext ctx) throws AnalysisException {
if (!Strings.isNullOrEmpty(databaseName)) {
tableNameInfo.setDb(databaseName);
}
tableNameInfo.analyze(ctx);
if (!Env.getCurrentEnv().getAccessManager()
.checkTblPriv(ConnectContext.get(), tableNameInfo.getCtl(), tableNameInfo.getDb(),
tableNameInfo.getTbl(), PrivPredicate.SHOW)) {
ErrorReport.reportAnalysisException(ErrorCode.ERR_TABLE_ACCESS_DENIED_ERROR,
PrivPredicate.SHOW.getPrivs().toString(), tableNameInfo);
}
}

/**
* replaceColumnNameVisitor
* replace column name to real column name
*/
private static class ReplaceColumnNameVisitor extends DefaultExpressionRewriter<Void> {
@Override
public Expression visitUnboundSlot(UnboundSlot slot, Void context) {
String name = slot.getName().toLowerCase(Locale.ROOT);
switch (name) {
case "field":
return UnboundSlot.quoted("COLUMN_NAME");
case "type":
return UnboundSlot.quoted("COLUMN_TYPE");
case "null":
return UnboundSlot.quoted("IS_NULLABLE");
case "default":
return UnboundSlot.quoted("COLUMN_DEFAULT");
case "comment":
return UnboundSlot.quoted("COLUMN_COMMENT");
default:
return slot;
}
}
}

@Override
public ShowResultSet doRun(ConnectContext ctx, StmtExecutor executor) throws Exception {
validate(ctx);
if (whereClause != null) {
Expression rewritten = whereClause.accept(new ReplaceColumnNameVisitor(), null);
String whereCondition = " WHERE TABLE_NAME = '" + tableNameInfo.getTbl() + "' AND " + rewritten.toSql();
TableNameInfo info = new TableNameInfo(tableNameInfo.getCtl(), "information_schema", "columns");

List<AliasInfo> selectList = new ArrayList<>();
if (isFull) {
selectList.add(AliasInfo.of("COLUMN_NAME", "Field"));
selectList.add(AliasInfo.of("COLUMN_TYPE", "Type"));
selectList.add(AliasInfo.of("COLLATION_NAME", "Collation"));
selectList.add(AliasInfo.of("IS_NULLABLE", "Null"));
selectList.add(AliasInfo.of("COLUMN_KEY", "Key"));
selectList.add(AliasInfo.of("COLUMN_DEFAULT", "Default"));
selectList.add(AliasInfo.of("EXTRA", "Extra"));
selectList.add(AliasInfo.of("PRIVILEGES", "Privileges")); // optional, can be set to ''
selectList.add(AliasInfo.of("COLUMN_COMMENT", "Comment"));
} else {
selectList.add(AliasInfo.of("COLUMN_NAME", "Field"));
selectList.add(AliasInfo.of("COLUMN_TYPE", "Type"));
selectList.add(AliasInfo.of("IS_NULLABLE", "Null"));
selectList.add(AliasInfo.of("COLUMN_KEY", "Key"));
selectList.add(AliasInfo.of("COLUMN_DEFAULT", "Default"));
selectList.add(AliasInfo.of("EXTRA", "Extra"));
}

LogicalPlan plan = Utils.buildLogicalPlan(selectList, info, whereCondition);
List<List<String>> rows = Utils.executePlan(ctx, executor, plan);
for (List<String> row : rows) {
String rawType = row.get(1);
row.set(1, normalizeSqlColumnType(rawType));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am not sure why we need normalize column type, have you tried other data types like varchar, map, struct. etc...

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

without normalizing - the result is returned as "int(11)" "varchar(50)" - all the test cases in regression suite are expecting "int" instead of the returned "int(11)" and "varchar" instead of "varchar(50)"

}

return new ShowResultSet(getMetaData(), rows);
}
List<List<String>> rows = Lists.newArrayList();
String ctl = tableNameInfo.getCtl();
DatabaseIf db = Env.getCurrentEnv().getCatalogMgr().getCatalogOrAnalysisException(ctl)
.getDbOrAnalysisException(tableNameInfo.getDb());
TableIf table = db.getTableOrAnalysisException(tableNameInfo.getTbl());
PatternMatcher matcher = null;
if (likePattern != null) {
matcher = PatternMatcherWrapper.createMysqlPattern(likePattern,
CaseSensibility.COLUMN.getCaseSensibility());
}
table.readLock();
try {
List<Column> columns = table.getBaseSchema();
for (Column col : columns) {
if (matcher != null && !matcher.match(col.getName())) {
continue;
}
final String columnName = col.getName();
final String columnType = col.getOriginType().toString().toLowerCase(Locale.ROOT);
final String isAllowNull = col.isAllowNull() ? "YES" : "NO";
final String isKey = col.isKey() ? "YES" : "NO";
final String defaultValue = col.getDefaultValue();
final String aggType = col.getAggregationType() == null ? "" : col.getAggregationType().toSql();
if (isFull) {
// Field Type Collation Null Key Default Extra
// Privileges Comment
rows.add(Lists.newArrayList(columnName,
columnType,
"",
isAllowNull,
isKey,
defaultValue,
aggType,
"",
col.getComment()));
} else {
// Field Type Null Key Default Extra
rows.add(Lists.newArrayList(columnName,
columnType,
isAllowNull,
isKey,
defaultValue,
aggType));
}
}
} finally {
table.readUnlock();
}

return new ShowResultSet(getMetaData(), rows);
}

@Override
public <R, C> R accept(PlanVisitor<R, C> visitor, C context) {
return visitor.visitShowColumnsCommand(this, context);
}

@Override
public ShowResultSetMetaData getMetaData() {
if (isFull) {
return META_DATA_VERBOSE;
} else {
return META_DATA;
}
}

private static String normalizeSqlColumnType(String type) {
if (type == null) {
return null;
}

type = type.toLowerCase().trim();

if (type.matches("^[a-z]+\\s*\\(.*\\)$")) {
int parenIndex = type.indexOf('(');
return type.substring(0, parenIndex).trim();
}
return type;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@
import org.apache.doris.nereids.trees.plans.commands.ShowClustersCommand;
import org.apache.doris.nereids.trees.plans.commands.ShowCollationCommand;
import org.apache.doris.nereids.trees.plans.commands.ShowColumnHistogramStatsCommand;
import org.apache.doris.nereids.trees.plans.commands.ShowColumnsCommand;
import org.apache.doris.nereids.trees.plans.commands.ShowConfigCommand;
import org.apache.doris.nereids.trees.plans.commands.ShowConstraintsCommand;
import org.apache.doris.nereids.trees.plans.commands.ShowConvertLSCCommand;
Expand Down Expand Up @@ -481,6 +482,10 @@ default R visitAlterViewCommand(AlterViewCommand alterViewCommand, C context) {
return visitCommand(alterViewCommand, context);
}

default R visitShowColumnsCommand(ShowColumnsCommand showColumnsCommand, C context) {
return visitCommand(showColumnsCommand, context);
}

default R visitDropCatalogCommand(DropCatalogCommand dropCatalogCommand, C context) {
return visitCommand(dropCatalogCommand, context);
}
Expand Down
17 changes: 17 additions & 0 deletions regression-test/data/nereids_p0/show/test_show_columns_command.out
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
-- This file is automatically generated. You should know what you did if you want to edit this
-- !cmd --
id int YES YES \N
name text YES NO \N NONE
score float YES NO \N NONE

-- !cmd --
id int YES YES \N
name text YES NO \N NONE
score float YES NO \N NONE

-- !cmd --
score float YES NO \N NONE

-- !cmd --
id int YES DUP \N

Loading
Loading