Wessel van der Veen
Wessel van der Veen
Is there anyway within the current capabilities of Sqitch that I can do to mimic something like this? I was thinking of something with symlinks, but that will definitely get...
I am actually having exactly the same issue!
I think I might be having the same issue, as I am seeing the same kind of logs on my end. The only difference is that I get one additional...
Yessir, that I did. Is there some additional logging I can further enable that would allow me to somehow detect that this segfault has occurred?
Maybe for anyone who's encountering this issue where you're seemingly getting this error for no reason. I've managed to track down why it was failing for me, and I've fixed...
@jamesob Any chance you can update the brew formula as well? Or am I missing something.
I have built something that can facilitate this exact use case. I’ve added a second optional parameter to the `vm.allocate` function that allows you to define a label for the...
> Interesting approach. I don't think vm.allocate is appropriate for that but maybe a setLabel function can be added instead. That way you can label something existing too. Yeah, I...
Setting labels in the UI is a bit more work than I initially thought. I think the best approach is to have a dedicated spot where one can view all...
Here's a simple one: ```plpgsql CREATE TABLE IF NOT EXISTS public.table_a ( column_a TEXT NOT NULL PRIMARY KEY ); INSERT INTO public.table_a(column_a) VALUES ('test_a'); CREATE OR REPLACE FUNCTION public.function_a( )...