mirror of https://github.com/citusdata/citus.git
Fixes single_node for pg14
parent
2b3a556f34
commit
cf7efca546
|
@ -88,8 +88,9 @@ SELECT create_distributed_table('failover_to_local', 'a', shard_count=>32);
|
||||||
(1 row)
|
(1 row)
|
||||||
|
|
||||||
CREATE INDEX CONCURRENTLY ON failover_to_local(a);
|
CREATE INDEX CONCURRENTLY ON failover_to_local(a);
|
||||||
WARNING: CONCURRENTLY-enabled index commands can fail partially, leaving behind an INVALID index.
|
WARNING: Commands that are not transaction-safe may result in partial failure, potentially leading to an inconsistent state.
|
||||||
Use DROP INDEX CONCURRENTLY IF EXISTS to remove the invalid index.
|
If the problematic command is a CREATE operation, consider using the 'IF EXISTS' syntax to drop the object,
|
||||||
|
if applicable, and then reattempt the original command.
|
||||||
ERROR: the total number of connections on the server is more than max_connections(100)
|
ERROR: the total number of connections on the server is more than max_connections(100)
|
||||||
HINT: Consider using a higher value for max_connections
|
HINT: Consider using a higher value for max_connections
|
||||||
-- reset global GUC changes
|
-- reset global GUC changes
|
||||||
|
|
Loading…
Reference in New Issue