

 Amazon Redshift は、パッチ 198 以降、新しい Python UDF の作成をサポートしなくなります。既存の Python UDF は、2026 年 6 月 30 日まで引き続き機能します。詳細については、[ブログ記事](https://aws.amazon.com/blogs/big-data/amazon-redshift-python-user-defined-functions-will-reach-end-of-support-after-june-30-2026/)を参照してください。

# error\_on\_nondeterministic\_update
<a name="r_error_on_nondeterministic_update"></a>

## 値 (デフォルトは太字）
<a name="r_error_on_nondeterministic_update-values"></a>

false、**true**

## 説明
<a name="description"></a>

行ごとに複数の一致を持つ UPDATE クエリがエラーを返すかどうかを指定します。

## 例
<a name="example"></a>

```
SET error_on_nondeterministic_update TO true;
            
CREATE TABLE t1(x1 int, y1 int);

CREATE TABLE t2(x2 int, y2 int);

INSERT INTO t1 VALUES (1,10), (2,20), (3,30);

INSERT INTO t2 VALUES (2,40), (2,50);

UPDATE t1 SET y1=y2 FROM t2 WHERE x1=x2; 

ERROR: Found multiple matches to update the same tuple.
```