mirror of https://github.com/apache/cassandra
Ninja: Fix string format arguments for dropped columns
This commit is contained in:
parent
d7d00036e7
commit
4bb4e6054b
|
|
@ -1127,7 +1127,7 @@ public abstract class LegacyLayout
|
|||
throw new IllegalStateException(String.format("Got cell for unknown column %s in sstable of %s.%s: " +
|
||||
"This suggest a problem with the schema which doesn't list " +
|
||||
"this column. Even if that column was dropped, it should have " +
|
||||
"been listed as such", metadata.ksName, metadata.cfName, UTF8Type.instance.compose(e.columnName)), e);
|
||||
"been listed as such", UTF8Type.instance.compose(e.columnName), metadata.ksName, metadata.cfName), e);
|
||||
|
||||
throw e;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue