
|
If you were logged in you would be able to see more operations.
|
|
|
| Planning Status: |
Unspecified
|
|
test case:
CREATE DOMAIN BOOLEAN AS INTEGER NOT NULL CHECK (value in (0, 1));
execute block (x boolean = :a) returns (y integer) as begin y = x; suspend; end
...the above lets x pass through -- it works for stored procedures though (i.e. gives validation error as expected).
|
|
Description
|
test case:
CREATE DOMAIN BOOLEAN AS INTEGER NOT NULL CHECK (value in (0, 1));
execute block (x boolean = :a) returns (y integer) as begin y = x; suspend; end
...the above lets x pass through -- it works for stored procedures though (i.e. gives validation error as expected).
|
Show » |
|