Merge pull request #2432 from citusdata/fix_typos

Fix user-facing typos
pull/2433/head^2
Marco Slot 2018-10-10 14:25:59 -07:00 committed by GitHub
commit a9f183a284
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

View File

@ -1092,7 +1092,7 @@ InsertPartitionColumnMatchesSelect(Query *query, RangeTblEntry *insertRte,
{
return DeferredError(ERRCODE_FEATURE_NOT_SUPPORTED,
"cannot perform distributed INSERT INTO ... SELECT "
"becuase the partition columns in the source table "
"because the partition columns in the source table "
"and subquery do not match",
"The target table's partition column should correspond "
"to a partition column in the subquery.",

View File

@ -611,7 +611,7 @@ LogCancellingBackend(TransactionNode *transactionNode)
appendStringInfo(logMessage, "Cancelling the following backend "
"to resolve distributed deadlock "
"(transaction numner = " UINT64_FORMAT ", pid = %d)",
"(transaction number = " UINT64_FORMAT ", pid = %d)",
transactionNode->transactionId.transactionNumber,
transactionNode->initiatorProc->pid);

View File

@ -1114,7 +1114,7 @@ INSERT INTO raw_events_second
(user_id)
SELECT value_1
FROM raw_events_first;
DEBUG: cannot perform distributed INSERT INTO ... SELECT becuase the partition columns in the source table and subquery do not match
DEBUG: cannot perform distributed INSERT INTO ... SELECT because the partition columns in the source table and subquery do not match
DETAIL: The target table's partition column should correspond to a partition column in the subquery.
DEBUG: Collecting INSERT ... SELECT results on coordinator
ERROR: the partition column of table public.raw_events_second cannot be NULL
@ -1166,7 +1166,7 @@ SELECT SUM(value_3),
FROM raw_events_first
GROUP BY user_id,
value_2;
DEBUG: cannot perform distributed INSERT INTO ... SELECT becuase the partition columns in the source table and subquery do not match
DEBUG: cannot perform distributed INSERT INTO ... SELECT because the partition columns in the source table and subquery do not match
DETAIL: The target table's partition column should correspond to a partition column in the subquery.
DEBUG: Collecting INSERT ... SELECT results on coordinator
ERROR: the partition column of table public.agg_events cannot be NULL
@ -1176,7 +1176,7 @@ SELECT
user_id
FROM
reference_table;
DEBUG: cannot perform distributed INSERT INTO ... SELECT becuase the partition columns in the source table and subquery do not match
DEBUG: cannot perform distributed INSERT INTO ... SELECT because the partition columns in the source table and subquery do not match
DETAIL: The target table's partition column should correspond to a partition column in the subquery.
DEBUG: Collecting INSERT ... SELECT results on coordinator
DEBUG: Creating router plan

View File

@ -1173,7 +1173,7 @@ FROM
colocated_table_test_2, reference_table_test
WHERE
colocated_table_test_2.value_4 = reference_table_test.value_4;
DEBUG: cannot perform distributed INSERT INTO ... SELECT becuase the partition columns in the source table and subquery do not match
DEBUG: cannot perform distributed INSERT INTO ... SELECT because the partition columns in the source table and subquery do not match
DETAIL: The target table's partition column should correspond to a partition column in the subquery.
DEBUG: Collecting INSERT ... SELECT results on coordinator
RESET client_min_messages;