NovaStar Database Reference / Functions / data_notbreak
Overview
The data_notbreak function checks if the flag B is not in a list of flags (a string).
It is defined in the data_flags.sql file distributed with the NovaStar installer.
Function Usage
The data_notbreak function syntax is as follows.
data_notbreak(
IN flags text)
The function returns a boolean - true if B is not in flags.
Function parameters are as follows.
data_select(...) Function Parameters
| Parameter | Description | Default |
|---|---|---|
flags |
String containing flags to check - typically the contents of the flags column of a data table. |
For the set of flags (or string) V1, the following call would return true:
select * from data_notbreak('V1');
Troubleshooting
See Also
data_notflag- Function called internally for the check.