mrglassdanny / vscode-moca-client

MOCA Client Extension for Visual Studio Code
MIT License
10 stars 2 forks source link

Datatable failing to load in certain circumstances #1

Closed mrglassdanny closed 3 years ago

mrglassdanny commented 3 years ago

Example column value is: java -cp $HELLO_WORLD blah.blah.blah.blah.blah -v FOO -W BAR -a http://localhost:1000/service -j $MYDIR/dir/file.xml -p 1000 -P 1001

lukerhoffman commented 3 years ago

Issue with trunc(date, 'IW') and to_char function w/i Oracle db. table does not load.

ghost commented 3 years ago

@lukerhoffman -- issue here is with how mocaResults.ts is dealing with dates. I did some tests and this processing is unnecessary and actually hurting things. Removing this processing will fix your/all other date issues. I plan on doing so for the next release.

That being said, I am also looking into potential data grid alternatives.

ghost commented 3 years ago

Found the issue -- it is due to '$' in the code.

Since I am wrapping all cells in ``, $ is causing problems

ghost commented 3 years ago

This is fixed in v1.6.26!