当前位置: 首页>>代码示例>>Python>>正文


Python op.inline_literal方法代码示例

本文整理汇总了Python中alembic.op.inline_literal方法的典型用法代码示例。如果您正苦于以下问题:Python op.inline_literal方法的具体用法?Python op.inline_literal怎么用?Python op.inline_literal使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在alembic.op的用法示例。


在下文中一共展示了op.inline_literal方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: upgrade

# 需要导入模块: from alembic import op [as 别名]
# 或者: from alembic.op import inline_literal [as 别名]
def upgrade():
    op.add_column("resource_type", sa.Column('tablename', sa.String(18),
                                             nullable=True))

    resource_type = sa.Table(
        'resource_type', sa.MetaData(),
        sa.Column('name', sa.String(255), nullable=False),
        sa.Column('tablename', sa.String(18), nullable=True)
    )
    op.execute(resource_type.update().where(
        resource_type.c.name == "instance_network_interface"
    ).values({'tablename': op.inline_literal("'instance_net_int'")}))
    op.execute(resource_type.update().where(
        resource_type.c.name != "instance_network_interface"
    ).values({'tablename': resource_type.c.name}))

    op.alter_column("resource_type", "tablename", type_=sa.String(18),
                    nullable=False)
    op.create_unique_constraint("uniq_resource_type0tablename",
                                "resource_type", ["tablename"]) 
开发者ID:gnocchixyz,项目名称:gnocchi,代码行数:22,代码来源:0718ed97e5b3_add_tablename_to_resource_type.py

示例2: test_inline_literal

# 需要导入模块: from alembic import op [as 别名]
# 或者: from alembic.op import inline_literal [as 别名]
def test_inline_literal(self):
        context = op_fixture()
        from sqlalchemy.sql import table, column
        from sqlalchemy import String, Integer

        account = table(
            "account", column("name", String), column("id", Integer)
        )
        op.execute(
            account.update()
            .where(account.c.name == op.inline_literal("account 1"))
            .values({"name": op.inline_literal("account 2")})
        )
        op.execute(
            account.update()
            .where(account.c.id == op.inline_literal(1))
            .values({"id": op.inline_literal(2)})
        )
        context.assert_(
            "UPDATE account SET name='account 2' "
            "WHERE account.name = 'account 1'",
            "UPDATE account SET id=2 WHERE account.id = 1",
        ) 
开发者ID:sqlalchemy,项目名称:alembic,代码行数:25,代码来源:test_op.py

示例3: test_auto_literals

# 需要导入模块: from alembic import op [as 别名]
# 或者: from alembic.op import inline_literal [as 别名]
def test_auto_literals(self):
        context = op_fixture(as_sql=True, literal_binds=True)
        from sqlalchemy.sql import table, column
        from sqlalchemy import String, Integer

        account = table(
            "account", column("name", String), column("id", Integer)
        )
        op.execute(
            account.update()
            .where(account.c.name == op.inline_literal("account 1"))
            .values({"name": op.inline_literal("account 2")})
        )
        op.execute(text("update table set foo=:bar").bindparams(bar="bat"))
        context.assert_(
            "UPDATE account SET name='account 2' "
            "WHERE account.name = 'account 1'",
            "update table set foo='bat'",
        ) 
开发者ID:sqlalchemy,项目名称:alembic,代码行数:21,代码来源:test_op.py

示例4: test_bulk_insert_inline_literal_as_sql

# 需要导入模块: from alembic import op [as 别名]
# 或者: from alembic.op import inline_literal [as 别名]
def test_bulk_insert_inline_literal_as_sql(self):
        context = op_fixture("postgresql", True)

        class MyType(TypeEngine):
            pass

        t1 = table("t", column("id", Integer), column("data", MyType()))

        op.bulk_insert(
            t1,
            [
                {"id": 1, "data": op.inline_literal("d1")},
                {"id": 2, "data": op.inline_literal("d2")},
            ],
        )
        context.assert_(
            "INSERT INTO t (id, data) VALUES (1, 'd1')",
            "INSERT INTO t (id, data) VALUES (2, 'd2')",
        ) 
开发者ID:sqlalchemy,项目名称:alembic,代码行数:21,代码来源:test_bulk_insert.py

示例5: test_bulk_insert_inline_literal

