Create test_div table
This commit is contained in:
parent
fa983530f0
commit
b9dbf3ce7e
@ -6,7 +6,14 @@
|
|||||||
create sequence test_div_seq;
|
create sequence test_div_seq;
|
||||||
commit;
|
commit;
|
||||||
create domain D_ID as BIGINT;
|
create domain D_ID as BIGINT;
|
||||||
|
create domain D_DOUBLE as double precision;
|
||||||
|
create domain D_BIGINT as BIGINT;
|
||||||
|
|
||||||
create table test_div(
|
create table test_div(
|
||||||
test_div_id d_id generated always as identity
|
test_div_id d_id generated always as identity
|
||||||
|
, numerator D_BIGINT
|
||||||
|
, denominator D_BIGINT
|
||||||
|
, result D_DOUBLE
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user