

 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/)을 참조하세요.

# extra\$1float\$1digits
<a name="r_extra_float_digits"></a>

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

 **5-2 **0 , -1 

## Description
<a name="r_extra_float_digits-description"></a>

float4와 float8을 포함하여 부동 소수점 값으로 표시할 자릿수를 설정합니다. 이 값은 표준 자릿수(FLT\$1DIG 또는 DBL\$1DIG)에 합산됩니다. 부분적 유효 자릿수를 포함하도록 최대 2까지 설정할 수 있습니다. 이는 정확히 복원해야 하는 부동 소수점 데이터를 출력할 때 특히 유용합니다. 또는 음의 값으로 설정하여 불필요한 자릿수를 제거할 수도 있습니다.

## 예제
<a name="r_extra_float_digits-example"></a>

다음 예시에서는 `extra_float_digits`를 `-2`로 설정합니다. 먼저 현재 파라미터 설정을 표시합니다.

```
show all;
      name                      | setting      
--------------------------+----------------
analyze_threshold_percent | 10           
datestyle                 | ISO, MDY     
extra_float_digits        | 2            
query_group               | default      
search_path               | $user, public
statement_timeout         | 0            
timezone                  | UTC            
wlm_query_slot_count      | 1
```

그런 다음 새 값을 `-2`로 설정합니다.

```
set extra_float_digits to -2;
```

마지막으로 업데이트된 파라미터 설정을 표시합니다.

```
show all;
      name                      | setting      
--------------------------+----------------
analyze_threshold_percent | 10           
datestyle                 | ISO, MDY     
extra_float_digits        | -2            
query_group               | default      
search_path               | $user, public
statement_timeout         | 0            
timezone                  | UTC            
wlm_query_slot_count      | 1
```