# 需要导入模块: from alembic import op [as 别名]
# 或者: from alembic.op import inline_literal [as 别名]
def test_bulk_insert_inline_literal(self):
        class MyType(TypeEngine):
            pass

        t1 = table("foo", column("id", Integer), column("data", MyType()))

        self.op.bulk_insert(
            t1,
            [
                {"id": 1, "data": self.op.inline_literal("d1")},
                {"id": 2, "data": self.op.inline_literal("d2")},
            ],
            multiinsert=False,
        )

        eq_(
            self.conn.execute(text("select id, data from foo")).fetchall(),
            [(1, "d1"), (2, "d2")],
        ) 
开发者ID:sqlalchemy,项目名称:alembic,代码行数:21,代码来源:test_bulk_insert.py

示例6: downgrade

# 需要导入模块: from alembic import op [as 别名]
# 或者: from alembic.op import inline_literal [as 别名]
def downgrade(engine_name):
    hazardtype = HazardType.__table__

    op.execute(
        hazardtype.delete() \
            .where(hazardtype.c.mnemonic==op.inline_literal('UF')))
    op.execute(
        hazardtype.delete() \
            .where(hazardtype.c.mnemonic==op.inline_literal('EH')))
    op.execute(
        hazardtype.delete() \
            .where(hazardtype.c.mnemonic==op.inline_literal('WF')))
    op.execute(
        hazardtype.delete() \
            .where(hazardtype.c.mnemonic==op.inline_literal('AP')))
    pass 
开发者ID:GFDRR,项目名称:thinkhazard,代码行数:18,代码来源:9596ec0e704b_add_new_hazard_types.py

示例7: upgrade

# 需要导入模块: from alembic import op [as 别名]
# 或者: from alembic.op import inline_literal [as 别名]
def upgrade(engine_name):

    for htype in ['UF', 'WF', 'AP']:
        for level in ['VLO', 'LOW', 'MED', 'HIG']:
            op.execute(hazardcategory.insert().values(
                hazardtype_id=sa.select(
                    [hazardtype.c.id],
                    hazardtype.c.mnemonic==op.inline_literal(htype)
                ),
                hazardlevel_id=sa.select(
                    [hazardlevel.c.id],
                    hazardlevel.c.mnemonic==op.inline_literal(level)
                ),
                general_recommendation=op.inline_literal(
                    'General recommendation for %s %s' % (htype, level))
            )) 
开发者ID:GFDRR,项目名称:thinkhazard,代码行数:18,代码来源:8f08766e4541_add_category_for_urban_flood.py

示例8: upgrade

# 需要导入模块: from alembic import op [as 别名]
# 或者: from alembic.op import inline_literal [as 别名]
def upgrade():
    ### commands auto generated by Alembic - please adjust! ###
    query_tbl = sa.sql.table('query', sa.sql.column('platform', sa.String))
    pack_tbl = sa.sql.table('pack', sa.sql.column('platform', sa.String))
    op.execute(
        query_tbl.update() \
            .where(
                sa.or_(
                    query_tbl.c.platform==op.inline_literal('redhat,centos'),
                    query_tbl.c.platform==op.inline_literal('ubuntu'),
                )
            ).values({'platform': op.inline_literal('linux')})
    )
    op.execute(
        pack_tbl.update() \
            .where(
                sa.or_(
                    query_tbl.c.platform==op.inline_literal('redhat,centos'),
                    query_tbl.c.platform==op.inline_literal('ubuntu'),
                )
            ).values({'platform': op.inline_literal('linux')})
    )
    op.add_column('query', sa.Column('shard', sa.Integer(), nullable=True))
    ### end Alembic commands ### 
开发者ID:mwielgoszewski,项目名称:doorman,代码行数:26,代码来源:a76be8b92780_add_shard_column_to_query.py

示例9: test_cant_op

# 需要导入模块: from alembic import op [as 别名]
# 或者: from alembic.op import inline_literal [as 别名]
def test_cant_op(self):
        if hasattr(op, "_proxy"):
            del op._proxy
        assert_raises_message(
            NameError,
            "Can't invoke function 'inline_literal', as the "
            "proxy object has not yet been established "
            "for the Alembic 'Operations' class.  "
            "Try placing this code inside a callable.",
            op.inline_literal,
            "asdf",
        ) 
开发者ID:sqlalchemy,项目名称:alembic,代码行数:14,代码来源:test_op.py

示例10: upgrade

