gianm commented on issue #8100: SQL support for t-digest based sketch aggregators URL: https://github.com/apache/incubator-druid/pull/8100#issuecomment-515621173 Hey @samarthjain, I see this error in CI, ``` Caused by: java.lang.ClassNotFoundException: org.apache.druid.query.expression.LookupEnabledTestExprMacroTable at java.net.URLClassLoader.findClass(URLClassLoader.java:382) at java.lang.ClassLoader.loadClass(ClassLoader.java:424) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:349) at java.lang.ClassLoader.loadClass(ClassLoader.java:357) ... 28 more ``` You probably need this in your pom: ``` <dependency> <groupId>org.apache.druid</groupId> <artifactId>druid-server</artifactId> <version>${project.parent.version}</version> <scope>test</scope> </dependency> ```
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
