Re: [SQL] plpgsql syntax

2004-09-23 Thread Tom Lane
Kemin Zhou <[EMAIL PROTECTED]> writes: > I just want to bring up a point for discussion: > for the function definition is treated as a long string right now. Why > not add an additional token so that we don't have to write 10 single quotes. Something's already been done about this for 8.0.

Re: [SQL] plpgsql syntax

2004-09-23 Thread Yasir Malik
for example create function a_func() return integer as . end a_func after as and before end a_func marks the definition body. Would this be better than the ' '? I guess having a parser that gave better error messages would be nice, too. Yasir ---(end of broadcast)

[SQL] plpgsql syntax

2004-09-23 Thread Kemin Zhou
I just want to bring up a point for discussion: for the function definition is treated as a long string right now. Why not add an additional token so that we don't have to write 10 single quotes. for example create function a_func() return integer as . end a_func after as and before end a_fu