Skip to content
This repository has been archived by the owner on Oct 5, 2021. It is now read-only.

Commit

Permalink
Updating precision
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc authored Nov 22, 2019
1 parent 40e3605 commit 720f506
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/schemas/descriptor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class Descriptor
(COALESCE(udt_name, data_type) ||
CASE
WHEN character_maximum_length IS NOT NULL THEN '(' || character_maximum_length || ')'
WHEN numeric_precision IS NOT NULL THEN '(' || numeric_precision || ')'
WHEN numeric_precision IS NOT NULL THEN '(' || numeric_precision || ', ' || numeric_scale || ')'
ELSE ''
END) AS udt_name,
character_maximum_length
Expand Down

0 comments on commit 720f506

Please sign in to comment.