mirror of https://github.com/apache/cassandra
fix parameters to exception message
This commit is contained in:
parent
010c477e4c
commit
7df36056b1
|
|
@ -237,9 +237,9 @@ public class AlterTableStatement extends SchemaAlteringStatement
|
|||
}
|
||||
|
||||
if (!Iterables.isEmpty(views))
|
||||
throw new InvalidRequestException(String.format("Cannot drop column %s on base table with materialized views.",
|
||||
throw new InvalidRequestException(String.format("Cannot drop column %s on base table %s with materialized views.",
|
||||
columnName.toString(),
|
||||
keyspace()));
|
||||
columnFamily()));
|
||||
break;
|
||||
case DROP_COMPACT_STORAGE:
|
||||
if (!meta.isCompactTable())
|
||||
|
|
|
|||
Loading…
Reference in New Issue