@@ -213,7 +213,7 @@ x|y |z
213213(2 rows)
214214
215215QUERY: CREATE TABLE PRIMARY_TBL (i int PRIMARY KEY, t text);
216- NOTICE: CREATE TABLE/PRIMARY KEY will create implicit index primary_tbl_pkey for table primary_tbl
216+ NOTICE: CREATE TABLE/PRIMARY KEY will create implicit index' primary_tbl_pkey' for table' primary_tbl'
217217QUERY: INSERT INTO PRIMARY_TBL VALUES (1, 'one');
218218QUERY: INSERT INTO PRIMARY_TBL VALUES (2, 'two');
219219QUERY: INSERT INTO PRIMARY_TBL VALUES (1, 'three');
@@ -234,7 +234,7 @@ four|i|t
234234QUERY: DROP TABLE PRIMARY_TBL;
235235QUERY: CREATE TABLE PRIMARY_TBL (i int, t text,
236236PRIMARY KEY(i,t));
237- NOTICE: CREATE TABLE/PRIMARY KEY will create implicit index primary_tbl_pkey for table primary_tbl
237+ NOTICE: CREATE TABLE/PRIMARY KEY will create implicit index' primary_tbl_pkey' for table' primary_tbl'
238238QUERY: INSERT INTO PRIMARY_TBL VALUES (1, 'one');
239239QUERY: INSERT INTO PRIMARY_TBL VALUES (2, 'two');
240240QUERY: INSERT INTO PRIMARY_TBL VALUES (1, 'three');
@@ -254,7 +254,7 @@ three|i|t
254254
255255QUERY: DROP TABLE PRIMARY_TBL;
256256QUERY: CREATE TABLE UNIQUE_TBL (i int UNIQUE, t text);
257- NOTICE: CREATE TABLE/UNIQUE will create implicit index unique_tbl_i_key for table unique_tbl
257+ NOTICE: CREATE TABLE/UNIQUE will create implicit index' unique_tbl_i_key' for table' unique_tbl'
258258QUERY: INSERT INTO UNIQUE_TBL VALUES (1, 'one');
259259QUERY: INSERT INTO UNIQUE_TBL VALUES (2, 'two');
260260QUERY: INSERT INTO UNIQUE_TBL VALUES (1, 'three');
@@ -277,7 +277,7 @@ five|i|t
277277QUERY: DROP TABLE UNIQUE_TBL;
278278QUERY: CREATE TABLE UNIQUE_TBL (i int, t text,
279279UNIQUE(i,t));
280- NOTICE: CREATE TABLE/UNIQUE will create implicit index unique_tbl_i_key for table unique_tbl
280+ NOTICE: CREATE TABLE/UNIQUE will create implicit index' unique_tbl_i_key' for table' unique_tbl'
281281QUERY: INSERT INTO UNIQUE_TBL VALUES (1, 'one');
282282QUERY: INSERT INTO UNIQUE_TBL VALUES (2, 'two');
283283QUERY: INSERT INTO UNIQUE_TBL VALUES (1, 'three');