Bug report #13856
Updated by Paolo Cavallini over 6 years ago
When setting the default for a column value, DB Manager fails fils to quote the value, e.g.
<pre>
ALTER TABLE "pippo"."comuni" ALTER "nomemin" SET DEFAULT test123
</pre>
instead of
<pre>
ALTER TABLE "pippo"."comuni" ALTER "nomemin" SET DEFAULT 'test123'
</pre>
therefore the command commnad fails.
<pre>
ALTER TABLE "pippo"."comuni" ALTER "nomemin" SET DEFAULT test123
</pre>
instead of
<pre>
ALTER TABLE "pippo"."comuni" ALTER "nomemin" SET DEFAULT 'test123'
</pre>
therefore the command commnad fails.