We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9542a7 commit 0de40adCopy full SHA for 0de40ad
test/ChDbTest/ChDbTest.cs
@@ -129,6 +129,8 @@ public void CsvTest()
129
Eva, 28, Paris
130
""";
131
var dataPath = "/tmp/chdb/data";
132
+ if (Directory.Exists(dataPath))
133
+ Directory.Delete(dataPath, true);
134
Directory.CreateDirectory(dataPath);
135
File.WriteAllText(Path.Combine(".", "test.csv"), csv);
136
using var session = new Session
0 commit comments