summaryrefslogtreecommitdiff
path: root/src/test/extended-query-test/expected/query-cache-notrans.data
blob: a5111ea6c41f7ec3aa3c16a8d48507ddc6dfece7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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