mirror of https://github.com/citusdata/citus.git
commit
a9f183a284
|
@ -1092,7 +1092,7 @@ InsertPartitionColumnMatchesSelect(Query *query, RangeTblEntry *insertRte,
|
||||||
{
|
{
|
||||||
return DeferredError(ERRCODE_FEATURE_NOT_SUPPORTED,
|
return DeferredError(ERRCODE_FEATURE_NOT_SUPPORTED,
|
||||||
"cannot perform distributed INSERT INTO ... SELECT "
|
"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",
|
"and subquery do not match",
|
||||||
"The target table's partition column should correspond "
|
"The target table's partition column should correspond "
|
||||||
"to a partition column in the subquery.",
|
"to a partition column in the subquery.",
|
||||||
|
|
|
@ -611,7 +611,7 @@ LogCancellingBackend(TransactionNode *transactionNode)
|
||||||
|
|
||||||
appendStringInfo(logMessage, "Cancelling the following backend "
|
appendStringInfo(logMessage, "Cancelling the following backend "
|
||||||
"to resolve distributed deadlock "
|
"to resolve distributed deadlock "
|
||||||
"(transaction numner = " UINT64_FORMAT ", pid = %d)",
|
"(transaction number = " UINT64_FORMAT ", pid = %d)",
|
||||||
transactionNode->transactionId.transactionNumber,
|
transactionNode->transactionId.transactionNumber,
|
||||||
transactionNode->initiatorProc->pid);
|
transactionNode->initiatorProc->pid);
|
||||||
|
|
||||||
|
|
|
@ -1114,7 +1114,7 @@ INSERT INTO raw_events_second
|
||||||
(user_id)
|
(user_id)
|
||||||
SELECT value_1
|
SELECT value_1
|
||||||
FROM raw_events_first;
|
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.
|
DETAIL: The target table's partition column should correspond to a partition column in the subquery.
|
||||||
DEBUG: Collecting INSERT ... SELECT results on coordinator
|
DEBUG: Collecting INSERT ... SELECT results on coordinator
|
||||||
ERROR: the partition column of table public.raw_events_second cannot be NULL
|
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
|
FROM raw_events_first
|
||||||
GROUP BY user_id,
|
GROUP BY user_id,
|
||||||
value_2;
|
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.
|
DETAIL: The target table's partition column should correspond to a partition column in the subquery.
|
||||||
DEBUG: Collecting INSERT ... SELECT results on coordinator
|
DEBUG: Collecting INSERT ... SELECT results on coordinator
|
||||||
ERROR: the partition column of table public.agg_events cannot be NULL
|
ERROR: the partition column of table public.agg_events cannot be NULL
|
||||||
|
@ -1176,7 +1176,7 @@ SELECT
|
||||||
user_id
|
user_id
|
||||||
FROM
|
FROM
|
||||||
reference_table;
|
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.
|
DETAIL: The target table's partition column should correspond to a partition column in the subquery.
|
||||||
DEBUG: Collecting INSERT ... SELECT results on coordinator
|
DEBUG: Collecting INSERT ... SELECT results on coordinator
|
||||||
DEBUG: Creating router plan
|
DEBUG: Creating router plan
|
||||||
|
|
|
@ -1173,7 +1173,7 @@ FROM
|
||||||
colocated_table_test_2, reference_table_test
|
colocated_table_test_2, reference_table_test
|
||||||
WHERE
|
WHERE
|
||||||
colocated_table_test_2.value_4 = reference_table_test.value_4;
|
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.
|
DETAIL: The target table's partition column should correspond to a partition column in the subquery.
|
||||||
DEBUG: Collecting INSERT ... SELECT results on coordinator
|
DEBUG: Collecting INSERT ... SELECT results on coordinator
|
||||||
RESET client_min_messages;
|
RESET client_min_messages;
|
||||||
|
|
Loading…
Reference in New Issue