forked from datastax/php-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
user_defined_types.feature
214 lines (199 loc) · 6.51 KB
/
user_defined_types.feature
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
@cassandra-version-2.1
Feature: User defined types
PHP Driver supports Cassandra UDTs
Background:
Given a running Cassandra cluster
Scenario: Using Cassandra user defined types from schema metadata
Given the following schema:
"""cql
CREATE KEYSPACE simplex WITH replication = {
'class': 'SimpleStrategy',
'replication_factor': 1
};
USE simplex;
CREATE TYPE address (street text, city text, zip int);
CREATE TYPE addresses (home frozen<address>, work frozen<address>);
CREATE TABLE users (
id uuid PRIMARY KEY,
name text,
addresses frozen<addresses>
);
"""
And the following example:
"""php
<?php
$cluster = Cassandra::cluster()->build();
$session = $cluster->connect("simplex");
$keyspace = $session->schema()->keyspace("simplex");
$addressType = $keyspace->userType("address");
$addressesType = $keyspace->userType("addresses");
$users = array(
array(
new Cassandra\Uuid('56357d2b-4586-433c-ad24-afa9918bc415'),
'Charles Wallace',
$addressesType->create(
'home', $addressType->create(
'city', 'Phoenix',
'street', '9042 Cassandra Lane',
'zip', 85023))
),
array(
new Cassandra\Uuid('ce359590-8528-4682-a9f3-add53fc9aa09'),
'Kevin Malone',
$addressesType->create(
'home', $addressType->create(
'city', 'New York',
'street', '1000 Database Road',
'zip', 10025),
'work', $addressType->create(
'city', 'New York',
'street', '60 SSTable Drive',
'zip', 10024)
)
),
);
foreach ($users as $user) {
$options = array('arguments' => $user);
$session->execute("INSERT INTO users (id, name, addresses) VALUES (?, ?, ?)", $options);
}
$result = $session->execute("SELECT * FROM users");
foreach ($result as $row) {
echo "ID: {$row['id']}" . PHP_EOL;
echo "Name: {$row['name']}" . PHP_EOL;
echo "Address:" . PHP_EOL;
foreach ($row['addresses'] as $type => $address) {
echo " {$type}:" . PHP_EOL;
if (is_null($address)) {
echo " NULL" . PHP_EOL;
} else {
foreach ($address as $key => $value) {
echo " {$key} => {$value}" . PHP_EOL;
}
}
}
}
"""
When it is executed
Then its output should contain:
"""
ID: 56357d2b-4586-433c-ad24-afa9918bc415
Name: Charles Wallace
Address:
home:
street => 9042 Cassandra Lane
city => Phoenix
zip => 85023
work:
NULL
ID: ce359590-8528-4682-a9f3-add53fc9aa09
Name: Kevin Malone
Address:
home:
street => 1000 Database Road
city => New York
zip => 10025
work:
street => 60 SSTable Drive
city => New York
zip => 10024
"""
Scenario: Using Cassandra manually create user defined types
Given the following schema:
"""cql
CREATE KEYSPACE simplex WITH replication = {
'class': 'SimpleStrategy',
'replication_factor': 1
};
USE simplex;
CREATE TYPE address (street text, city text, zip int);
CREATE TYPE addresses (home frozen<address>, work frozen<address>);
CREATE TABLE users (
id uuid PRIMARY KEY,
name text,
addresses frozen<addresses>
);
"""
And the following example:
"""php
<?php
$cluster = Cassandra::cluster()->build();
$session = $cluster->connect("simplex");
$addressType = Cassandra\Type::userType(
'street', Cassandra\Type::text(),
'city', Cassandra\Type::text(),
'zip', Cassandra\Type::int()
);
$addressesType = Cassandra\Type::userType(
'home', $addressType,
'work', $addressType
);
$users = array(
array(
new Cassandra\Uuid('56357d2b-4586-433c-ad24-afa9918bc415'),
'Charles Wallace',
$addressesType->create(
'home', $addressType->create(
'city', 'Phoenix',
'street', '9042 Cassandra Lane',
'zip', 85023))
),
array(
new Cassandra\Uuid('ce359590-8528-4682-a9f3-add53fc9aa09'),
'Kevin Malone',
$addressesType->create(
'home', $addressType->create(
'city', 'New York',
'street', '1000 Database Road',
'zip', 10025),
'work', $addressType->create(
'city', 'New York',
'street', '60 SSTable Drive',
'zip', 10024)
)
),
);
foreach ($users as $user) {
$options = array('arguments' => $user);
$session->execute("INSERT INTO users (id, name, addresses) VALUES (?, ?, ?)", $options);
}
$result = $session->execute("SELECT * FROM users");
foreach ($result as $row) {
echo "ID: {$row['id']}" . PHP_EOL;
echo "Name: {$row['name']}" . PHP_EOL;
echo "Address:" . PHP_EOL;
foreach ($row['addresses'] as $type => $address) {
echo " {$type}:" . PHP_EOL;
if (is_null($address)) {
echo " NULL" . PHP_EOL;
} else {
foreach ($address as $key => $value) {
echo " {$key} => {$value}" . PHP_EOL;
}
}
}
}
"""
When it is executed
Then its output should contain:
"""
ID: 56357d2b-4586-433c-ad24-afa9918bc415
Name: Charles Wallace
Address:
home:
street => 9042 Cassandra Lane
city => Phoenix
zip => 85023
work:
NULL
ID: ce359590-8528-4682-a9f3-add53fc9aa09
Name: Kevin Malone
Address:
home:
street => 1000 Database Road
city => New York
zip => 10025
work:
street => 60 SSTable Drive
city => New York
zip => 10024
"""