Skip to content

Commit 237377b

Browse files
committed
[clean]fix java doc
1 parent 51c8188 commit 237377b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/embulk/output/bigquery_java/converter/BigqueryStringConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public static void convertAndSet(ObjectNode node, String name, String src, Bigqu
109109
}
110110
break;
111111
case NUMERIC:
112-
// BigQuery NUMERIC型のスケール最大値が9なのでデフォルト値を9にする
112+
// Default value: 9, BigQuery NUMERIC type has a maximum scale of 9
113113
int scale = columnOption != null ? columnOption.getScale() : 9;
114114
node.put(name, new BigDecimal(src).setScale(scale, BigDecimal.ROUND_CEILING));
115115
break;

0 commit comments

Comments
 (0)