[TEST] Remove "compressed" field data from numeric formats

The "compressed" format was removed, so this caused warnings in the log
like:

```
[WARN ][index.fielddata          ] [node_0] [test] failed to find format
[compressed] for field [test-num], will use default
```
This commit is contained in:
Lee Hinman 2014-12-16 12:38:59 +01:00
parent 63ee24982f
commit 54f2eae4d8
1 changed files with 2 additions and 3 deletions

View File

@ -1709,11 +1709,10 @@ public abstract class ElasticsearchIntegrationTest extends ElasticsearchTestCase
}
/**
* Returns a random numeric field data format from the choices of "array",
* "compressed", or "doc_values".
* Returns a random numeric field data format from the choices of "array" or "doc_values".
*/
public static String randomNumericFieldDataFormat() {
return randomFrom(Arrays.asList("array", "compressed", "doc_values"));
return randomFrom(Arrays.asList("array", "doc_values"));
}
/**