halostatue
How do I use the PostgreSQL JSON ? operator in Ecto? Assume that I have a table users that has a JSONB field data, and I want to test (in PostgreSQL) whether it has a key honorific.
The SQL for this is:
SELECT *
FROM users
WHERE data ? 'honorific';
Neither of these work:
from u in :users, where: fragment("? \? ?", u.data, "honorific")
from u in :users, where: fragment("? ? ?", u.data, "?", "honorific")
The former fails with a compile error (not enough parameters to match the number of question marks) and the latter fails in the query because it produces SELECT u0.* FROM users WHERE u.data '?' 'honorific'.
I think that this is a bug, and I’d be interested to know how we would need to use such operators, because PostgreSQL has several:
┌──────┬─────────┬───────────┬─────────────┬────────────────────────────┐
│ Name │ Left arg│ Right arg │ Result type │ Description │
├──────┼─────────┼───────────┼─────────────┼────────────────────────────┤
│ <?> │ abstime │ tinterval │ boolean │ is contained by │
│ ? │ jsonb │ text │ boolean │ key exists │
│ ?# │ box │ box │ boolean │ deprecated, use && instead │
│ ?# │ line │ box │ boolean │ intersect │
│ ?# │ line │ line │ boolean │ intersect │
│ ?# │ lseg │ box │ boolean │ intersect │
│ ?# │ lseg │ line │ boolean │ intersect │
│ ?# │ lseg │ lseg │ boolean │ intersect │
│ ?# │ path │ path │ boolean │ intersect │
│ ?& │ jsonb │ text[] │ boolean │ all keys exist │
│ ?- │ point │ point │ boolean │ horizontally aligned │
│ ?- │ │ line │ boolean │ horizontal │
│ ?- │ │ lseg │ boolean │ horizontal │
│ ?-| │ line │ line │ boolean │ perpendicular │
│ ?-| │ lseg │ lseg │ boolean │ perpendicular │
│ ?| │ jsonb │ text[] │ boolean │ any key exists │
│ ?| │ point │ point │ boolean │ vertically aligned │
│ ?| │ │ line │ boolean │ vertical │
│ ?| │ │ lseg │ boolean │ vertical │
│ ?|| │ line │ line │ boolean │ parallel │
│ ?|| │ lseg │ lseg │ boolean │ parallel │
└──────┴─────────┴───────────┴─────────────┴────────────────────────────┘
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
Anyone here using Honeybadger?
My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of
Bandit.HTTPError...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixir-ls
- #ai
- #elixirconf-us
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 7- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
halostatue
This does not answer the question I raised above, but I have found two workarounds for this using PostgreSQL. Both of these depend on an undocumented function (only the
?operator is documented) and a bit of digging to produce something similar as needed.Use the underlying function of
?directly.fragment("jsonb_exists(?, ?)", u.data, "honorific"). The functions for?&and?|arejsonb_exists_allandjsonb_exists_any, so those can be used as well (but note that the types aretext[], so you would need to dofragment("jsonb_exists_any(?, ?)", u.data, ["honorific"])).Create a new operator analogous to
?,?&, and?|in your schema.Then you can construct these…
Unfortunately, no one in the PostgreSQL community will understand these operators against
json/jsonbtypes because you’ve created them, and you’re no longer writing standard PostgreSQL JSON queries. Unless you know these operators have been created, asking questions about these would cause confusion.halostatue
Third post on this for those following along, how I figured all of this out. I’ve been playing in
pg_catalogrecently because I’ve been building some tooling to automate the construction of monthly table partitioning in PostgreSQL 9.6, so I’m as apt to dig into this now as ever.If you need to figure out how to do this yourself,
psql -E <database>is your friend, because when you run something like\doS(describe operators in all schemas), it will output a query like the one below (the one below is one I copied and modified to find all operators with a question mark in them for the table in the first post).This will tell you the argument types for your aliased operator. In our case, left is
jsonband right istext. It still doesn’t tell you which function to use. For that, you need to look atpg_operatordirectly:This gives us the answer that the
?operator usesjsonb_exists. If the function/procedure you’re using does not exist in the same schema as the operator you’re defining (it probably doesn’t in this case), you must fully qualify it topg_catalog.jsonb_exists.This tells us that our
CREATE OPERATORstatement needs to look like:Be careful about overloading, as overloads require different types. You can qualify an operator by using the
OPERATOR()function in a query (seen above in the introspection query):If you wish to drop an operator, you must know the arg types as well.
pedromvieira
In my experience, I just dropped any attempts to use ECTO syntax and gone straight to Postgres JSON/B “normal queries”.
What are your thoughts regarding this direct approach?
PS: I use extensively Postgres advanced functions for JSON/B.
halostatue
The need to query into the JSONB is relatively rare for my applications, and I don’t recall what made me start looking at this particular issue. Most of my needs are met by straight queries, and on the rare occasion I need to query into JSONB it’s better to just use
fragment/1, which is why I was curious.michalmuskala
You can escape the question mark with
\, but you need it doubled - once for string and once for fragment. This should work fine:NobbZ
Instead of
"? \\? ?"one can also use~S"? \? ?", which removes one layer of escaping.halostatue
I should have tried that. This might be worth putting in the Ecto documentation.