fix parameters to exception message

This commit is contained in:
Dave Brosius 2018-02-05 22:37:50 -05:00
parent 010c477e4c
commit 7df36056b1
1 changed files with 2 additions and 2 deletions

View File

@ -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())