ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/ibx/trunk/testsuite/resources/Test05.sql
Revision: 319
Committed: Thu Feb 25 12:05:40 2021 UTC (3 years, 1 month ago) by tony
Content type: application/sql
File size: 297 byte(s)
Log Message:
Merge into public release

File Contents

# Content
1 Create Table IBXTest (
2 TableKey Integer not null,
3 F1 Timestamp with Time Zone,
4 F2 Time with Time Zone,
5 F3 DecFloat(16),
6 F4 DecFloat(34),
7 F5 Numeric (24,6),
8 F6 INT128,
9 Primary Key(TableKey)
10 ) SQL SECURITY DEFINER;
11
12 ALTER DATABASE SET DEFAULT SQL SECURITY DEFINER;
13
14 Create Generator IBXGen;