abmyii

Results 24 comments of abmyii

Sorry for butting in, but can the signal be caught? https://docs.python.org/3/library/signal.html https://nattster.wordpress.com/2013/06/05/catch-kill-signal-in-python/ https://stackabuse.com/handling-unix-signals-in-python/ https://www.devdungeon.com/content/python-catch-sigint-ctrl-c https://stackoverflow.com/questions/18499497/how-to-process-sigterm-signal-gracefully

For Windows-specific kill signals: https://stackoverflow.com/questions/47306805/signal-sigterm-not-received-by-subprocess-on-windows?rq=1 https://stackoverflow.com/questions/35772001/how-to-handle-the-signal-in-python-on-windows-machine https://danielkaes.wordpress.com/2009/06/04/how-to-catch-kill-events-with-python/

I found a hacky fix for https://github.com/dolthub/dolt/issues/2108 - hacky because I don't know what it breaks by using it. I changed https://github.com/dolthub/dolt/blob/4a5bb3cff2955d849ef40f325aff084a692ae906/go/libraries/doltcore/table/editor/sessioned_table_editor.go#L472 to: ```go if !ok || val == types.NullValue...