FE=> Query (query="DROP TABLE IF EXISTS pgproto_test1") <= BE NoticeResponse(S NOTICE V NOTICE C 00000 M table "pgproto_test1" does not exist, skipping F tablecmds.c L 914 R DropErrorMsgNonExistent ) <= BE CommandComplete(DROP TABLE) <= BE ReadyForQuery(I) FE=> Query (query="CREATE TABLE pgproto_test1(i INT)") <= BE CommandComplete(CREATE TABLE) <= BE ReadyForQuery(I) FE=> Query (query="INSERT INTO pgproto_test1 VALUES(1)") <= BE CommandComplete(INSERT 0 1) <= BE ReadyForQuery(I) FE=> Parse(stmt="S2", query="SELECT 1 FROM pgproto_test1") FE=> Bind(stmt="S2", portal="") FE=> Describe(stmt="S2") FE=> Execute(portal="") FE=> Close(stmt="S2") FE=> Parse(stmt="S3", query="SELECT 1 FROM pgproto_test1") FE=> Bind(stmt="S3", portal="") FE=> Describe(stmt="S3") FE=> Execute(portal="") FE=> Close(stmt="S3") FE=> Sync <= BE ParseComplete <= BE BindComplete <= BE ParameterDescription <= BE RowDescription <= BE DataRow <= BE CommandComplete(SELECT 1) <= BE CloseComplete <= BE ParseComplete <= BE BindComplete <= BE ParameterDescription <= BE RowDescription <= BE DataRow <= BE CommandComplete(SELECT 1) <= BE CloseComplete <= BE ReadyForQuery(I) FE=> Query (query="DROP TABLE pgproto_test1") <= BE CommandComplete(DROP TABLE) <= BE ReadyForQuery(I) FE=> Terminate