I have writing a msgpack storage plugin from drill.
https://github.com/jcmcote/drill/tree/master/contrib/storage-msgpack
I'm now trying to write test cases like
testBuilder()
.sqlQuery("select * from cp.`msgpack/testBasic.mp`")
.ordered()
.baselineColumns("a").baselineValues("1").baselineValues("1")
.baselineColumns("b").baselineValues("2").baselineValues("2")
.build().run();
However when I run the test case it says it cannot find the
msgpack/testBasic.mp file. However it is in my src/test/resources folder.
Should this work? I'm I going at it the right way?
Thanks
jc