You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
--!syntax_pg
create table A (id int not null primary key, val text);
insert into A values (1);
insert into A values (2, 'a');
\pset null '<null>'
select * from A;
drop table A;
The syntax works for YDB. YT query inserts nulls instead of values.