How to Specify Informats in FedSQL

In FedSQL, specify informats as an attribute in the HAVING clause of the CREATE TABLE statement. For example, in the following statement, the column X is declared with the IEEE8.2 format and the BITS5.2 informat.
create table a (x double having format ieee8.2 informat bits5.2 label 'foo');