Merge lp:~stewart/percona-playback/copyright into lp:percona-playback

Proposed by Stewart Smith
Status: Merged
Approved by: Stewart Smith
Approved revision: 180
Merged at revision: 178
Proposed branch: lp:~stewart/percona-playback/copyright
Merge into: lp:percona-playback
Diff against target: 899 lines (+192/-169)
55 files modified
AUTHORS (+5/-1)
Makefile.am (+1/-1)
bin/percona_playback.cc (+1/-1)
configure.ac (+2/-0)
docs/conf.py (+1/-1)
percona-playback.spec (+1/-1)
percona_playback/db_thread.cc (+1/-1)
percona_playback/db_thread.h (+1/-1)
percona_playback/error_report/error_report.cc (+1/-1)
percona_playback/full_report/full_report.cc (+1/-1)
percona_playback/libdrizzle_client/libdrizzle_client.cc (+1/-1)
percona_playback/mysql_client/mysql_client.cc (+1/-1)
percona_playback/mysql_client/mysql_client.h (+14/-0)
percona_playback/null_dbclient/null_dbclient.cc (+1/-1)
percona_playback/percona_playback.cc (+1/-1)
percona_playback/percona_playback.h (+1/-1)
percona_playback/plugin.cc (+1/-1)
percona_playback/plugin.h (+1/-1)
percona_playback/plugin_load_list.h.in (+1/-1)
percona_playback/query_entry.h (+1/-1)
percona_playback/query_log/query_log.cc (+1/-1)
percona_playback/query_log/query_log.h (+1/-1)
percona_playback/query_result.h (+1/-1)
percona_playback/simple_report/simple_report.cc (+1/-1)
percona_playback/tcpdump/connection_state.cc (+1/-1)
percona_playback/tcpdump/connection_state.h (+1/-1)
percona_playback/tcpdump/pcap_packets_parser.cc (+1/-1)
percona_playback/tcpdump/pcap_packets_parser.h (+1/-1)
percona_playback/tcpdump/sniff_headers.h (+1/-0)
percona_playback/tcpdump/tcpdump.cc (+1/-1)
percona_playback/tcpdump/tcpdump.h (+1/-1)
percona_playback/tcpdump/tcpdump_mysql_parser_stats.h (+1/-1)
percona_playback/tcpdump/tcpdump_query_entries.cc (+1/-1)
percona_playback/tcpdump/tcpdump_query_entries.h (+1/-1)
percona_playback/test/basic-multiline.cc (+7/-7)
percona_playback/test/basic-queue-depth.cc (+9/-9)
percona_playback/test/basic-stdin.cc (+10/-11)
percona_playback/test/basic.cc (+9/-9)
percona_playback/test/crashme-slow.cc (+9/-9)
percona_playback/test/help.cc (+9/-9)
percona_playback/test/preserve_query_time.cc (+9/-9)
percona_playback/test/sqlbench-transactions-slow.cc (+9/-9)
percona_playback/test/sysbench-slow.cc (+9/-9)
percona_playback/test/tcpdump_accuracy.cc (+9/-9)
percona_playback/test/tcpdump_fragmented_packet.cc (+9/-9)
percona_playback/test/tcpdump_multiple_connections.cc (+9/-9)
percona_playback/test/tcpdump_stress_test.cc (+9/-9)
percona_playback/test/tcpdump_without_handshake.cc (+9/-9)
percona_playback/test/thread-pool-sysbench-slow.cc (+9/-9)
percona_playback/thread_per_connection/thread_per_connection.cc (+1/-1)
percona_playback/thread_pool/thread_pool.cc (+1/-1)
percona_playback/tokenize.h (+1/-0)
percona_playback/version.h.in (+1/-1)
percona_playback/visibility.h (+1/-0)
test_run.sh (+1/-0)
To merge this branch: bzr merge lp:~stewart/percona-playback/copyright
Reviewer Review Type Date Requested Status
Percona core Pending
Review via email: mp+167900@code.launchpad.net
To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'AUTHORS'
2--- AUTHORS 2012-07-03 07:46:17 +0000
3+++ AUTHORS 2013-06-07 07:11:38 +0000
4@@ -1,4 +1,4 @@
5-Copyright (C) 2011-2012 Percona Inc.
6+Copyright (C) 2011-2013 Percona Inc.
7
8 Written by:
9 Stewart Smith
10@@ -6,3 +6,7 @@
11
12 Documentation by:
13 Hrvoje Matijakovic
14+
15+Packaging:
16+ Ignacio Nin
17+ Stewart Smith
18
19=== modified file 'Makefile.am'
20--- Makefile.am 2012-12-07 01:14:30 +0000
21+++ Makefile.am 2013-06-07 07:11:38 +0000
22@@ -2,7 +2,7 @@
23 # Percona Playback
24 #
25 ### BEGIN LICENSE
26-# Copyright (C) 2011 Stewart Smith <stewart@flamingspork.com>
27+# Copyright (C) 2011-2013 Percona Ireland Ltd
28 # This program is free software: you can redistribute it and/or modify it
29 # under the terms of the GNU General Public License version 3, as published
30 # by the Free Software Foundation.
31
32=== modified file 'bin/percona_playback.cc'
33--- bin/percona_playback.cc 2012-04-05 04:47:09 +0000
34+++ bin/percona_playback.cc 2013-06-07 07:11:38 +0000
35@@ -1,5 +1,5 @@
36 /* BEGIN LICENSE
37- * Copyright (C) 2011-2012 Percona Inc.
38+ * Copyright (C) 2011-2013 Percona Ireland Ltd
39 * This program is free software: you can redistribute it and/or modify it
40 * under the terms of the GNU General Public License version 2, as published
41 * by the Free Software Foundation.
42
43=== modified file 'configure.ac'
44--- configure.ac 2013-03-14 05:01:22 +0000
45+++ configure.ac 2013-06-07 07:11:38 +0000
46@@ -1,6 +1,8 @@
47 #
48 # Percona Playback
49 #
50+# (C) 2011-2013 Percona Ireland Ltd.
51+#
52 # Portions of auto-foo:
53 # Copyright (C) 2009-2010 Monty Taylor, Eric Day
54 # All rights reserved.
55
56=== modified file 'docs/conf.py'
57--- docs/conf.py 2012-11-28 12:55:51 +0000
58+++ docs/conf.py 2013-06-07 07:11:38 +0000
59@@ -44,7 +44,7 @@
60
61 # General information about the project.
62 project = u'Percona Playback'
63-copyright = u'2012, Percona Inc'
64+copyright = u'2011-2013 Percona Ireland Ltd'
65
66 # The version info for the project you're documenting, acts as replacement for
67 # |version| and |release|, also used in various other places throughout the
68
69=== modified file 'percona-playback.spec'
70--- percona-playback.spec 2012-11-19 22:36:15 +0000
71+++ percona-playback.spec 2013-06-07 07:11:38 +0000
72@@ -1,4 +1,4 @@
73-# Copyright (C) 2011-2012 Percona Inc.
74+# Copyright (C) 2011-2013 Percona Ireland Ltd.
75 # This program is free software: you can redistribute it and/or modify it
76 # under the terms of the GNU General Public License version 2, as published
77 # by the Free Software Foundation.
78
79=== modified file 'percona_playback/db_thread.cc'
80--- percona_playback/db_thread.cc 2012-11-20 08:51:01 +0000
81+++ percona_playback/db_thread.cc 2013-06-07 07:11:38 +0000
82@@ -1,5 +1,5 @@
83 /* BEGIN LICENSE
84- * Copyright (C) 2011-2012 Percona Inc.
85+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
86 * This program is free software: you can redistribute it and/or modify it
87 * under the terms of the GNU General Public License version 2, as published
88 * by the Free Software Foundation.
89
90=== modified file 'percona_playback/db_thread.h'
91--- percona_playback/db_thread.h 2012-11-23 08:30:41 +0000
92+++ percona_playback/db_thread.h 2013-06-07 07:11:38 +0000
93@@ -1,5 +1,5 @@
94 /* BEGIN LICENSE
95- * Copyright (C) 2011 Percona Inc.
96+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
97 * This program is free software: you can redistribute it and/or modify it
98 * under the terms of the GNU General Public License version 2, as published
99 * by the Free Software Foundation.
100
101=== modified file 'percona_playback/error_report/error_report.cc'
102--- percona_playback/error_report/error_report.cc 2012-10-03 08:29:37 +0000
103+++ percona_playback/error_report/error_report.cc 2013-06-07 07:11:38 +0000
104@@ -1,5 +1,5 @@
105 /* BEGIN LICENSE
106- * Copyright (C) 2011-2012 Percona Inc.
107+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
108 * This program is free software: you can redistribute it and/or modify it
109 * under the terms of the GNU General Public License version 2, as published
110 * by the Free Software Foundation.
111
112=== modified file 'percona_playback/full_report/full_report.cc'
113--- percona_playback/full_report/full_report.cc 2012-10-03 09:20:44 +0000
114+++ percona_playback/full_report/full_report.cc 2013-06-07 07:11:38 +0000
115@@ -1,5 +1,5 @@
116 /* BEGIN LICENSE
117- * Copyright (C) 2011-2012 Percona Inc.
118+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
119 * This program is free software: you can redistribute it and/or modify it
120 * under the terms of the GNU General Public License version 2, as published
121 * by the Free Software Foundation.
122
123=== modified file 'percona_playback/libdrizzle_client/libdrizzle_client.cc'
124--- percona_playback/libdrizzle_client/libdrizzle_client.cc 2012-11-20 08:51:01 +0000
125+++ percona_playback/libdrizzle_client/libdrizzle_client.cc 2013-06-07 07:11:38 +0000
126@@ -1,5 +1,5 @@
127 /* BEGIN LICENSE
128- * Copyright (C) 2011-2012 Percona Inc.
129+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
130 * This program is free software: you can redistribute it and/or modify it
131 * under the terms of the GNU General Public License version 2, as published
132 * by the Free Software Foundation.
133
134=== modified file 'percona_playback/mysql_client/mysql_client.cc'
135--- percona_playback/mysql_client/mysql_client.cc 2012-11-23 20:13:31 +0000
136+++ percona_playback/mysql_client/mysql_client.cc 2013-06-07 07:11:38 +0000
137@@ -1,5 +1,5 @@
138 /* BEGIN LICENSE
139- * Copyright (C) 2011-2012 Percona Inc.
140+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
141 * This program is free software: you can redistribute it and/or modify it
142 * under the terms of the GNU General Public License version 2, as published
143 * by the Free Software Foundation.
144
145=== modified file 'percona_playback/mysql_client/mysql_client.h'
146--- percona_playback/mysql_client/mysql_client.h 2012-11-23 08:30:41 +0000
147+++ percona_playback/mysql_client/mysql_client.h 2013-06-07 07:11:38 +0000
148@@ -1,3 +1,17 @@
149+/* BEGIN LICENSE
150+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
151+ * This program is free software: you can redistribute it and/or modify it
152+ * under the terms of the GNU General Public License version 2, as published
153+ * by the Free Software Foundation.
154+ *
155+ * This program is distributed in the hope that it will be useful, but
156+ * WITHOUT ANY WARRANTY; without even the implied warranties of
157+ * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
158+ * PURPOSE. See the GNU General Public License for more details.
159+ *
160+ * You should have received a copy of the GNU General Public License along
161+ * with this program. If not, see <http://www.gnu.org/licenses/>.
162+ * END LICENSE */
163
164 #include <percona_playback/db_thread.h>
165 #include <mysql.h>
166
167=== modified file 'percona_playback/null_dbclient/null_dbclient.cc'
168--- percona_playback/null_dbclient/null_dbclient.cc 2012-11-20 08:51:01 +0000
169+++ percona_playback/null_dbclient/null_dbclient.cc 2013-06-07 07:11:38 +0000
170@@ -1,5 +1,5 @@
171 /* BEGIN LICENSE
172- * Copyright (C) 2011-2012 Percona Inc.
173+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
174 * This program is free software: you can redistribute it and/or modify it
175 * under the terms of the GNU General Public License version 2, as published
176 * by the Free Software Foundation.
177
178=== modified file 'percona_playback/percona_playback.cc'
179--- percona_playback/percona_playback.cc 2012-12-07 01:14:30 +0000
180+++ percona_playback/percona_playback.cc 2013-06-07 07:11:38 +0000
181@@ -1,5 +1,5 @@
182 /* BEGIN LICENSE
183- * Copyright (C) 2011-2012 Percona Inc.
184+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
185 * This program is free software: you can redistribute it and/or modify it
186 * under the terms of the GNU General Public License version 2, as published
187 * by the Free Software Foundation.
188
189=== modified file 'percona_playback/percona_playback.h'
190--- percona_playback/percona_playback.h 2012-06-15 16:25:10 +0000
191+++ percona_playback/percona_playback.h 2013-06-07 07:11:38 +0000
192@@ -1,5 +1,5 @@
193 /* BEGIN LICENSE
194- * Copyright (C) 2011 Percona Inc.
195+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
196 * This program is free software: you can redistribute it and/or modify it
197 * under the terms of the GNU General Public License version 2, as published
198 * by the Free Software Foundation.
199
200=== modified file 'percona_playback/plugin.cc'
201--- percona_playback/plugin.cc 2012-07-04 09:10:07 +0000
202+++ percona_playback/plugin.cc 2013-06-07 07:11:38 +0000
203@@ -1,5 +1,5 @@
204 /* BEGIN LICENSE
205- * Copyright (C) 2011-2012 Percona Inc.
206+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
207 * This program is free software: you can redistribute it and/or modify it
208 * under the terms of the GNU General Public License version 2, as published
209 * by the Free Software Foundation.
210
211=== modified file 'percona_playback/plugin.h'
212--- percona_playback/plugin.h 2012-11-19 10:07:33 +0000
213+++ percona_playback/plugin.h 2013-06-07 07:11:38 +0000
214@@ -1,5 +1,5 @@
215 /* BEGIN LICENSE
216- * Copyright (C) 2011 Percona Inc.
217+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
218 * This program is free software: you can redistribute it and/or modify it
219 * under the terms of the GNU General Public License version 2, as published
220 * by the Free Software Foundation.
221
222=== modified file 'percona_playback/plugin_load_list.h.in'
223--- percona_playback/plugin_load_list.h.in 2011-11-17 08:21:01 +0000
224+++ percona_playback/plugin_load_list.h.in 2013-06-07 07:11:38 +0000
225@@ -1,5 +1,5 @@
226 /* BEGIN LICENSE
227- * Copyright (C) 2011 Percona Inc.
228+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
229 * This program is free software: you can redistribute it and/or modify it
230 * under the terms of the GNU General Public License version 2, as published
231 * by the Free Software Foundation.
232
233=== modified file 'percona_playback/query_entry.h'
234--- percona_playback/query_entry.h 2012-11-17 14:34:47 +0000
235+++ percona_playback/query_entry.h 2013-06-07 07:11:38 +0000
236@@ -1,5 +1,5 @@
237 /* BEGIN LICENSE
238- * Copyright (C) 2011 Percona Inc.
239+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
240 * This program is free software: you can redistribute it and/or modify it
241 * under the terms of the GNU General Public License version 2, as published
242 * by the Free Software Foundation.
243
244=== modified file 'percona_playback/query_log/query_log.cc'
245--- percona_playback/query_log/query_log.cc 2012-12-07 01:14:30 +0000
246+++ percona_playback/query_log/query_log.cc 2013-06-07 07:11:38 +0000
247@@ -1,5 +1,5 @@
248 /* BEGIN LICENSE
249- * Copyright (C) 2011-2012 Percona Inc.
250+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
251 * This program is free software: you can redistribute it and/or modify it
252 * under the terms of the GNU General Public License version 2, as published
253 * by the Free Software Foundation.
254
255=== modified file 'percona_playback/query_log/query_log.h'
256--- percona_playback/query_log/query_log.h 2012-09-17 05:54:15 +0000
257+++ percona_playback/query_log/query_log.h 2013-06-07 07:11:38 +0000
258@@ -1,5 +1,5 @@
259 /* BEGIN LICENSE
260- * Copyright (C) 2011 Percona Inc.
261+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
262 * This program is free software: you can redistribute it and/or modify it
263 * under the terms of the GNU General Public License version 2, as published
264 * by the Free Software Foundation.
265
266=== modified file 'percona_playback/query_result.h'
267--- percona_playback/query_result.h 2012-06-19 15:26:53 +0000
268+++ percona_playback/query_result.h 2013-06-07 07:11:38 +0000
269@@ -1,5 +1,5 @@
270 /* BEGIN LICENSE
271- * Copyright (C) 2011 Percona Inc.
272+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
273 * This program is free software: you can redistribute it and/or modify it
274 * under the terms of the GNU General Public License version 2, as published
275 * by the Free Software Foundation.
276
277=== modified file 'percona_playback/simple_report/simple_report.cc'
278--- percona_playback/simple_report/simple_report.cc 2012-07-04 10:06:05 +0000
279+++ percona_playback/simple_report/simple_report.cc 2013-06-07 07:11:38 +0000
280@@ -1,5 +1,5 @@
281 /* BEGIN LICENSE
282- * Copyright (C) 2011-2012 Percona Inc.
283+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
284 * This program is free software: you can redistribute it and/or modify it
285 * under the terms of the GNU General Public License version 2, as published
286 * by the Free Software Foundation.
287
288=== modified file 'percona_playback/tcpdump/connection_state.cc'
289--- percona_playback/tcpdump/connection_state.cc 2012-11-17 14:34:47 +0000
290+++ percona_playback/tcpdump/connection_state.cc 2013-06-07 07:11:38 +0000
291@@ -1,5 +1,5 @@
292 /* BEGIN LICENSE
293- * Copyright (C) 2011-2012 Percona Inc.
294+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
295 * This program is free software: you can redistribute it and/or modify it
296 * under the terms of the GNU General Public License version 2, as published
297 * by the Free Software Foundation.
298
299=== modified file 'percona_playback/tcpdump/connection_state.h'
300--- percona_playback/tcpdump/connection_state.h 2012-11-17 14:34:47 +0000
301+++ percona_playback/tcpdump/connection_state.h 2013-06-07 07:11:38 +0000
302@@ -1,5 +1,5 @@
303 /* BEGIN LICENSE
304- * Copyright (C) 2011 Percona Inc.
305+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
306 * This program is free software: you can redistribute it and/or modify it
307 * under the terms of the GNU General Public License version 2, as published
308 * by the Free Software Foundation.
309
310=== modified file 'percona_playback/tcpdump/pcap_packets_parser.cc'
311--- percona_playback/tcpdump/pcap_packets_parser.cc 2012-11-17 14:34:47 +0000
312+++ percona_playback/tcpdump/pcap_packets_parser.cc 2013-06-07 07:11:38 +0000
313@@ -1,5 +1,5 @@
314 /* BEGIN LICENSE
315- * Copyright (C) 2011-2012 Percona Inc.
316+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
317 * This program is free software: you can redistribute it and/or modify it
318 * under the terms of the GNU General Public License version 2, as published
319 * by the Free Software Foundation.
320
321=== modified file 'percona_playback/tcpdump/pcap_packets_parser.h'
322--- percona_playback/tcpdump/pcap_packets_parser.h 2012-11-17 14:34:47 +0000
323+++ percona_playback/tcpdump/pcap_packets_parser.h 2013-06-07 07:11:38 +0000
324@@ -1,5 +1,5 @@
325 /* BEGIN LICENSE
326- * Copyright (C) 2011 Percona Inc.
327+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
328 * This program is free software: you can redistribute it and/or modify it
329 * under the terms of the GNU General Public License version 2, as published
330 * by the Free Software Foundation.
331
332=== modified file 'percona_playback/tcpdump/sniff_headers.h'
333--- percona_playback/tcpdump/sniff_headers.h 2012-07-05 00:28:51 +0000
334+++ percona_playback/tcpdump/sniff_headers.h 2013-06-07 07:11:38 +0000
335@@ -1,4 +1,5 @@
336 /* BEGIN LICENSE
337+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
338 * Copyright (C) 2006 Daniel Nichter
339 * This program is free software: you can redistribute it and/or modify it
340 * under the terms of the GNU General Public License version 2, as published
341
342=== modified file 'percona_playback/tcpdump/tcpdump.cc'
343--- percona_playback/tcpdump/tcpdump.cc 2012-08-09 01:17:28 +0000
344+++ percona_playback/tcpdump/tcpdump.cc 2013-06-07 07:11:38 +0000
345@@ -1,5 +1,5 @@
346 /* BEGIN LICENSE
347- * Copyright (C) 2011-2012 Percona Inc.
348+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
349 * This program is free software: you can redistribute it and/or modify it
350 * under the terms of the GNU General Public License version 2, as published
351 * by the Free Software Foundation.
352
353=== modified file 'percona_playback/tcpdump/tcpdump.h'
354--- percona_playback/tcpdump/tcpdump.h 2012-07-03 07:41:49 +0000
355+++ percona_playback/tcpdump/tcpdump.h 2013-06-07 07:11:38 +0000
356@@ -1,5 +1,5 @@
357 /* BEGIN LICENSE
358- * Copyright (C) 2011 Percona Inc.
359+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
360 * This program is free software: you can redistribute it and/or modify it
361 * under the terms of the GNU General Public License version 2, as published
362 * by the Free Software Foundation.
363
364=== modified file 'percona_playback/tcpdump/tcpdump_mysql_parser_stats.h'
365--- percona_playback/tcpdump/tcpdump_mysql_parser_stats.h 2012-06-19 15:26:53 +0000
366+++ percona_playback/tcpdump/tcpdump_mysql_parser_stats.h 2013-06-07 07:11:38 +0000
367@@ -1,5 +1,5 @@
368 /* BEGIN LICENSE
369- * Copyright (C) 2011 Percona Inc.
370+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
371 * This program is free software: you can redistribute it and/or modify it
372 * under the terms of the GNU General Public License version 2, as published
373 * by the Free Software Foundation.
374
375=== modified file 'percona_playback/tcpdump/tcpdump_query_entries.cc'
376--- percona_playback/tcpdump/tcpdump_query_entries.cc 2012-11-17 14:34:47 +0000
377+++ percona_playback/tcpdump/tcpdump_query_entries.cc 2013-06-07 07:11:38 +0000
378@@ -1,5 +1,5 @@
379 /* BEGIN LICENSE
380- * Copyright (C) 2011-2012 Percona Inc.
381+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
382 * This program is free software: you can redistribute it and/or modify it
383 * under the terms of the GNU General Public License version 2, as published
384 * by the Free Software Foundation.
385
386=== modified file 'percona_playback/tcpdump/tcpdump_query_entries.h'
387--- percona_playback/tcpdump/tcpdump_query_entries.h 2012-11-17 14:34:47 +0000
388+++ percona_playback/tcpdump/tcpdump_query_entries.h 2013-06-07 07:11:38 +0000
389@@ -1,5 +1,5 @@
390 /* BEGIN LICENSE
391- * Copyright (C) 2011 Percona Inc.
392+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
393 * This program is free software: you can redistribute it and/or modify it
394 * under the terms of the GNU General Public License version 2, as published
395 * by the Free Software Foundation.
396
397=== modified file 'percona_playback/test/basic-multiline.cc'
398--- percona_playback/test/basic-multiline.cc 2012-09-17 05:54:15 +0000
399+++ percona_playback/test/basic-multiline.cc 2013-06-07 07:11:38 +0000
400@@ -1,15 +1,15 @@
401 /* BEGIN LICENSE
402- * Copyright (C) 2012 Percona Inc.
403- * This program is free software: you can redistribute it and/or modify it
404- * under the terms of the GNU General Public License version 3, as published
405+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
406+ * This program is free software: you can redistribute it and/or modify it
407+ * under the terms of the GNU General Public License version 2, as published
408 * by the Free Software Foundation.
409 *
410- * This program is distributed in the hope that it will be useful, but
411- * WITHOUT ANY WARRANTY; without even the implied warranties of
412- * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
413+ * This program is distributed in the hope that it will be useful, but
414+ * WITHOUT ANY WARRANTY; without even the implied warranties of
415+ * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
416 * PURPOSE. See the GNU General Public License for more details.
417 *
418- * You should have received a copy of the GNU General Public License along
419+ * You should have received a copy of the GNU General Public License along
420 * with this program. If not, see <http://www.gnu.org/licenses/>.
421 * END LICENSE */
422
423
424=== modified file 'percona_playback/test/basic-queue-depth.cc'
425--- percona_playback/test/basic-queue-depth.cc 2012-11-29 23:44:17 +0000
426+++ percona_playback/test/basic-queue-depth.cc 2013-06-07 07:11:38 +0000
427@@ -1,15 +1,15 @@
428 /* BEGIN LICENSE
429- * Copyright (C) 2011-2012 Percona Inc.
430- * This program is free software: you can redistribute it and/or modify it
431- * under the terms of the GNU General Public License version 3, as published
432+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
433+ * This program is free software: you can redistribute it and/or modify it
434+ * under the terms of the GNU General Public License version 2, as published
435 * by the Free Software Foundation.
436- *
437- * This program is distributed in the hope that it will be useful, but
438- * WITHOUT ANY WARRANTY; without even the implied warranties of
439- * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
440+ *
441+ * This program is distributed in the hope that it will be useful, but
442+ * WITHOUT ANY WARRANTY; without even the implied warranties of
443+ * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
444 * PURPOSE. See the GNU General Public License for more details.
445- *
446- * You should have received a copy of the GNU General Public License along
447+ *
448+ * You should have received a copy of the GNU General Public License along
449 * with this program. If not, see <http://www.gnu.org/licenses/>.
450 * END LICENSE */
451
452
453=== modified file 'percona_playback/test/basic-stdin.cc'
454--- percona_playback/test/basic-stdin.cc 2012-11-08 22:17:07 +0000
455+++ percona_playback/test/basic-stdin.cc 2013-06-07 07:11:38 +0000
456@@ -1,16 +1,15 @@
457 /* BEGIN LICENSE
458- * Copyright (C) 2011-2012 Percona Inc.
459- *
460- * This program is free software: you can redistribute it and/or modify it under
461- * the terms of the GNU General Public License version 3, as published by the
462- * Free Software Foundation.
463- *
464- * This program is distributed in the hope that it will be useful, but
465- * WITHOUT ANY WARRANTY; without even the implied warranties of
466- * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
467+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
468+ * This program is free software: you can redistribute it and/or modify it
469+ * under the terms of the GNU General Public License version 2, as published
470+ * by the Free Software Foundation.
471+ *
472+ * This program is distributed in the hope that it will be useful, but
473+ * WITHOUT ANY WARRANTY; without even the implied warranties of
474+ * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
475 * PURPOSE. See the GNU General Public License for more details.
476- *
477- * You should have received a copy of the GNU General Public License along
478+ *
479+ * You should have received a copy of the GNU General Public License along
480 * with this program. If not, see <http://www.gnu.org/licenses/>.
481 * END LICENSE */
482
483
484=== modified file 'percona_playback/test/basic.cc'
485--- percona_playback/test/basic.cc 2012-11-29 23:44:17 +0000
486+++ percona_playback/test/basic.cc 2013-06-07 07:11:38 +0000
487@@ -1,15 +1,15 @@
488 /* BEGIN LICENSE
489- * Copyright (C) 2011-2012 Percona Inc.
490- * This program is free software: you can redistribute it and/or modify it
491- * under the terms of the GNU General Public License version 3, as published
492+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
493+ * This program is free software: you can redistribute it and/or modify it
494+ * under the terms of the GNU General Public License version 2, as published
495 * by the Free Software Foundation.
496- *
497- * This program is distributed in the hope that it will be useful, but
498- * WITHOUT ANY WARRANTY; without even the implied warranties of
499- * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
500+ *
501+ * This program is distributed in the hope that it will be useful, but
502+ * WITHOUT ANY WARRANTY; without even the implied warranties of
503+ * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
504 * PURPOSE. See the GNU General Public License for more details.
505- *
506- * You should have received a copy of the GNU General Public License along
507+ *
508+ * You should have received a copy of the GNU General Public License along
509 * with this program. If not, see <http://www.gnu.org/licenses/>.
510 * END LICENSE */
511
512
513=== modified file 'percona_playback/test/crashme-slow.cc'
514--- percona_playback/test/crashme-slow.cc 2012-11-29 23:44:17 +0000
515+++ percona_playback/test/crashme-slow.cc 2013-06-07 07:11:38 +0000
516@@ -1,15 +1,15 @@
517 /* BEGIN LICENSE
518- * Copyright (C) 2011-2012 Percona Inc.
519- * This program is free software: you can redistribute it and/or modify it
520- * under the terms of the GNU General Public License version 3, as published
521+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
522+ * This program is free software: you can redistribute it and/or modify it
523+ * under the terms of the GNU General Public License version 2, as published
524 * by the Free Software Foundation.
525- *
526- * This program is distributed in the hope that it will be useful, but
527- * WITHOUT ANY WARRANTY; without even the implied warranties of
528- * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
529+ *
530+ * This program is distributed in the hope that it will be useful, but
531+ * WITHOUT ANY WARRANTY; without even the implied warranties of
532+ * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
533 * PURPOSE. See the GNU General Public License for more details.
534- *
535- * You should have received a copy of the GNU General Public License along
536+ *
537+ * You should have received a copy of the GNU General Public License along
538 * with this program. If not, see <http://www.gnu.org/licenses/>.
539 * END LICENSE */
540
541
542=== modified file 'percona_playback/test/help.cc'
543--- percona_playback/test/help.cc 2012-11-29 23:44:17 +0000
544+++ percona_playback/test/help.cc 2013-06-07 07:11:38 +0000
545@@ -1,15 +1,15 @@
546 /* BEGIN LICENSE
547- * Copyright (C) 2011-2012 Percona Inc.
548- * This program is free software: you can redistribute it and/or modify it
549- * under the terms of the GNU General Public License version 3, as published
550+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
551+ * This program is free software: you can redistribute it and/or modify it
552+ * under the terms of the GNU General Public License version 2, as published
553 * by the Free Software Foundation.
554- *
555- * This program is distributed in the hope that it will be useful, but
556- * WITHOUT ANY WARRANTY; without even the implied warranties of
557- * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
558+ *
559+ * This program is distributed in the hope that it will be useful, but
560+ * WITHOUT ANY WARRANTY; without even the implied warranties of
561+ * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
562 * PURPOSE. See the GNU General Public License for more details.
563- *
564- * You should have received a copy of the GNU General Public License along
565+ *
566+ * You should have received a copy of the GNU General Public License along
567 * with this program. If not, see <http://www.gnu.org/licenses/>.
568 * END LICENSE */
569
570
571=== modified file 'percona_playback/test/preserve_query_time.cc'
572--- percona_playback/test/preserve_query_time.cc 2012-09-17 05:54:15 +0000
573+++ percona_playback/test/preserve_query_time.cc 2013-06-07 07:11:38 +0000
574@@ -1,15 +1,15 @@
575 /* BEGIN LICENSE
576- * Copyright (C) 2011-2012 Percona Inc.
577- * This program is free software: you can redistribute it and/or modify it
578- * under the terms of the GNU General Public License version 3, as published
579+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
580+ * This program is free software: you can redistribute it and/or modify it
581+ * under the terms of the GNU General Public License version 2, as published
582 * by the Free Software Foundation.
583- *
584- * This program is distributed in the hope that it will be useful, but
585- * WITHOUT ANY WARRANTY; without even the implied warranties of
586- * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
587+ *
588+ * This program is distributed in the hope that it will be useful, but
589+ * WITHOUT ANY WARRANTY; without even the implied warranties of
590+ * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
591 * PURPOSE. See the GNU General Public License for more details.
592- *
593- * You should have received a copy of the GNU General Public License along
594+ *
595+ * You should have received a copy of the GNU General Public License along
596 * with this program. If not, see <http://www.gnu.org/licenses/>.
597 * END LICENSE */
598
599
600=== modified file 'percona_playback/test/sqlbench-transactions-slow.cc'
601--- percona_playback/test/sqlbench-transactions-slow.cc 2012-11-29 23:44:17 +0000
602+++ percona_playback/test/sqlbench-transactions-slow.cc 2013-06-07 07:11:38 +0000
603@@ -1,15 +1,15 @@
604 /* BEGIN LICENSE
605- * Copyright (C) 2011-2012 Percona Inc.
606- * This program is free software: you can redistribute it and/or modify it
607- * under the terms of the GNU General Public License version 3, as published
608+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
609+ * This program is free software: you can redistribute it and/or modify it
610+ * under the terms of the GNU General Public License version 2, as published
611 * by the Free Software Foundation.
612- *
613- * This program is distributed in the hope that it will be useful, but
614- * WITHOUT ANY WARRANTY; without even the implied warranties of
615- * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
616+ *
617+ * This program is distributed in the hope that it will be useful, but
618+ * WITHOUT ANY WARRANTY; without even the implied warranties of
619+ * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
620 * PURPOSE. See the GNU General Public License for more details.
621- *
622- * You should have received a copy of the GNU General Public License along
623+ *
624+ * You should have received a copy of the GNU General Public License along
625 * with this program. If not, see <http://www.gnu.org/licenses/>.
626 * END LICENSE */
627
628
629=== modified file 'percona_playback/test/sysbench-slow.cc'
630--- percona_playback/test/sysbench-slow.cc 2012-11-29 23:44:17 +0000
631+++ percona_playback/test/sysbench-slow.cc 2013-06-07 07:11:38 +0000
632@@ -1,15 +1,15 @@
633 /* BEGIN LICENSE
634- * Copyright (C) 2011-2012 Percona Inc.
635- * This program is free software: you can redistribute it and/or modify it
636- * under the terms of the GNU General Public License version 3, as published
637+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
638+ * This program is free software: you can redistribute it and/or modify it
639+ * under the terms of the GNU General Public License version 2, as published
640 * by the Free Software Foundation.
641- *
642- * This program is distributed in the hope that it will be useful, but
643- * WITHOUT ANY WARRANTY; without even the implied warranties of
644- * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
645+ *
646+ * This program is distributed in the hope that it will be useful, but
647+ * WITHOUT ANY WARRANTY; without even the implied warranties of
648+ * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
649 * PURPOSE. See the GNU General Public License for more details.
650- *
651- * You should have received a copy of the GNU General Public License along
652+ *
653+ * You should have received a copy of the GNU General Public License along
654 * with this program. If not, see <http://www.gnu.org/licenses/>.
655 * END LICENSE */
656
657
658=== modified file 'percona_playback/test/tcpdump_accuracy.cc'
659--- percona_playback/test/tcpdump_accuracy.cc 2012-06-19 15:26:53 +0000
660+++ percona_playback/test/tcpdump_accuracy.cc 2013-06-07 07:11:38 +0000
661@@ -1,15 +1,15 @@
662 /* BEGIN LICENSE
663- * Copyright (C) 2011-2012 Percona Inc.
664- * This program is free software: you can redistribute it and/or modify it
665- * under the terms of the GNU General Public License version 3, as published
666+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
667+ * This program is free software: you can redistribute it and/or modify it
668+ * under the terms of the GNU General Public License version 2, as published
669 * by the Free Software Foundation.
670- *
671- * This program is distributed in the hope that it will be useful, but
672- * WITHOUT ANY WARRANTY; without even the implied warranties of
673- * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
674+ *
675+ * This program is distributed in the hope that it will be useful, but
676+ * WITHOUT ANY WARRANTY; without even the implied warranties of
677+ * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
678 * PURPOSE. See the GNU General Public License for more details.
679- *
680- * You should have received a copy of the GNU General Public License along
681+ *
682+ * You should have received a copy of the GNU General Public License along
683 * with this program. If not, see <http://www.gnu.org/licenses/>.
684 * END LICENSE */
685
686
687=== modified file 'percona_playback/test/tcpdump_fragmented_packet.cc'
688--- percona_playback/test/tcpdump_fragmented_packet.cc 2012-06-19 15:26:53 +0000
689+++ percona_playback/test/tcpdump_fragmented_packet.cc 2013-06-07 07:11:38 +0000
690@@ -1,15 +1,15 @@
691 /* BEGIN LICENSE
692- * Copyright (C) 2011-2012 Percona Inc.
693- * This program is free software: you can redistribute it and/or modify it
694- * under the terms of the GNU General Public License version 3, as published
695+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
696+ * This program is free software: you can redistribute it and/or modify it
697+ * under the terms of the GNU General Public License version 2, as published
698 * by the Free Software Foundation.
699- *
700- * This program is distributed in the hope that it will be useful, but
701- * WITHOUT ANY WARRANTY; without even the implied warranties of
702- * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
703+ *
704+ * This program is distributed in the hope that it will be useful, but
705+ * WITHOUT ANY WARRANTY; without even the implied warranties of
706+ * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
707 * PURPOSE. See the GNU General Public License for more details.
708- *
709- * You should have received a copy of the GNU General Public License along
710+ *
711+ * You should have received a copy of the GNU General Public License along
712 * with this program. If not, see <http://www.gnu.org/licenses/>.
713 * END LICENSE */
714
715
716=== modified file 'percona_playback/test/tcpdump_multiple_connections.cc'
717--- percona_playback/test/tcpdump_multiple_connections.cc 2012-06-19 15:26:53 +0000
718+++ percona_playback/test/tcpdump_multiple_connections.cc 2013-06-07 07:11:38 +0000
719@@ -1,15 +1,15 @@
720 /* BEGIN LICENSE
721- * Copyright (C) 2011-2012 Percona Inc.
722- * This program is free software: you can redistribute it and/or modify it
723- * under the terms of the GNU General Public License version 3, as published
724+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
725+ * This program is free software: you can redistribute it and/or modify it
726+ * under the terms of the GNU General Public License version 2, as published
727 * by the Free Software Foundation.
728- *
729- * This program is distributed in the hope that it will be useful, but
730- * WITHOUT ANY WARRANTY; without even the implied warranties of
731- * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
732+ *
733+ * This program is distributed in the hope that it will be useful, but
734+ * WITHOUT ANY WARRANTY; without even the implied warranties of
735+ * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
736 * PURPOSE. See the GNU General Public License for more details.
737- *
738- * You should have received a copy of the GNU General Public License along
739+ *
740+ * You should have received a copy of the GNU General Public License along
741 * with this program. If not, see <http://www.gnu.org/licenses/>.
742 * END LICENSE */
743
744
745=== modified file 'percona_playback/test/tcpdump_stress_test.cc'
746--- percona_playback/test/tcpdump_stress_test.cc 2012-06-19 15:26:53 +0000
747+++ percona_playback/test/tcpdump_stress_test.cc 2013-06-07 07:11:38 +0000
748@@ -1,15 +1,15 @@
749 /* BEGIN LICENSE
750- * Copyright (C) 2011-2012 Percona Inc.
751- * This program is free software: you can redistribute it and/or modify it
752- * under the terms of the GNU General Public License version 3, as published
753+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
754+ * This program is free software: you can redistribute it and/or modify it
755+ * under the terms of the GNU General Public License version 2, as published
756 * by the Free Software Foundation.
757- *
758- * This program is distributed in the hope that it will be useful, but
759- * WITHOUT ANY WARRANTY; without even the implied warranties of
760- * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
761+ *
762+ * This program is distributed in the hope that it will be useful, but
763+ * WITHOUT ANY WARRANTY; without even the implied warranties of
764+ * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
765 * PURPOSE. See the GNU General Public License for more details.
766- *
767- * You should have received a copy of the GNU General Public License along
768+ *
769+ * You should have received a copy of the GNU General Public License along
770 * with this program. If not, see <http://www.gnu.org/licenses/>.
771 * END LICENSE */
772
773
774=== modified file 'percona_playback/test/tcpdump_without_handshake.cc'
775--- percona_playback/test/tcpdump_without_handshake.cc 2012-06-19 15:26:53 +0000
776+++ percona_playback/test/tcpdump_without_handshake.cc 2013-06-07 07:11:38 +0000
777@@ -1,15 +1,15 @@
778 /* BEGIN LICENSE
779- * Copyright (C) 2011-2012 Percona Inc.
780- * This program is free software: you can redistribute it and/or modify it
781- * under the terms of the GNU General Public License version 3, as published
782+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
783+ * This program is free software: you can redistribute it and/or modify it
784+ * under the terms of the GNU General Public License version 2, as published
785 * by the Free Software Foundation.
786- *
787- * This program is distributed in the hope that it will be useful, but
788- * WITHOUT ANY WARRANTY; without even the implied warranties of
789- * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
790+ *
791+ * This program is distributed in the hope that it will be useful, but
792+ * WITHOUT ANY WARRANTY; without even the implied warranties of
793+ * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
794 * PURPOSE. See the GNU General Public License for more details.
795- *
796- * You should have received a copy of the GNU General Public License along
797+ *
798+ * You should have received a copy of the GNU General Public License along
799 * with this program. If not, see <http://www.gnu.org/licenses/>.
800 * END LICENSE */
801
802
803=== modified file 'percona_playback/test/thread-pool-sysbench-slow.cc'
804--- percona_playback/test/thread-pool-sysbench-slow.cc 2012-11-19 10:07:33 +0000
805+++ percona_playback/test/thread-pool-sysbench-slow.cc 2013-06-07 07:11:38 +0000
806@@ -1,15 +1,15 @@
807 /* BEGIN LICENSE
808- * Copyright (C) 2011 Stewart Smith <stewart@flamingspork.com>
809- * This program is free software: you can redistribute it and/or modify it
810- * under the terms of the GNU General Public License version 3, as published
811+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
812+ * This program is free software: you can redistribute it and/or modify it
813+ * under the terms of the GNU General Public License version 2, as published
814 * by the Free Software Foundation.
815- *
816- * This program is distributed in the hope that it will be useful, but
817- * WITHOUT ANY WARRANTY; without even the implied warranties of
818- * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
819+ *
820+ * This program is distributed in the hope that it will be useful, but
821+ * WITHOUT ANY WARRANTY; without even the implied warranties of
822+ * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
823 * PURPOSE. See the GNU General Public License for more details.
824- *
825- * You should have received a copy of the GNU General Public License along
826+ *
827+ * You should have received a copy of the GNU General Public License along
828 * with this program. If not, see <http://www.gnu.org/licenses/>.
829 * END LICENSE */
830
831
832=== modified file 'percona_playback/thread_per_connection/thread_per_connection.cc'
833--- percona_playback/thread_per_connection/thread_per_connection.cc 2012-11-17 14:34:47 +0000
834+++ percona_playback/thread_per_connection/thread_per_connection.cc 2013-06-07 07:11:38 +0000
835@@ -1,5 +1,5 @@
836 /* BEGIN LICENSE
837- * Copyright (C) 2011-2012 Percona Inc.
838+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
839 * This program is free software: you can redistribute it and/or modify it
840 * under the terms of the GNU General Public License version 2, as published
841 * by the Free Software Foundation.
842
843=== modified file 'percona_playback/thread_pool/thread_pool.cc'
844--- percona_playback/thread_pool/thread_pool.cc 2012-11-19 10:07:33 +0000
845+++ percona_playback/thread_pool/thread_pool.cc 2013-06-07 07:11:38 +0000
846@@ -1,5 +1,5 @@
847 /* BEGIN LICENSE
848- * Copyright (C) 2011-2012 Percona Inc.
849+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
850 * This program is free software: you can redistribute it and/or modify it
851 * under the terms of the GNU General Public License version 2, as published
852 * by the Free Software Foundation.
853
854=== modified file 'percona_playback/tokenize.h'
855--- percona_playback/tokenize.h 2011-11-17 08:21:01 +0000
856+++ percona_playback/tokenize.h 2013-06-07 07:11:38 +0000
857@@ -1,6 +1,7 @@
858 /* - mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
859 * vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
860 *
861+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
862 * Copyright (C) 2010 Monty Taylor
863 *
864 * This program is free software; you can redistribute it and/or modify
865
866=== modified file 'percona_playback/version.h.in'
867--- percona_playback/version.h.in 2011-11-17 06:09:24 +0000
868+++ percona_playback/version.h.in 2013-06-07 07:11:38 +0000
869@@ -1,5 +1,5 @@
870 /* BEGIN LICENSE
871- * Copyright (C) 2011 Percona Inc.
872+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
873 * This program is free software: you can redistribute it and/or modify it
874 * under the terms of the GNU General Public License version 2, as published
875 * by the Free Software Foundation.
876
877=== modified file 'percona_playback/visibility.h'
878--- percona_playback/visibility.h 2011-10-12 13:45:21 +0000
879+++ percona_playback/visibility.h 2013-06-07 07:11:38 +0000
880@@ -1,6 +1,7 @@
881 /*
882 * Percona Playback
883 *
884+ * Copyright (C) 2011-2013 Percona Ireland Ltd.
885 * Copyright (C) 2010 Eric Day (eday@oddments.org)
886 * All rights reserved.
887 *
888
889=== modified file 'test_run.sh'
890--- test_run.sh 2011-11-16 01:19:01 +0000
891+++ test_run.sh 2013-06-07 07:11:38 +0000
892@@ -2,6 +2,7 @@
893 #
894 # Percona Playback
895 #
896+# Copyright (C) 2011-2013 Percona Ireland Ltd.
897 # Copyright (C) 2010 Eric Day (eday@oddments.org)
898 # All rights reserved.
899 #

Subscribers

People subscribed via source and target branches

to all changes: