DBZ-7643 Support numeric values without mantissas

This commit is contained in:
Chris Cranford 2024-03-14 17:06:51 -04:00 committed by Jiri Pechanec
parent 2a9f3ab82c
commit 82b4038eb3
2 changed files with 3 additions and 1 deletions

View File

@ -5243,7 +5243,7 @@ constant
;
numeric
: UNSIGNED_INTEGER
: UNSIGNED_INTEGER '.'?
| APPROXIMATE_NUM_LIT
;

View File

@ -78,6 +78,8 @@ SPLIT PARTITION TABLE_NAME_CURRENT AT (TO_DATE('20240116040241', 'YYYYMMDDHH24MI
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;
-- alter table (Oracle 23+)
alter table fruit annotations (Visibility 'Everyone');
alter table fruit annotations (drop Visibility);