本文整理汇总了Python中dazzle.core.table.Table.copy方法的典型用法代码示例。如果您正苦于以下问题:Python Table.copy方法的具体用法?Python Table.copy怎么用?Python Table.copy使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类dazzle.core.table.Table
的用法示例。
在下文中一共展示了Table.copy方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_copy04
# 需要导入模块: from dazzle.core.table import Table [as 别名]
# 或者: from dazzle.core.table.Table import copy [as 别名]
def test_copy04(self):
test_dir = os.path.join("/temp/dazzle-test2")
ds2 = DataSet(test_dir, force_create=True)
t = Table.copy("t", ds2, "/temp/dazzle-test/t")
assert_equal_table(t, self.ds.get_table("t"))
示例2: test_copy02
# 需要导入模块: from dazzle.core.table import Table [as 别名]
# 或者: from dazzle.core.table.Table import copy [as 别名]
def test_copy02(self):
Table.copy("t", self.ds, "/bim/bam")
示例3: test_copy03
# 需要导入模块: from dazzle.core.table import Table [as 别名]
# 或者: from dazzle.core.table.Table import copy [as 别名]
def test_copy03(self):
test_dir = os.path.join("/temp/dazzle-test2")
ds2 = DataSet(test_dir, force_create=True)
Table.copy("_", ds2, "/temp/dazzle-test/t")
示例4: test_copy01
# 需要导入模块: from dazzle.core.table import Table [as 别名]
# 或者: from dazzle.core.table.Table import copy [as 别名]
def test_copy01(self):
Table.copy("t", self.ds, "/temp/dazzle-test")