Skip to content

Commit

Permalink
DBZ-7643 Support numeric values without mantissas
Browse files Browse the repository at this point in the history
  • Loading branch information
Naros authored and jpechane committed Mar 15, 2024
1 parent e60f880 commit 531f17c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5209,7 +5209,7 @@ constant
;

numeric
: UNSIGNED_INTEGER
: UNSIGNED_INTEGER '.'?
| APPROXIMATE_NUM_LIT
;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,5 @@ ALTER TABLE TABLE_NAME
SPLIT PARTITION TABLE_NAME_CURRENT AT (TO_DATE('20240116040241', 'YYYYMMDDHH24MISS'))
INTO (PARTITION TABLE_NAME_20240116040241, PARTITION TABLE_NAME_CURRENT)
UPDATE INDEXES (COST_IX (PARTITION C_P1 TABLESPACE TBS_02, PARTITION C_P2 TABLESPACE TBS_03));

ALTER TABLE "AB01"."SMOSTAMM" ADD CONSTRAINT "CC_SMOSTAMM_KRAB" CHECK ((KRAB >= 0. ) AND (KRAB <= 100. )) ENABLE;

0 comments on commit 531f17c

Please sign in to comment.