@@ -160,14 +160,14 @@ SELECT *
160
160
FROM dblink(' SELECT * FROM foo' )AS t(aint , btext , ctext [])
161
161
WHERE t .a > 7 ;
162
162
163
- -- put more data into ourslave table, first using arbitrary connection syntax
163
+ -- put more data into our table, first using arbitrary connection syntax
164
164
-- but truncate the actual return value so we can use diff to check for success
165
165
SELECT substr(dblink_exec(connection_parameters(),' INSERT INTO foo VALUES(10,' ' k' ' ,' ' {"a10","b10","c10"}' ' )' ),1 ,6 );
166
166
167
167
-- create a persistent connection
168
168
SELECT dblink_connect(connection_parameters());
169
169
170
- -- put more data into ourslave table, using persistent connection syntax
170
+ -- put more data into our table, using persistent connection syntax
171
171
-- but truncate the actual return value so we can use diff to check for success
172
172
SELECT substr(dblink_exec(' INSERT INTO foo VALUES(11,' ' l' ' ,' ' {"a11","b11","c11"}' ' )' ),1 ,6 );
173
173
@@ -316,7 +316,7 @@ WHERE t.a > 7;
316
316
-- create a named persistent connection
317
317
SELECT dblink_connect(' myconn' ,connection_parameters());
318
318
319
- -- put more data into ourslave table, using named persistent connection syntax
319
+ -- put more data into our table, using named persistent connection syntax
320
320
-- but truncate the actual return value so we can use diff to check for success
321
321
SELECT substr(dblink_exec(' myconn' ,' INSERT INTO foo VALUES(11,' ' l' ' ,' ' {"a11","b11","c11"}' ' )' ),1 ,6 );
322
322