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

Commitce7a4f0

Browse files
committed
Cause regression tests to pass again after elog changes.
1 parentcfae62c commitce7a4f0

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

‎src/test/regress/expected/horology-no-DST-before-1970.out

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2340,7 +2340,7 @@ DROP TABLE TEMP_TIMESTAMP;
23402340
--
23412341
SET DateStyle TO 'US,Postgres';
23422342
SHOW DateStyle;
2343-
NOTICE: DateStyle is Postgres with US (NonEuropean) conventions
2343+
INFO: DateStyle is Postgres with US (NonEuropean) conventions
23442344
SELECT '' AS "64", d1 AS us_postgres FROM TIMESTAMP_TBL;
23452345
64 | us_postgres
23462346
----+-----------------------------
@@ -2506,7 +2506,7 @@ SELECT '' AS seven, f1 AS us_iso FROM ABSTIME_TBL;
25062506

25072507
SET DateStyle TO 'US,SQL';
25082508
SHOW DateStyle;
2509-
NOTICE: DateStyle is SQL with US (NonEuropean) conventions
2509+
INFO: DateStyle is SQL with US (NonEuropean) conventions
25102510
SELECT '' AS "64", d1 AS us_sql FROM TIMESTAMP_TBL;
25112511
64 | us_sql
25122512
----+------------------------
@@ -2590,7 +2590,7 @@ SELECT '' AS seven, f1 AS us_sql FROM ABSTIME_TBL;
25902590

25912591
SET DateStyle TO 'European,Postgres';
25922592
SHOW DateStyle;
2593-
NOTICE: DateStyle is Postgres with European conventions
2593+
INFO: DateStyle is Postgres with European conventions
25942594
INSERT INTO TIMESTAMP_TBL VALUES('13/06/1957');
25952595
SELECT count(*) as one FROM TIMESTAMP_TBL WHERE d1 = 'Jun 13 1957';
25962596
one
@@ -2682,7 +2682,7 @@ SELECT '' AS seven, f1 AS european_postgres FROM ABSTIME_TBL;
26822682

26832683
SET DateStyle TO 'European,ISO';
26842684
SHOW DateStyle;
2685-
NOTICE: DateStyle is ISO with European conventions
2685+
INFO: DateStyle is ISO with European conventions
26862686
SELECT '' AS "65", d1 AS european_iso FROM TIMESTAMP_TBL;
26872687
65 | european_iso
26882688
----+------------------------
@@ -2767,7 +2767,7 @@ SELECT '' AS seven, f1 AS european_iso FROM ABSTIME_TBL;
27672767

27682768
SET DateStyle TO 'European,SQL';
27692769
SHOW DateStyle;
2770-
NOTICE: DateStyle is SQL with European conventions
2770+
INFO: DateStyle is SQL with European conventions
27712771
SELECT '' AS "65", d1 AS european_sql FROM TIMESTAMP_TBL;
27722772
65 | european_sql
27732773
----+------------------------

‎src/test/regress/expected/horology-solaris-1947.out

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2340,7 +2340,7 @@ DROP TABLE TEMP_TIMESTAMP;
23402340
--
23412341
SET DateStyle TO 'US,Postgres';
23422342
SHOW DateStyle;
2343-
NOTICE: DateStyle is Postgres with US (NonEuropean) conventions
2343+
INFO: DateStyle is Postgres with US (NonEuropean) conventions
23442344
SELECT '' AS "64", d1 AS us_postgres FROM TIMESTAMP_TBL;
23452345
64 | us_postgres
23462346
----+-----------------------------
@@ -2506,7 +2506,7 @@ SELECT '' AS seven, f1 AS us_iso FROM ABSTIME_TBL;
25062506

25072507
SET DateStyle TO 'US,SQL';
25082508
SHOW DateStyle;
2509-
NOTICE: DateStyle is SQL with US (NonEuropean) conventions
2509+
INFO: DateStyle is SQL with US (NonEuropean) conventions
25102510
SELECT '' AS "64", d1 AS us_sql FROM TIMESTAMP_TBL;
25112511
64 | us_sql
25122512
----+------------------------
@@ -2590,7 +2590,7 @@ SELECT '' AS seven, f1 AS us_sql FROM ABSTIME_TBL;
25902590

25912591
SET DateStyle TO 'European,Postgres';
25922592
SHOW DateStyle;
2593-
NOTICE: DateStyle is Postgres with European conventions
2593+
INFO: DateStyle is Postgres with European conventions
25942594
INSERT INTO TIMESTAMP_TBL VALUES('13/06/1957');
25952595
SELECT count(*) as one FROM TIMESTAMP_TBL WHERE d1 = 'Jun 13 1957';
25962596
one
@@ -2682,7 +2682,7 @@ SELECT '' AS seven, f1 AS european_postgres FROM ABSTIME_TBL;
26822682

