This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 262850 - [82cat] Add ability to view CHECK constraints of tables
Summary: [82cat] Add ability to view CHECK constraints of tables
Status: NEW
Alias: None
Product: db
Classification: Unclassified
Component: DB schema (show other bugs)
Version: 8.2
Hardware: PC Mac OS X
: P3 normal (vote)
Assignee: Libor Fischmeistr
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-07-18 11:13 UTC by brettryan
Modified: 2016-07-18 11:13 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description brettryan 2016-07-18 11:13:00 UTC
When creating database tables the IDE allows the user to specify check constraints, however; these check constraints are not visible within the schema of the table structure.


Using the sample database (Java DB) execute the following SQL

create table test_check_constraint (
  id    integer primary key,
  name  varchar(30) not null,
  check(length(name) > 1)  
);


It is expected that within the navigator a `Constraints` node should be available within the browser.