# 需要导入模块: from alembic import op [as 别名]
# 或者: from alembic.op import inline_literal [as 别名]
def upgrade():
    # Add columns, but with null allowed
    op.add_column('request', sa.Column('constellation', sa.String(length=25),
            nullable=True))
    op.add_column('request', sa.Column('region', sa.String(length=25),
            nullable=True))
    op.add_column('request', sa.Column('system', sa.String(length=25),
            nullable=True))
    op.create_index('ix_request_constellation', 'request', ['constellation'],
            unique=False)
    op.create_index('ix_request_region', 'request', ['region'], unique=False)
    op.create_index('ix_request_system', 'request', ['system'], unique=False)
    # Update existing requests
    conn = op.get_bind()
    kill_id_sel = select([request.c.id])
    kill_ids = conn.execute(kill_id_sel)
    for kill_id in kill_ids:
        kill_id = kill_id[0]
        system_id = get_system_id(kill_id)
        system = systems.system_names[system_id]
        constellation = systems.systems_constellations[system]
        region = systems.constellations_regions[constellation]
        update_stmt = update(request)\
                .where(request.c.id==op.inline_literal(kill_id))\
                .values({
                    'system': system,
                    'constellation': constellation,
                    'region': region,
                })
        conn.execute(update_stmt)
    kill_ids.close()
    # Add non-null constraint
    op.alter_column('request', 'constellation', nullable=False,
            existing_server_default=None,
            existing_type=sa.String(length=25))
    op.alter_column('request', 'region', nullable=False,
            existing_server_default=None,
            existing_type=sa.String(length=25))
    op.alter_column('request', 'system', nullable=False,
            existing_server_default=None,
            existing_type=sa.String(length=25)) 
开发者ID:paxswill,项目名称:evesrp,代码行数:43,代码来源:2f22504b1e6_.py

示例11: upgrade

# 需要导入模块: from alembic import op [as 别名]
# 或者: from alembic.op import inline_literal [as 别名]
def upgrade(engine_name):
    hazardtype = HazardType.__table__
    op.add_column('enum_hazardtype', sa.Column('ready', sa.Boolean(), nullable=True), schema='datamart')
    # Set all hazardtype to ready=True
    op.execute(
        hazardtype.update().values({'ready': True}))
    # Except Air Pollution
    op.execute(
        hazardtype.update().values({'ready': False})
            .where(hazardtype.c.mnemonic==op.inline_literal('AP'))) 
开发者ID:GFDRR,项目名称:thinkhazard,代码行数:12,代码来源:cc5db2014332_adding_ready_column_in_hazardtype.py

示例12: downgrade

# 需要导入模块: from alembic import op [as 别名]
# 或者: from alembic.op import inline_literal [as 别名]
def downgrade(engine_name):
    for htype in ['UF', 'WF', 'AP']:
        op.execute(hazardcategory.delete().where(
            hazardcategory.c.hazardtype_id==sa.select(
                [hazardtype.c.id],
                hazardtype.c.mnemonic==op.inline_literal(htype)
            )
        )) 
开发者ID:GFDRR,项目名称:thinkhazard,代码行数:10,代码来源:8f08766e4541_add_category_for_urban_flood.py

示例13: downgrade

# 需要导入模块: from alembic import op [as 别名]
# 或者: from alembic.op import inline_literal [as 别名]
def downgrade(engine_name):
    op.execute(hazardcategory.delete().where(
        hazardcategory.c.hazardtype_id==sa.select(
            [hazardtype.c.id],
            hazardtype.c.mnemonic==op.inline_literal('EH')
        )
    ))
    pass 
开发者ID:GFDRR,项目名称:thinkhazard,代码行数:10,代码来源:967e9eaaed70_add_extreme_heat_hazard_categories.py

示例14: upgrade

# 需要导入模块: from alembic import op [as 别名]
# 或者: from alembic.op import inline_literal [as 别名]
def upgrade(engine_name):
    hazardtype = HazardType.__table__

    op.execute(
        hazardtype.update() \
            .where(hazardtype.c.mnemonic==op.inline_literal('DG')) \
            .values({'title': op.inline_literal('Water scarcity')}))
    pass 
开发者ID:GFDRR,项目名称:thinkhazard,代码行数:10,代码来源:c33a251714d6_change_drought_to_waterscarcity.py

示例15: downgrade

# 需要导入模块: from alembic import op [as 别名]
# 或者: from alembic.op import inline_literal [as 别名]
def downgrade(engine_name):
    hazardtype = HazardType.__table__

    op.execute(
        hazardtype.update() \
            .where(hazardtype.c.mnemonic==op.inline_literal('DG')) \
            .values({'title': op.inline_literal('Drought')}))
    pass 
开发者ID:GFDRR,项目名称:thinkhazard,代码行数:10,代码来源:c33a251714d6_change_drought_to_waterscarcity.py


注:本文中的alembic.op.inline_literal方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。