mirror of https://github.com/citusdata/citus.git
example of how types can be propagated when already in sequential mode
parent
9bc0fd9479
commit
9bb603b4a7
|
@ -1191,7 +1191,11 @@ ShouldPropagateTypeCreate()
|
||||||
*/
|
*/
|
||||||
if (IsMultiStatementTransaction())
|
if (IsMultiStatementTransaction())
|
||||||
{
|
{
|
||||||
return false;
|
if (MultiShardConnectionType != SEQUENTIAL_CONNECTION)
|
||||||
|
{
|
||||||
|
/* only block propagation when we are _not_ running in sequential mode */
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in New Issue