2007-09-03から1日間の記事一覧

とりあえず

こんな感じで文法解析は追加 ForUpdateClause forUpdate(): { ForUpdateClause forUpdate = new ForUpdateClause(); Token type = null; Token nowait = null; TablesList tables = null; } { (type= | type=) [ tables=tables()] [nowait=] { forUpdate.set…

行ロックの追加

行ロックの構文を追加します。行ロックの構文は、いろいろとあるのですが、PostgreSQLの文法をメインにしていこうと思います。[ FOR { UPDATE | SHARE } [ OF table_name [, ...] ] [ NOWAIT ] ]に対応します。