-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpostgresql-simple.sql
More file actions
285 lines (277 loc) · 64.1 KB
/
Copy pathpostgresql-simple.sql
File metadata and controls
285 lines (277 loc) · 64.1 KB
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
create database mydb;
\c mydb;
CREATE TABLE my_table (
my_char CHAR,
my_varchar VARCHAR,
my_text TEXT,
my_int8 INT8,
my_int4 INT4,
my_int2 INT2,
my_float8 FLOAT8,
my_float4 FLOAT4,
my_numeric NUMERIC(10, 5),
my_timestamp TIMESTAMP,
my_timestamptz TIMESTAMPTZ,
my_date DATE,
my_time TIME,
my_interval INTERVAL,
my_bytea BYTEA,
my_box BOX,
my_circle CIRCLE,
my_line LINE,
my_path PATH,
my_point POINT,
my_polygon POLYGON,
my_lseg LSEG,
my_bool BOOL,
my_bit BIT,
my_varbit VARBIT,
my_uuid UUID,
my_json JSON,
my_jsonb JSONB,
my_inet INET,
my_macaddr MACADDR,
my_cidr CIDR,
my_xml xml,
my_timetz TIMETZ,
my_pg_lsn pg_lsn,
my_tsquery tsquery,
my_tsvector tsvector,
my_serial SERIAL,
my_bigserial BIGSERIAL primary key,
last_modified timestamp default CURRENT_TIMESTAMP
);
CREATE OR REPLACE FUNCTION update_last_modified()
RETURNS TRIGGER AS $$
BEGIN
NEW.last_modified = CURRENT_TIMESTAMP;
RETURN NEW;
END;
$$ LANGUAGE plpgsql;
CREATE TRIGGER tr_update_last_modified
BEFORE UPDATE ON my_table
FOR EACH ROW
EXECUTE FUNCTION update_last_modified();
DO $$
DECLARE
counter INTEGER := 0;
BEGIN
WHILE counter < 1000 LOOP
INSERT INTO my_table (
my_char,
my_varchar,
my_text,
my_int8,
my_int4,
my_int2,
my_float8,
my_float4,
my_numeric,
my_timestamp,
my_timestamptz,
my_date,
my_time,
my_interval,
my_bytea,
my_box,
my_circle,
my_line,
my_path,
my_point,
my_polygon,
my_lseg,
my_bool,
my_bit,
my_varbit,
my_uuid,
my_json,
my_jsonb,
my_inet,
my_macaddr,
my_cidr,
my_xml,
my_timetz,
my_tsquery,
my_tsvector,
my_pg_lsn
)
VALUES
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00'),
('A','"Hello" there', 'This is ''a tab test text', 1234567890123456, 12345678,1234, 12345678.12345678, 1234.1234, 123.456, '2023-07-23 12:34:56.643381', '2023-07-23 12:34:56.643381-07:00', '2023-07-23', '12:34:56.643381', '1 day', E'\\xDEADBEEF', '((1,2),(3,4))', '<(1,2),3>', '{1,-2,3}', '((1,2),(3,4))', '(1,2)', '((1,2),(3,4))', '((1,2),(3,4))', true, B'1', B'101', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', '{"key":"value"}', '{"key":"value"}', '192.168.1.1', '08:00:2B:01:02:03', '192.168.1.0/24', '<root><test>Some Content</test></root>', '12:34:56.765432-07:00', 'super & rat', 'super', '1/3B9ACA00');
counter := counter + 1;
END LOOP;
END $$;
INSERT INTO my_table
( my_char,
my_varchar,
my_text,
my_int8,
my_int4,
my_int2,
my_float8,
my_float4,
my_numeric,
my_timestamp,
my_timestamptz,
my_date,
my_time,
my_interval,
my_bytea,
my_box,
my_circle,
my_line,
my_path,
my_point,
my_polygon,
my_lseg,
my_bool,
my_bit,
my_varbit,
my_uuid,
my_json,
my_jsonb,
my_inet,
my_macaddr,
my_cidr,
my_xml,
my_timetz,
my_tsquery,
my_tsvector,
my_pg_lsn
)
values (
null,
'one not null',
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
)