Skip to content

Commit

Permalink
Fix review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
hiroyuki-sato committed Oct 30, 2024
1 parent 59d32f6 commit 5e08afe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions c_glib/arrow-glib/basic-data-type.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1495,10 +1495,10 @@ garrow_decimal_data_type_class_init(GArrowDecimalDataTypeClass *klass)
* Returns: (nullable):
* The newly created decimal data type on success, %NULL on error.
*
* #GArrowDecimal32DataType is used if @precision up to 9
* #GArrowDecimal64DataType is used if @precision up to 19
* #GArrowDecimal128DataType is used if @precision up to 38
* Otherwise, #GArrowDecimal256DataType is used
* * #GArrowDecimal32DataType is used if @precision up to 9
* * #GArrowDecimal64DataType is used if @precision up to 19
* * #GArrowDecimal128DataType is used if @precision up to 38
* * #GArrowDecimal256DataType is used otherwise
*
* Since: 0.10.0
*/
Expand Down
3 changes: 2 additions & 1 deletion c_glib/arrow-glib/type.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@ typedef enum {
GARROW_TYPE_LARGE_LIST,
GARROW_TYPE_MONTH_DAY_NANO_INTERVAL,
GARROW_TYPE_RUN_END_ENCODED,
GARROW_TYPE_DECIMAL32,
/* TODO: Remove = 43 when we add STRING_VIEW(39)..LARGE_LIST_VIEW(42). */
GARROW_TYPE_DECIMAL32 = 43,
GARROW_TYPE_DECIMAL64,
} GArrowType;

Expand Down

0 comments on commit 5e08afe

Please sign in to comment.