

 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\$1on\$1nondeterministic\$1update
<a name="r_error_on_nondeterministic_update"></a>

## 값(기본값은 굵은 글꼴로 표시)
<a name="r_error_on_nondeterministic_update-values"></a>

false, **true**

## Description
<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.
```