Chui Tey
Chui Tey
I'm new to Vite, so I'm not sure how this works, but it seems the following helps: ``` // vite.config.ts import * as reactPlugin from 'vite-plugin-react' import type { UserConfig...
@KnicKnic I just bookmarked these: https://github.com/microsoft/SDN/blob/master/Kubernetes/flannel/register-svc.ps1 a bunch of script for establishing a SDN on Windows. In particular https://github.com/microsoft/SDN/search?q=cniconfig&unscoped_q=cniconfig Powershell scripts that generate cni configuration. This is old [How To...
Hi Bruce, thank you again it's a little side exploration for a wider issue, and open source is a gift from you, so please, no ETA. :) I'm trying to...
I did a bit more investigation Bruce: ``` // passes const string sql = "SELECT ISNULL( CASE 1 WHEN 2 THEN 2 ELSE 3 END, '') AS FROM T"; //...
I noticed that the problem does not occur parsing argument list that does not have case statements. However argumentListParser has poor error recovery.
I refined the test case to a point where it was a trailing space past the CASE that triggered the null reference. There’s some code that is adding NULL to...
What about if I made the Tokens read only, and provided an AddToken function? I can terminate early and make it easier to troubleshoot.