Bug report #13856

Updated by Paolo Cavallini about 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.

Back