Skip to content

Commit

Permalink
Remove commented lines
Browse files Browse the repository at this point in the history
  • Loading branch information
theoctober19th committed Jan 30, 2024
1 parent 2818165 commit c230cf7
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions tests/integration/resources/test-iceberg.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,12 @@
StructField("row_val", LongType(), True)
])

# df = spark.createDataFrame([], schema)
# df.writeTo("demo.foo.bar").create()

# schema = spark.table("demo.nyc.taxis").schema
data = []
for idx in range(num_rows):
row = (idx + 1, random.randint(1, 100))
data.append(row)

df = spark.createDataFrame(data, schema)
# df.writeTo("demo.nyc.taxis").append()
df.writeTo("demo.foo.bar").create()


Expand Down

0 comments on commit c230cf7

Please sign in to comment.