-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
create table inttest ( | ||
k_sml smallint, | ||
k_big bigint, | ||
k_int integer | ||
); | ||
|
||
create table serialtest ( | ||
k_ser serial, | ||
k_sml smallserial, | ||
k_big bigserial | ||
); | ||
|
||
create table testreal ( | ||
k_dbl double precision, | ||
k_num numeric, | ||
k_dec decimal, | ||
k_rea real | ||
); | ||
|
||
create table testtext ( | ||
k_txt text, | ||
k_ch1 char, | ||
k_ch2 character, | ||
k_vc1 character varying (3), | ||
k_vc2 varchar (4) | ||
); | ||
|
||
create table testquote ( | ||
K_Quo integer, | ||
kquot varchar (3), | ||
"KQuo" int | ||
); |