本文整理匯總了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")