Esempio n. 1
0
def _check_roundtrip(con, df):
    writer = DataFrameWriter(con, df)
    path = writer.write_temp_csv()

    table = writer.delimited_table(path)
    df2 = table.execute()
    assert_frame_equal(df2, df)
def _check_roundtrip(con, df):
    writer = DataFrameWriter(con, df)
    path = writer.write_temp_csv()

    table = writer.delimited_table(path)
    df2 = table.execute()
    assert_frame_equal(df2, df)
Esempio n. 3
0
    def _check_roundtrip(self, df):
        writer = DataFrameWriter(self.con, df)
        writer.write_csv()

        table = writer.delimited_table()
        df2 = table.execute()

        assert_frame_equal(df2, df)
Esempio n. 4
0
    def _check_roundtrip(self, df):
        writer = DataFrameWriter(self.con, df)
        writer.write_csv()

        table = writer.delimited_table()
        df2 = table.execute()

        assert_frame_equal(df2, df)