Steve Ivy
Steve Ivy
@dghubble - one more vote to see this merged and released soon! 👍
The Kafka Connect stuff is interesting. Could be that we add something similar to this? The developer could pass `failures="pass"` (skip failures and keep going), `failures="fail"` (the default now, blow...
Another possibility stolen from Kafka Connect would be putting the error data in the message headers when forwarded to the new topic, rather than using a new wrapper Record for...
@stefanbischof As far as I can determine (from a few days spent in PDB) in `query()`, `initBindings` behaves like SQL parameters - the variables are replaced in the query. ```python...
Hoping someone has a lead on this because I'm _really_ liking Zed but not having full project search working is like having my left arm cut off, especially for large...
My python project is a simple project with no git repo or `.gitignore` setup.
After moving my project out of `$HOME` and into my normal location, project search is working again.
I just spent hours over the last week trying to figure out why `graph.update(insert_query, initBindings={...})` didn't work, even wrote tests to prove it... (see #2555) Now it seems that apparently...
BTW @aucampia - rdflib's SPARQL _does_ support SQL-style parameters/bindings for `SELECT` and I assume anything handled by `Graph.query()`: ``` import rdflib from rdflib.namespaces import FOAF joe = rdflib.URIRef('Joe') g =...
@namedgraph Wow, this is a form I hadn’t seen yet, and will come in handy!!