Delete By Query wrongly persisted to translog, closes #1198.
This commit is contained in:
parent
ff2a4ed783
commit
50ccb665a0
|
@ -505,7 +505,7 @@ public interface Translog extends IndexShardComponent {
|
||||||
}
|
}
|
||||||
|
|
||||||
public DeleteByQuery(Engine.DeleteByQuery deleteByQuery) {
|
public DeleteByQuery(Engine.DeleteByQuery deleteByQuery) {
|
||||||
this(deleteByQuery.source(), deleteByQuery.types());
|
this(deleteByQuery.source(), deleteByQuery.filteringAliases(), deleteByQuery.types());
|
||||||
}
|
}
|
||||||
|
|
||||||
public DeleteByQuery(byte[] source, String[] filteringAliases, String... types) {
|
public DeleteByQuery(byte[] source, String[] filteringAliases, String... types) {
|
||||||
|
|
Loading…
Reference in New Issue