Ninja: Fix string format arguments for dropped columns

This commit is contained in:
Jeff Jirsa 2019-02-24 20:44:03 -08:00
parent d7d00036e7
commit 4bb4e6054b
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}