Hi PostgreSQL Community,
some points I like to make mainly because of observations of how other
open source projects handle this topic:
1) CoC might result in developers leaving projects
http://lists.llvm.org/pipermail/llvm-dev/2018-May/122922.html
2) CoC might result in not so equal peers a
So far, I have nothing to add, but just one thing. See below:
On 09.04.2018 00:37, g...@luxsci.net wrote:
One advantage to using logic and functions inĀ the db is that you can
fix things immediately without having to make new application builds.
That in itself is a huge advantage, IMO.
This
On 24.11.2017 12:19, Oleg Bartunov wrote:
btw, in PG 11 we expect subscription index
update test set data[age]= '30';
Out of curiosity:
Why not?
update test set data->age= 30;
It reminds me more of how to query json in PG
select data->age from test;
Cheer,
Sven