Re: Review: Row-level Locks & SERIALIZABLE transactions, postgres vs. Oracle
Andrew Dunstan <andrew@dunslane.net>
From: Andrew Dunstan <andrew@dunslane.net>
To: Kevin Grittner <Kevin.Grittner@wicourts.gov>
Cc: Florian Pflug <fgp@phlo.org>, pgsql-hackers@postgresql.org
Date: 2010-07-18T17:23:44Z
Lists: pgsql-hackers
Kevin Grittner wrote: > Comment style seems to be defined here: > > http://developer.postgresql.org/pgdocs/postgres/source-format.html > > as being: > > /* > * comment text begins here > * and continues here > */ > > You have these formats in your patch: > > /* comment text begins here > * and continues here > */ > > /* comment text begins here > and continues here */ > > /* One line comment like this. */ > > That last one is actually pretty common in PostgreSQL source, so I'm > not sure that its omission from the style page isn't accidental. > > > The style doc talks about a standard for multi-line comments - it doesn't forbid single line comments. cheers andrew