blob: 830bca97cce5e5ff7df9e98000219233cd61626a (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Test for disable_load_balance_on_write feature
# using simple queries.
# Force load balance node to 1.
##backend_weight0 = 0
##backend_weight1 = 1
# Disable load balance in next transaction.
##disable_load_balance_on_write = 'trans_transaction'
# Create test table
'Q' "DROP TABLE IF EXISTS pgproto_test1"
'Y'
'Q' "CREATE TABLE pgproto_test1(i INT)"
'Y'
# Start a transaction
'Q' "BEGIN"
'Y'
# Issue Parse SELECT. This should be sent to node 1.
'Q' "SELECT 1"
'Y'
# Issue INSERT
'Q' "INSERT INTO pgproto_test1 VALUES(1)"
'Y'
# Issue another SELECT. This should be sent to primary node.
'Q' "SELECT 2"
'Y'
# Issue COMMIT
'Q' "COMMIT"
'Y'
# Issue another SELECT. This should be sent to node 1 because outside a transaction.
'Q' "SELECT 3"
'Y'
# Start a transaction
'Q' "BEGIN"
'Y'
# Issue another SELECT. This should be sent to primary node.
'Q' "SELECT 4"
'Y'
# Issue COMMIT
'Q' "COMMIT"
'Y'
# DROP test table
'Q' "DROP TABLE pgproto_test1"
'Y'
'X'
|