Example #1
0
 def _run_ddl(**kwds):
     stmt = ddl.AlterPartition(
         self._qualified_name, spec, part_schema, **kwds
     )
     return self._client.raw_sql(stmt)
Example #2
0
 def _get_ddl_string(props):
     stmt = ddl.AlterPartition(table_name, part, part_schema, **props)
     return stmt.compile()