Python sqlalchemy.dialects.postgresql.CIDR Examples
The following are 1
code examples of sqlalchemy.dialects.postgresql.CIDR().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
sqlalchemy.dialects.postgresql
, or try the search function
.
Example #1
Source File: test_types.py From sqlalchemy with MIT License | 5 votes |
def special_types_table(self, metadata): # create these types so that we can issue # special SQL92 INTERVAL syntax class y2m(types.UserDefinedType, postgresql.INTERVAL): def get_col_spec(self): return "INTERVAL YEAR TO MONTH" class d2s(types.UserDefinedType, postgresql.INTERVAL): def get_col_spec(self): return "INTERVAL DAY TO SECOND" table = Table( "sometable", metadata, Column("id", postgresql.UUID, primary_key=True), Column("flag", postgresql.BIT), Column("bitstring", postgresql.BIT(4)), Column("addr", postgresql.INET), Column("addr2", postgresql.MACADDR), Column("price", postgresql.MONEY), Column("addr3", postgresql.CIDR), Column("doubleprec", postgresql.DOUBLE_PRECISION), Column("plain_interval", postgresql.INTERVAL), Column("year_interval", y2m()), Column("month_interval", d2s()), Column("precision_interval", postgresql.INTERVAL(precision=3)), Column("tsvector_document", postgresql.TSVECTOR), ) return table