本文整理汇总了Python中core.db.connection.DataHubConnection.delete_view方法的典型用法代码示例。如果您正苦于以下问题:Python DataHubConnection.delete_view方法的具体用法?Python DataHubConnection.delete_view怎么用?Python DataHubConnection.delete_view使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类core.db.connection.DataHubConnection
的用法示例。
在下文中一共展示了DataHubConnection.delete_view方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from core.db.connection import DataHubConnection [as 别名]
# 或者: from core.db.connection.DataHubConnection import delete_view [as 别名]
#.........这里部分代码省略.........
Raises ProgrammingError if the view already exists.
Raises ProgrammingError if the query has syntax errors.
Raises PermissionDenied on insufficient permissions.
"""
return self.user_con.create_view(
repo=repo, view=view, sql=sql)
def list_views(self, repo):
"""
Lists the views in a repo.
Returns a list of view names.
Raises LookupError on insufficient permissions or if the repo doesn't
exist.
"""
return sorted(self.user_con.list_views(repo=repo))
def describe_view(self, repo, view, detail=False):
"""
Lists a view's schema. If detail=True, provides all schema info.
Default return includes column names and types only.
Returns empty list on insufficient permissions.
Raises ValueError if repo or table are missing or the empty string.
"""
if repo.strip() in ['', None]:
raise ValueError("repo cannot be empty.")
if view.strip() in ['', None]:
raise ValueError("view cannot be empty.")
return self.user_con.describe_view(repo, view, detail)
def delete_view(self, repo, view, force=False):
"""
Deletes a view.
Set force=True to drop dependent objects (e.g. other views).
Return True on success.
Raises ValueError if repo or view has invalid characters.
Raises ProgrammingError if the repo or view do not exist, even without
sufficient permissions to see the repo exists.
Raises ProgrammingError on insufficient permissions.
"""
return self.user_con.delete_view(repo=repo, view=view, force=force)
def delete_table(self, repo, table, force=False):
"""
Deletes a table.
Set force=True to drop dependent objects (e.g. views).
Return True on success.
Raises ValueError if repo or table has invalid characters.
Raises ProgrammingError if the repo or table do not exist, even without
sufficient permissions to see the repo exists.
Raises ProgrammingError on insufficient permissions.
"""
return self.user_con.delete_table(repo=repo, table=table, force=force)
def clone_table(self, repo, table, new_table):
"""
Creates a copy of a table with the name new_table.