Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit c457b3e

Browse files
committed
Merge branch 'PGPROEE10' into PGPROEE10_pg_shardman
2 parents 9eee6b2 + 7c2ea83 commit c457b3e

File tree

6 files changed

+497
-86
lines changed

6 files changed

+497
-86
lines changed

contrib/pg_hint_plan/expected/ut-A.out

Lines changed: 0 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -1590,76 +1590,6 @@ error hint:
15901590
Filter: (c1 = 1)
15911591
(2 rows)
15921592

1593-
-- No. A-7-3-10
1594-
-- No. A-9-2-10
1595-
/*+SeqScan(あ)*/
1596-
EXPLAIN (COSTS false) SELECT * FROM s1.t1 あ WHERE あ.c1 = 1;
1597-
LOG: statement: /*+SeqScan(あ)*/
1598-
EXPLAIN (COSTS false) SELECT * FROM s1.t1 あ WHERE あ.c1 = 1;
1599-
LOG: pg_hint_plan:
1600-
used hint:
1601-
SeqScan(あ)
1602-
not used hint:
1603-
duplication hint:
1604-
error hint:
1605-
1606-
QUERY PLAN
1607-
---------------------
1608-
Seq Scan on t1 "あ"
1609-
Filter: (c1 = 1)
1610-
(2 rows)
1611-
1612-
/*+SeqScan(あいう)*/
1613-
EXPLAIN (COSTS false) SELECT * FROM s1.t1 あいう WHERE あいう.c1 = 1;
1614-
LOG: statement: /*+SeqScan(あいう)*/
1615-
EXPLAIN (COSTS false) SELECT * FROM s1.t1 あいう WHERE あいう.c1 = 1;
1616-
LOG: pg_hint_plan:
1617-
used hint:
1618-
SeqScan(あいう)
1619-
not used hint:
1620-
duplication hint:
1621-
error hint:
1622-
1623-
QUERY PLAN
1624-
-------------------------
1625-
Seq Scan on t1 "あいう"
1626-
Filter: (c1 = 1)
1627-
(2 rows)
1628-
1629-
/*+SeqScan("あ")*/
1630-
EXPLAIN (COSTS false) SELECT * FROM s1.t1 あ WHERE あ.c1 = 1;
1631-
LOG: statement: /*+SeqScan("あ")*/
1632-
EXPLAIN (COSTS false) SELECT * FROM s1.t1 あ WHERE あ.c1 = 1;
1633-
LOG: pg_hint_plan:
1634-
used hint:
1635-
SeqScan(あ)
1636-
not used hint:
1637-
duplication hint:
1638-
error hint:
1639-
1640-
QUERY PLAN
1641-
---------------------
1642-
Seq Scan on t1 "あ"
1643-
Filter: (c1 = 1)
1644-
(2 rows)
1645-
1646-
/*+SeqScan("あいう")*/
1647-
EXPLAIN (COSTS false) SELECT * FROM s1.t1 あいう WHERE あいう.c1 = 1;
1648-
LOG: statement: /*+SeqScan("あいう")*/
1649-
EXPLAIN (COSTS false) SELECT * FROM s1.t1 あいう WHERE あいう.c1 = 1;
1650-
LOG: pg_hint_plan:
1651-
used hint:
1652-
SeqScan(あいう)
1653-
not used hint:
1654-
duplication hint:
1655-
error hint:
1656-
1657-
QUERY PLAN
1658-
-------------------------
1659-
Seq Scan on t1 "あいう"
1660-
Filter: (c1 = 1)
1661-
(2 rows)
1662-
16631593
-- No. A-7-3-11
16641594
-- No. A-9-2-11
16651595
/*+SeqScan(/**/)*/

contrib/pg_hint_plan/sql/ut-A.sql

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -438,17 +438,6 @@ EXPLAIN (COSTS false) SELECT * FROM s1.t1 "Set" WHERE "Set".c1 = 1;
438438
/*+SeqScan("Set SeqScan Leading")*/
439439
EXPLAIN (COSTS false) SELECT * FROM s1.t1 "Set SeqScan Leading" WHERE "Set SeqScan Leading".c1 = 1;
440440

441-
-- No. A-7-3-10
442-
-- No. A-9-2-10
443-
/*+SeqScan(あ)*/
444-
EXPLAIN (COSTS false) SELECT * FROM s1.t1WHERE あ.c1 = 1;
445-
/*+SeqScan(あいう)*/
446-
EXPLAIN (COSTS false) SELECT * FROM s1.t1 あいう WHERE あいう.c1 = 1;
447-
/*+SeqScan("あ")*/
448-
EXPLAIN (COSTS false) SELECT * FROM s1.t1WHERE あ.c1 = 1;
449-
/*+SeqScan("あいう")*/
450-
EXPLAIN (COSTS false) SELECT * FROM s1.t1 あいう WHERE あいう.c1 = 1;
451-
452441
-- No. A-7-3-11
453442
-- No. A-9-2-11
454443
/*+SeqScan(/**/)*/

doc/src/sgml/contrib.sgml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ CREATE EXTENSION <replaceable>module_name</> FROM unpackaged;
124124
&fuzzystrmatch;
125125
&hstore;
126126
&hunspell-dict;
127+
&in-memory;
127128
&intagg;
128129
&intarray;
129130
&isn;

doc/src/sgml/filelist.sgml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@
128128
<!ENTITY fulleq SYSTEM "fulleq.sgml">
129129
<!ENTITY hstore SYSTEM "hstore.sgml">
130130
<!ENTITY hunspell-dict SYSTEM "hunspell-dict.sgml">
131+
<!ENTITY in-memory SYSTEM "in-memory.sgml">
131132
<!ENTITY intagg SYSTEM "intagg.sgml">
132133
<!ENTITY intarray SYSTEM "intarray.sgml">
133134
<!ENTITY isn SYSTEM "isn.sgml">

0 commit comments

Comments
 (0)