CREATE INDEX IDX_1 ON #ExpTable(B1) CREATE INDEX IDX_2 ON #ExpTable(B2) CREATE INDEX IDX_3 ON #ExpTable(B3) CREATE INDEX IDX_4 ON #ExpTable(B4) CREATE INDEX IDX_5 ON #ExpTable(B5)
CREATE INDEX IDX_6 ON #ExpTable(B6) CREATE INDEX IDX_7 ON #ExpTable(B7) CREATE INDEX IDX_8 ON #ExpTable(B8) CREATE INDEX IDX_9 ON #ExpTable(B9) CREATE INDEX IDX_10 ON #ExpTable(B10) select
a.data_id , b.Q, b.QType
from #ExpTable a , (select distinct Q, QType from @tempXTable) b where ( a.B1 = b.Q or a.B2 = b.Q or a.B3 = b.Q or a.B4 = b.Q or a.B5 = b.Q or a.B6 = b.Q or a.B7 = b.Q or a.B8 = b.Q or a.B9 = b.Q or a.B10 = b.Q )
c*n
5 楼
I tried mvn -Dkey=val this works fine but I'd like to fix it in pom.xml I tried adding it to section, also tried adding it to project.properties file, neither works thanks a lot
【在 c******n 的大作中提到】 : I tried : mvn -Dkey=val : this works fine : but I'd like to fix it in pom.xml : I tried adding it to section, also tried adding it to : project.properties file, neither works : thanks a lot
thanks, but plugin is not defined by myself, it's actually the clover plugin, higher versions of clover fires off a Xwindow for reports, and fails if I'm in a console. setting system property java.awt.headless=true would work
Usually, plugin expect those system parameters from command line. If plugin writer wants, he can provide a way to configure through . Unfortunately, Clover doesn't do that. Your choice, either download clover source code and change it; or try the newer version of Clover. Seems Clover is maintained by Atlassian now, maybe they already have solution.
【在 c******n 的大作中提到】 : thanks, but plugin is not defined by myself, : it's actually the clover plugin, higher versions of clover fires off a : Xwindow for reports, and fails if I'm in a console. : setting system property java.awt.headless=true would work : : plugin
c*n
14 楼
Thanks, I do it through Makefile now, but it's kind of unsafe , if the user invokes mvn manually, he may be confronted with this error again.
plugin maybe
【在 g**********y 的大作中提到】 : Usually, plugin expect those system parameters from command line. If plugin : writer wants, he can provide a way to configure through . : Unfortunately, Clover doesn't do that. : Your choice, either download clover source code and change it; or try the : newer version of Clover. Seems Clover is maintained by Atlassian now, maybe : they already have solution.