-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Windows Support #1
Comments
Sure. I don't think the first is an issue as that's Ant scanning code which I believe does the right thing but I'll verify. The second instance looks like an issue. |
I agree. I changed both to use File.separator and it works on Windows now. |
Thanks! I have another windows support issue that is related to takari and presto, but am having a hard time finding out where the source is and where to created the issue. The problem is that the io.provis.provisio plugin uses takari.archiver 0.1.7. This version has an issue with reading windows file attributes. This issue is fixed in takari.archiver 0.1.8. Do you know where I can file an issue to have io.provis.provisio depend on takari.archiver 0.1.8 and have a new package pushed? |
I will fix that too and push it. I will try it with Presto and if it's all good I'll push new releases and make a pull request for Presto. |
Thanks a ton!!! |
Any update on the io.provis.provisio, takari.archiver issue? This one makes it especially difficult to build Presto on Windows because I cannot find the source and have to modify the provisio-0.1.14.pom in my maven package cache, updating takariArchiverVersion to 0.1.8. |
replaced slash by File.separateChar
The presto-maven-plugin:0.1.12 compilation prompt cannot find the Java class, which is a custom class in the project.Then use the presto - maven plugin: 0.1.12 compile on Windows at ${project. Build. OutputDirectory} position is not available, can't access.But manual access is available.May I ask what the problem is?thank you The wrong case: Caused by: java.lang.NoClassDefFoundError: org\apache\carbondata\presto\CarbonColumnVectorWrapper (wrong name: org/apache/carbondata/presto/CarbonColumnVectorWrapper) |
I have fixed it in my pull request. This isn't approved yet. |
Are you answering my question?When will this problem be fixed?Please inform me when it is repaired. Thank you very much |
Hello, when can I update this version? TKS |
You pull request #11 has one problem:
I suggest writing classPath.substring(0, classPath.length() - 6).replace(File.separator, "."); instead of classPath.substring(0, classPath.length() - 6).replace(File.separator, '.'); because it seems that "File.separator" will return a string instead of a char. |
Hello! I did not use "File.separator" in my pull request #11 but "File.separateChar" |
That's right. Sorry for this. |
replaced slash by File.separateChar
Can you please change lines 92 & 97 to use to the correct path separator for each platform?
The text was updated successfully, but these errors were encountered: