Matt Aimonetti
                                            Matt Aimonetti
                                        
                                    np, this issue seems to be due to the fact that the syscall doesn't exist on OS X so if one were to pull the package on that os, the...
Just checked mysql documentation and noticed that it behaves the same as postgres: ``` A prepared statement is specific to the session in which it was created. If you terminate...
I'm not 100% sure, the error you mentioned is one that I reported myself ;) It was fixed and I believe is available in 1.2.1 which was released a few...
You can try to run the following query in mysql to see: ``` show global status like "com_stmt%"; ``` I only started having this issue when I used transactions, and...
We are going to test adding an else statement here to close the SQL statement: https://github.com/eaigner/jet/blob/master/query.go#L78 On Thu, Mar 6, 2014 at 3:34 PM, Matt Aimonetti [email protected]: > You can...
@eaigner any idea what might be happening? we are running with this patch in prod: https://github.com/splicers/jet/commit/3aa0c348b324aaa3e8b52ae92e213cdc50511ba9 Seems to be helping some.
It works fine here on Windows 10 (using it with VSCode) but the performance is atrocious (a few seconds for code completion). Running gocode in debug mode I noticed that...
@nsf VSCode doesn't do anything special, it starts the process and exposes it on a TCP socket, then spawns a new process to ask for auto completion of the file...
``` gocode.exe set propose-builtins true lib-path "" custom-pkg-prefix "" custom-vendor-dir "" autobuild true force-debug-output "" package-lookup-mode "go" close-timeout 1800 unimported-packages false ``` Autobuild is set to true o_O This is...
I did find out that the VSCode Go extension does have a flag to autobuild: ``` let gocode = getBinPath('gocode'); let autobuild = vscode.workspace.getConfiguration('go')['gocodeAutoBuild']; cp.execFile(gocode, ['set', 'propose-builtins', 'true'], {}, (err,...