26832683
SET DateStyle TO 'European,ISO';
26842684
SHOW DateStyle;
2685-
NOTICE: DateStyle is ISO with European conventions
2685+
INFO: DateStyle is ISO with European conventions
26862686
SELECT '' AS "65", d1 AS european_iso FROM TIMESTAMP_TBL;
26872687
65 | european_iso
26882688
----+------------------------
@@ -2767,7 +2767,7 @@ SELECT '' AS seven, f1 AS european_iso FROM ABSTIME_TBL;
27672767

27682768
SET DateStyle TO 'European,SQL';
27692769
SHOW DateStyle;
2770-
NOTICE: DateStyle is SQL with European conventions
2770+
INFO: DateStyle is SQL with European conventions
27712771
SELECT '' AS "65", d1 AS european_sql FROM TIMESTAMP_TBL;
27722772
65 | european_sql
27732773
----+------------------------

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ SELECT * FROM COPY_TBL;
286286
-- Primary keys
287287
--
288288
CREATE TABLE PRIMARY_TBL (i int PRIMARY KEY, t text);
289-
NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index 'primary_tbl_pkey' for table 'primary_tbl'
289+
INFO: CREATE TABLE / PRIMARY KEY will create implicit index 'primary_tbl_pkey' for table 'primary_tbl'
290290
INSERT INTO PRIMARY_TBL VALUES (1, 'one');
291291
INSERT INTO PRIMARY_TBL VALUES (2, 'two');
292292
INSERT INTO PRIMARY_TBL VALUES (1, 'three');
@@ -307,7 +307,7 @@ SELECT '' AS four, * FROM PRIMARY_TBL;
307307
DROP TABLE PRIMARY_TBL;
308308
CREATE TABLE PRIMARY_TBL (i int, t text,
309309
PRIMARY KEY(i,t));
310-
NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index 'primary_tbl_pkey' for table 'primary_tbl'
310+
INFO: CREATE TABLE / PRIMARY KEY will create implicit index 'primary_tbl_pkey' for table 'primary_tbl'
311311
INSERT INTO PRIMARY_TBL VALUES (1, 'one');
312312
INSERT INTO PRIMARY_TBL VALUES (2, 'two');
313313
INSERT INTO PRIMARY_TBL VALUES (1, 'three');
@@ -330,7 +330,7 @@ DROP TABLE PRIMARY_TBL;
330330
-- Unique keys
331331
--
332332
CREATE TABLE UNIQUE_TBL (i int UNIQUE, t text);
333-
NOTICE: CREATE TABLE / UNIQUE will create implicit index 'unique_tbl_i_key' for table 'unique_tbl'
333+
INFO: CREATE TABLE / UNIQUE will create implicit index 'unique_tbl_i_key' for table 'unique_tbl'
334334
INSERT INTO UNIQUE_TBL VALUES (1, 'one');
335335
INSERT INTO UNIQUE_TBL VALUES (2, 'two');
336336
INSERT INTO UNIQUE_TBL VALUES (1, 'three');
@@ -353,7 +353,7 @@ SELECT '' AS five, * FROM UNIQUE_TBL;
353353
DROP TABLE UNIQUE_TBL;
354354
CREATE TABLE UNIQUE_TBL (i int, t text,
355355
UNIQUE(i,t));
356-
NOTICE: CREATE TABLE / UNIQUE will create implicit index 'unique_tbl_i_key' for table 'unique_tbl'
356+
INFO: CREATE TABLE / UNIQUE will create implicit index 'unique_tbl_i_key' for table 'unique_tbl'
357357
INSERT INTO UNIQUE_TBL VALUES (1, 'one');
358358
INSERT INTO UNIQUE_TBL VALUES (2, 'two');
359359
INSERT INTO UNIQUE_TBL VALUES (1, 'three');

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ CREATE FUNCTION hobbies_by_name(hobbies_r.name%TYPE)
1313
RETURNS hobbies_r.person%TYPE
1414
AS 'select person from hobbies_r where name = $1'
1515
LANGUAGE 'sql';
16-
NOTICE: hobbies_r.name%TYPE converted to text
17-
NOTICE: hobbies_r.person%TYPE converted to text
16+
INFO: hobbies_r.name%TYPE converted to text
17+
INFO: hobbies_r.person%TYPE converted to text
1818
CREATE FUNCTION equipment(hobbies_r)
1919
RETURNS setof equipment_r
2020
AS 'select * from equipment_r where hobby = $1.name'

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp