mirror of https://github.com/citusdata/citus.git
Try to fix failure
parent
7c8a366ba2
commit
f883cfdd77
|
@ -71,7 +71,7 @@ SELECT format('user=%s host=localhost port=%s password=%s dbname=regression',
|
||||||
GRANT ALL ON TABLE lineitem, orders, lineitem, customer, nation, part, supplier TO alice, bob;
|
GRANT ALL ON TABLE lineitem, orders, lineitem, customer, nation, part, supplier TO alice, bob;
|
||||||
\c :alice_conninfo
|
\c :alice_conninfo
|
||||||
-- router query (should break because of bad password)
|
-- router query (should break because of bad password)
|
||||||
INSERT INTO customer VALUES (12345, 'name', NULL, 5, 'phone', 123.45, 'segment', 'comment');
|
INSERT INTO customer VALUES (12345, 'name', 'aaaa', 5, 'phone', 123.45, 'segment', 'comment');
|
||||||
ERROR: connection to the remote node alice@localhost:xxxxx failed with the following error: FATAL: password authentication failed for user "alice"
|
ERROR: connection to the remote node alice@localhost:xxxxx failed with the following error: FATAL: password authentication failed for user "alice"
|
||||||
-- fix alice's worker1 password ...
|
-- fix alice's worker1 password ...
|
||||||
UPDATE pg_dist_authinfo
|
UPDATE pg_dist_authinfo
|
||||||
|
|
|
@ -75,7 +75,7 @@ GRANT ALL ON TABLE lineitem, orders, lineitem, customer, nation, part, supplier
|
||||||
\c :alice_conninfo
|
\c :alice_conninfo
|
||||||
|
|
||||||
-- router query (should break because of bad password)
|
-- router query (should break because of bad password)
|
||||||
INSERT INTO customer VALUES (12345, 'name', NULL, 5, 'phone', 123.45, 'segment', 'comment');
|
INSERT INTO customer VALUES (12345, 'name', 'aaaa', 5, 'phone', 123.45, 'segment', 'comment');
|
||||||
|
|
||||||
-- fix alice's worker1 password ...
|
-- fix alice's worker1 password ...
|
||||||
UPDATE pg_dist_authinfo
|
UPDATE pg_dist_authinfo
|
||||||
|
|
Loading…
Reference in New Issue