Rajiv Abraham
Rajiv Abraham
Thank you for saving this code. I have a question. I have created the jar since I don't see a jar and pasted it in my plugins folder. But I...
Hi, I'm trying to insert into a column with a VARCHAR[] array type. I'm trying to use the dataframe ingest approach but it errors out. ``` duckdb: 0.3.1 OS: Ubuntu...
Hi, ``` %%logica Engineers @Engine("sqlite"); Employee(name: "Alice", role: "Product Manager"); Employee(name: "Bob", role: "Engineer"); Employee(name: "Caroline", role: "Engineer"); Employee(name: "David", role: "Data Scientist"); Employee(name: "Eve", role: "Data Scientist"); Engineers(..r) :-...
Hi, The following code errors out for psql. ``` # Setup # Install Logica. !pip install logica # Install postgresql server. !sudo apt-get -y -qq update !sudo apt-get -y -qq...
```shell %%logica StructureTest @Engine("sqlite"); StructureTest(a: {x: 1, y: 2, z: { w: "hello", v: "world"}}); StructureTest(a: {x: 3, y: 4, z: { w: "bonjour", v: "monde"}}); ``` ``` print(StructureTest['a'].values[0]) print(type(StructureTest['a'].values[0]))...
Hi, Re: the following code in the tutorial. ``` @Engine("sqlite"); AnonymizedCodeContribution(cl_lengths: [110, 220, 405], org: "ads"); AnonymizedCodeContribution(cl_lengths: [30, 51, 95], org: "ads"); AnonymizedCodeContribution(cl_lengths: [10, 20, 1000], org: "games"); HarmonicMean(x) =...
Hi, If I run this, I don't get even numbers. ``` %%logica Even @Engine("sqlite"); Z(x) :- x in Range(20); Even(x) :- Z(x), Z(x / 2); ``` ``` print('Even numbers:', ',...
Hi, I'm new to Rust so I would appreciate any advice. My intent is build a Python wrapper over DDLog. For version 1, I wanted to just take the output...
Hi, `robe-jump` works for for jumping to methods on other classes but when I do it on a private method, it shows all Modules which may have the method but...
Hi, Thanks to @yaronha, I'm able to deploy a single file. How do I deploy a directory or archive? My directory will contain the `handler.py` and other user modules. I...