mirror of https://github.com/citusdata/citus.git
Fix spacing in multiline strings (#6533)
When using multiline strings, we occasionally forget to add a single space at the end of the first line. When this line is concatenated with the next one, the resulting string has a missing space.pull/6530/head
parent
37f3dff1ca
commit
d4394b2e2d
|
@ -1597,7 +1597,7 @@ RegisterCitusConfigVariables(void)
|
||||||
"There are 4 values available. The default, 'auto' will recursively plan "
|
"There are 4 values available. The default, 'auto' will recursively plan "
|
||||||
"distributed tables if there is a constant filter on a unique index. "
|
"distributed tables if there is a constant filter on a unique index. "
|
||||||
"'prefer-local' will choose local tables if possible. "
|
"'prefer-local' will choose local tables if possible. "
|
||||||
"'prefer-distributed' will choose distributed tables if possible"
|
"'prefer-distributed' will choose distributed tables if possible. "
|
||||||
"'never' will basically skip local table joins."
|
"'never' will basically skip local table joins."
|
||||||
),
|
),
|
||||||
&LocalTableJoinPolicy,
|
&LocalTableJoinPolicy,
|
||||||
|
|
Loading…
Reference in New Issue