Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit5dd715b

Browse files
author
Thomas G. Lockhart
committed
Adjust elog NOTICE messages to surround table and column names with single
quotes.
1 parentbcb5aac commit5dd715b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

‎src/test/regress/output/constraints.source

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ x|y |z
213213
(2 rows)
214214

215215
QUERY: 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'
217217
QUERY: INSERT INTO PRIMARY_TBL VALUES (1, 'one');
218218
QUERY: INSERT INTO PRIMARY_TBL VALUES (2, 'two');
219219
QUERY: INSERT INTO PRIMARY_TBL VALUES (1, 'three');
@@ -234,7 +234,7 @@ four|i|t
234234
QUERY: DROP TABLE PRIMARY_TBL;
235235
QUERY: CREATE TABLE PRIMARY_TBL (i int, t text,
236236
PRIMARY 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'
238238
QUERY: INSERT INTO PRIMARY_TBL VALUES (1, 'one');
239239
QUERY: INSERT INTO PRIMARY_TBL VALUES (2, 'two');
240240
QUERY: INSERT INTO PRIMARY_TBL VALUES (1, 'three');
@@ -254,7 +254,7 @@ three|i|t
254254

255255
QUERY: DROP TABLE PRIMARY_TBL;
256256
QUERY: 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'
258258
QUERY: INSERT INTO UNIQUE_TBL VALUES (1, 'one');
259259
QUERY: INSERT INTO UNIQUE_TBL VALUES (2, 'two');
260260
QUERY: INSERT INTO UNIQUE_TBL VALUES (1, 'three');
@@ -277,7 +277,7 @@ five|i|t
277277
QUERY: DROP TABLE UNIQUE_TBL;
278278
QUERY: CREATE TABLE UNIQUE_TBL (i int, t text,
279279
UNIQUE(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'
281281
QUERY: INSERT INTO UNIQUE_TBL VALUES (1, 'one');
282282
QUERY: INSERT INTO UNIQUE_TBL VALUES (2, 'two');
283283
QUERY: INSERT INTO UNIQUE_TBL VALUES (1, 'three');

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp