Skip to content

Commit

Permalink
feat(pg_compatible): add field numeric_precision_radix in informati…
Browse files Browse the repository at this point in the history
…on_schema.columns (#17176)

Signed-off-by: tabVersion <[email protected]>
  • Loading branch information
tabVersion authored Jun 8, 2024
1 parent bf9da25 commit 4004e7d
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ use risingwave_frontend_macro::system_catalog;
NULL AS column_default,
NULL::integer AS character_maximum_length,
NULL::integer AS numeric_precision,
NULL::integer AS numeric_precision_radix,
NULL::integer AS numeric_scale,
NULL::integer AS datetime_precision,
c.position AS ordinal_position,
Expand Down Expand Up @@ -81,6 +82,7 @@ struct Column {
column_default: String,
character_maximum_length: i32,
numeric_precision: i32,
numeric_precision_radix: i32,
numeric_scale: i32,
datetime_precision: i32,
ordinal_position: i32,
Expand Down

0 comments on commit 4004e7d

Please sign in to comment.