Skip to content

Commit 8187678

Browse files
committed
by GitHub Actions [skip ci]
1 parent 36dfa28 commit 8187678

7 files changed

Lines changed: 6 additions & 12 deletions

File tree

current/html/functions-string.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@
188188
Converts the string to all lower case, according to the rules of the
189189
database's locale.
190190
</span>
191-
データベースの照合順のルールに従い、文字列をすべて小文字に変換します。
191+
データベースのロケールのルールに従い、文字列をすべて小文字に変換します。
192192
</p>
193193
<p>
194194
<code class="literal">lower('TOM')</code>
@@ -483,7 +483,7 @@
483483
Converts the string to all upper case, according to the rules of the
484484
database's locale.
485485
</span>
486-
データベースの照合順のルールに従い、文字列をすべて大文字に変換します。
486+
データベースのロケールのルールに従い、文字列をすべて大文字に変換します。
487487
</p>
488488
<p>
489489
<code class="literal">upper('tom')</code>

current/html/jit-configuration.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
whether &lt;acronym&gt;JIT&lt;/acronym&gt; compilation is performed for a query,
1515
and how much effort is spent doing so.
1616
</span>
17-
設定パラメータの<a class="xref" href="runtime-config-query.html#GUC-JIT">jit</a>は、<acronym class="acronym">JIT</acronym>が有効か無効化を決定します
17+
設定パラメータの<a class="xref" href="runtime-config-query.html#GUC-JIT">jit</a>は、<acronym class="acronym">JIT</acronym>が有効か無効かを決定します
1818
有効ならば、設定値<a class="xref" href="runtime-config-query.html#GUC-JIT-ABOVE-COST">jit_above_cost</a><a class="xref" href="runtime-config-query.html#GUC-JIT-INLINE-ABOVE-COST">jit_inline_above_cost</a><a class="xref" href="runtime-config-query.html#GUC-JIT-OPTIMIZE-ABOVE-COST">jit_optimize_above_cost</a>は問い合わせで<acronym class="acronym">JIT</acronym>コンパイルが実行されるかどうか、どの程度の努力が<acronym class="acronym">JIT</acronym>コンパイルに払われるのかを決定します。
1919
</p><p>
2020
<span class="original">

current/html/plpython-database.html

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -314,15 +314,9 @@
314314
try:
315315
plpy.execute("INSERT INTO users(username) VALUES ('joe')")
316316
except plpy.SPIError:
317-
<span class="original">
318317
return "something went wrong"
319-
</span>
320-
"うまくいかなかった" を返す
321318
else:
322-
<span class="original">
323319
return "Joe added"
324-
</span>
325-
"Joeが追加された" を返す
326320
$$ LANGUAGE plpython3u;
327321
</pre><p>
328322
</p><p>

current/html/queries-with.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@
373373
この問い合わせは<code class="structfield">link</code>関係が循環を含んでいればループします。
374374
<span class="quote"><span class="quote">depth</span></span>出力を要求しているので、<code class="literal">UNION ALL</code><code class="literal">UNION</code>に変えるだけでは、ループを取り除くことができません。
375375
その代わり、linkの特定の経路をたどっている間に、同じ行に到達したかどうかを認識する必要があります。
376-
このループしやすい問い合わせに、<code class="structfield">path</code><code class="structfield">cycle</code>の2列を加えます。
376+
このループしやすい問い合わせに、<code class="structfield">path</code><code class="structfield">is_cycle</code>の2列を加えます。
377377

378378
</p><pre class="programlisting">
379379
WITH RECURSIVE search_graph(id, link, data, depth, <span class="emphasis"><strong>is_cycle, path</strong></span>) AS (

current/html/xfunc-sql.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1610,7 +1610,7 @@
16101610
locale to compare strings:
16111611
</span>
16121612
この他、呼び出し元の照合順序とは関係なく特定の照合順序で動作する関数にしたければ、関数定義において必要な所に<code class="literal">COLLATE</code>句を付けてください。
1613-
以下の<code class="function">anyleast</code>では、文字列を比較する際に常に<code class="literal">en_US</code>を使用します
1613+
以下の<code class="function">anyleast</code>では、文字列を比較する際に常に<code class="literal">en_US</code>ロケールを使用します
16141614
</p><pre class="programlisting">
16151615
CREATE FUNCTION anyleast (VARIADIC anyarray) RETURNS anyelement AS $$
16161616
SELECT min($1[i] COLLATE "en_US") FROM generate_subscripts($1, 1) g(i);

current/postgres-A4.pdf

-203 Bytes
Binary file not shown.

index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ layout: default
77

88
## 最新
99

10-
last-updated: 2025-07-25 04:31:09 JST
10+
last-updated: 2025-07-28 04:29:50 JST
1111

1212
### 最新 PostgreSQL
1313

0 commit comments

Comments
 (0)