Merge lp:~atcurtis/ourdelta/ourdelta-oqgraph into lp:~ourdelta-core/ourdelta/trunk015fmt

Proposed by Antony T Curtis
Status: Needs review
Proposed branch: lp:~atcurtis/ourdelta/ourdelta-oqgraph
Merge into: lp:~ourdelta-core/ourdelta/trunk015fmt
Diff against target: 66612 lines
4 files modified
mysql/5.0/open_query/graph_engine/oqgraph-boost.patch (+6777/-9538)
mysql/5.0/open_query/graph_engine/oqgraph-engine.patch (+2904/-0)
mysql/5.0/open_query/graph_engine/oqgraph-mysql.patch (+19/-19)
mysql/5.0/patches-build-ourdelta (+1/-0)
To merge this branch: bzr merge lp:~atcurtis/ourdelta/ourdelta-oqgraph
Reviewer Review Type Date Requested Status
Arjen Lentz Disapprove
Review via email: mp+14407@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Antony T Curtis (atcurtis) wrote :

update of oqgraph patches

Revision history for this message
Arjen Lentz (arjen-lentz) wrote :

Going to merge into ourdelta-5.0.87 prep branch

review: Disapprove

Unmerged revisions

65. By Antony T Curtis

import patches from oqgraph repository

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== renamed file 'mysql/5.0/open_query/graph_engine/oqgraph-engine.patch' => 'mysql/5.0/open_query/graph_engine/oqgraph-boost.patch'
--- mysql/5.0/open_query/graph_engine/oqgraph-engine.patch 2009-10-22 05:34:06 +0000
+++ mysql/5.0/open_query/graph_engine/oqgraph-boost.patch 2009-11-04 11:00:39 +0000
@@ -1,58 +1,35 @@
1Index: mysql-5.0.86/sql/oqgraph/Makefile.am1Index: mysql-5.0.86/sql/oqgraph/boost/LICENSE_1_0.txt
2===================================================================2===================================================================
3--- /dev/null 1970-01-01 00:00:00.000000000 +00003--- /dev/null 1970-01-01 00:00:00.000000000 +0000
4+++ mysql-5.0.86/sql/oqgraph/Makefile.am 2009-10-21 20:51:55.000000000 +10004+++ mysql-5.0.86/sql/oqgraph/boost/LICENSE_1_0.txt 2009-10-23 10:28:56.000000000 -0700
5@@ -0,0 +1,46 @@5@@ -0,0 +1,23 @@
6+# Copyright (C) 2007-2009 Arjen G Lentz & Antony T Curtis for Open Query6+Boost Software License - Version 1.0 - August 17th, 2003
7+#7+
8+# This program is free software; you can redistribute it and/or modify8+Permission is hereby granted, free of charge, to any person or organization
9+# it under the terms of the GNU General Public License as published by9+obtaining a copy of the software and accompanying documentation covered by
10+# the Free Software Foundation; version 2 of the License, or10+this license (the "Software") to use, reproduce, display, distribute,
11+# (at your option) any later version.11+execute, and transmit the Software, and to prepare derivative works of the
12+#12+Software, and to permit third-parties to whom the Software is furnished to
13+# This program is distributed in the hope that it will be useful,13+do so, all subject to the following:
14+# but WITHOUT ANY WARRANTY; without even the implied warranty of14+
15+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the15+The copyright notices in the Software and this entire statement, including
16+# GNU General Public License for more details.16+the above license grant, this restriction and the following disclaimer,
17+#17+must be included in all copies of the Software, in whole or in part, and
18+# You should have received a copy of the GNU General Public License18+all derivative works of the Software, unless such copies or derivative
19+# along with this program; if not, write to the Free Software19+works are solely in the form of machine-executable object code generated by
20+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */20+a source language processor.
21+21+
22+# ======================================================================22+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23+# Open Query Graph Computation Engine, based on a concept by Arjen Lentz23+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24+# Mk.II implementation by Antony Curtis & Arjen Lentz24+FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
25+# For more information, documentation, support, enhancement engineering,25+SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
26+# and non-GPL licensing, see http://openquery.com/graph26+FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
27+# or contact graph@openquery.com27+ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
28+# For packaged binaries, see http://ourdelta.org28+DEALINGS IN THE SOFTWARE.
29+# ======================================================================
30+
31+BOOST_CXXFLAGS = -fexceptions -fimplicit-templates
32+#BOOST_CXXFLAGS+= -g
33+BOOST_CXXFLAGS+= -O3 -fomit-frame-pointer -fstrict-aliasing
34+BOOST_CXXFLAGS+= -momit-leaf-frame-pointer -falign-loops
35+BOOST_CXXFLAGS+= -fvisibility-inlines-hidden
36+BOOST_CXXFLAGS+= -funroll-loops -fno-trapping-math
37+
38+INCLUDES =
39+DEFS =
40+EXTRA_DIST = graphcore.cc ha_oqgraph.cc ha_oqgraph.h
41+noinst_HEADERS = graphcore.h graphcore-types.h graphcore-graph.h
42+
43+if BUILD_OQGRAPHCORE
44+
45+noinst_LIBRARIES = libgraphcore.a
46+libgraphcore_a_SOURCES= graphcore.cc
47+
48+graphcore.o: graphcore.cc $(HEADERS)
49+ $(CXXCOMPILE) $(LM_CFLAGS) $(BOOST_CXXFLAGS) -c graphcore.cc
50+
51+endif
52Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/accumulators.hpp29Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/accumulators.hpp
53===================================================================30===================================================================
54--- /dev/null 1970-01-01 00:00:00.000000000 +000031--- /dev/null 1970-01-01 00:00:00.000000000 +0000
55+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/accumulators.hpp 2009-10-21 20:44:48.000000000 +100032+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/accumulators.hpp 2009-10-23 10:28:02.000000000 -0700
56@@ -0,0 +1,27 @@33@@ -0,0 +1,27 @@
57+///////////////////////////////////////////////////////////////////////////////34+///////////////////////////////////////////////////////////////////////////////
58+/// \file accumulators.hpp35+/// \file accumulators.hpp
@@ -84,7 +61,7 @@
84Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/accumulators_fwd.hpp61Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/accumulators_fwd.hpp
85===================================================================62===================================================================
86--- /dev/null 1970-01-01 00:00:00.000000000 +000063--- /dev/null 1970-01-01 00:00:00.000000000 +0000
87+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/accumulators_fwd.hpp 2009-10-21 20:44:48.000000000 +100064+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/accumulators_fwd.hpp 2009-10-23 10:28:02.000000000 -0700
88@@ -0,0 +1,211 @@65@@ -0,0 +1,211 @@
89+///////////////////////////////////////////////////////////////////////////////66+///////////////////////////////////////////////////////////////////////////////
90+// accumulators_fwd.hpp67+// accumulators_fwd.hpp
@@ -300,7 +277,7 @@
300Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/accumulator_base.hpp277Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/accumulator_base.hpp
301===================================================================278===================================================================
302--- /dev/null 1970-01-01 00:00:00.000000000 +0000279--- /dev/null 1970-01-01 00:00:00.000000000 +0000
303+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/accumulator_base.hpp 2009-10-21 20:44:48.000000000 +1000280+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/accumulator_base.hpp 2009-10-23 10:28:02.000000000 -0700
304@@ -0,0 +1,65 @@281@@ -0,0 +1,65 @@
305+///////////////////////////////////////////////////////////////////////////////282+///////////////////////////////////////////////////////////////////////////////
306+// accumulator_base.hpp283+// accumulator_base.hpp
@@ -370,7 +347,7 @@
370Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/accumulator_concept.hpp347Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/accumulator_concept.hpp
371===================================================================348===================================================================
372--- /dev/null 1970-01-01 00:00:00.000000000 +0000349--- /dev/null 1970-01-01 00:00:00.000000000 +0000
373+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/accumulator_concept.hpp 2009-10-21 20:44:48.000000000 +1000350+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/accumulator_concept.hpp 2009-10-23 10:28:02.000000000 -0700
374@@ -0,0 +1,29 @@351@@ -0,0 +1,29 @@
375+///////////////////////////////////////////////////////////////////////////////352+///////////////////////////////////////////////////////////////////////////////
376+// accumulator_concept.hpp353+// accumulator_concept.hpp
@@ -404,7 +381,7 @@
404Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/accumulator_set.hpp381Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/accumulator_set.hpp
405===================================================================382===================================================================
406--- /dev/null 1970-01-01 00:00:00.000000000 +0000383--- /dev/null 1970-01-01 00:00:00.000000000 +0000
407+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/accumulator_set.hpp 2009-10-21 20:44:48.000000000 +1000384+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/accumulator_set.hpp 2009-10-23 10:28:02.000000000 -0700
408@@ -0,0 +1,401 @@385@@ -0,0 +1,401 @@
409+///////////////////////////////////////////////////////////////////////////////386+///////////////////////////////////////////////////////////////////////////////
410+// accumulator_set.hpp387+// accumulator_set.hpp
@@ -810,7 +787,7 @@
810Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/accumulators/droppable_accumulator.hpp787Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/accumulators/droppable_accumulator.hpp
811===================================================================788===================================================================
812--- /dev/null 1970-01-01 00:00:00.000000000 +0000789--- /dev/null 1970-01-01 00:00:00.000000000 +0000
813+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/accumulators/droppable_accumulator.hpp 2009-10-21 20:44:48.000000000 +1000790+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/accumulators/droppable_accumulator.hpp 2009-10-23 10:28:02.000000000 -0700
814@@ -0,0 +1,317 @@791@@ -0,0 +1,317 @@
815+///////////////////////////////////////////////////////////////////////////////792+///////////////////////////////////////////////////////////////////////////////
816+// droppable_accumulator.hpp793+// droppable_accumulator.hpp
@@ -1132,7 +1109,7 @@
1132Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/accumulators/external_accumulator.hpp1109Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/accumulators/external_accumulator.hpp
1133===================================================================1110===================================================================
1134--- /dev/null 1970-01-01 00:00:00.000000000 +00001111--- /dev/null 1970-01-01 00:00:00.000000000 +0000
1135+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/accumulators/external_accumulator.hpp 2009-10-21 20:44:48.000000000 +10001112+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/accumulators/external_accumulator.hpp 2009-10-23 10:28:02.000000000 -0700
1136@@ -0,0 +1,108 @@1113@@ -0,0 +1,108 @@
1137+///////////////////////////////////////////////////////////////////////////////1114+///////////////////////////////////////////////////////////////////////////////
1138+// external_accumulator.hpp1115+// external_accumulator.hpp
@@ -1245,7 +1222,7 @@
1245Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/accumulators/reference_accumulator.hpp1222Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/accumulators/reference_accumulator.hpp
1246===================================================================1223===================================================================
1247--- /dev/null 1970-01-01 00:00:00.000000000 +00001224--- /dev/null 1970-01-01 00:00:00.000000000 +0000
1248+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/accumulators/reference_accumulator.hpp 2009-10-21 20:44:48.000000000 +10001225+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/accumulators/reference_accumulator.hpp 2009-10-23 10:28:02.000000000 -0700
1249@@ -0,0 +1,89 @@1226@@ -0,0 +1,89 @@
1250+///////////////////////////////////////////////////////////////////////////////1227+///////////////////////////////////////////////////////////////////////////////
1251+// reference_accumulator.hpp1228+// reference_accumulator.hpp
@@ -1339,7 +1316,7 @@
1339Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/accumulators/value_accumulator.hpp1316Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/accumulators/value_accumulator.hpp
1340===================================================================1317===================================================================
1341--- /dev/null 1970-01-01 00:00:00.000000000 +00001318--- /dev/null 1970-01-01 00:00:00.000000000 +0000
1342+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/accumulators/value_accumulator.hpp 2009-10-21 20:44:48.000000000 +10001319+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/accumulators/value_accumulator.hpp 2009-10-23 10:28:02.000000000 -0700
1343@@ -0,0 +1,89 @@1320@@ -0,0 +1,89 @@
1344+///////////////////////////////////////////////////////////////////////////////1321+///////////////////////////////////////////////////////////////////////////////
1345+// value_accumulator.hpp1322+// value_accumulator.hpp
@@ -1433,7 +1410,7 @@
1433Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/depends_on.hpp1410Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/depends_on.hpp
1434===================================================================1411===================================================================
1435--- /dev/null 1970-01-01 00:00:00.000000000 +00001412--- /dev/null 1970-01-01 00:00:00.000000000 +0000
1436+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/depends_on.hpp 2009-10-21 20:44:48.000000000 +10001413+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/depends_on.hpp 2009-10-23 10:28:02.000000000 -0700
1437@@ -0,0 +1,411 @@1414@@ -0,0 +1,411 @@
1438+///////////////////////////////////////////////////////////////////////////////1415+///////////////////////////////////////////////////////////////////////////////
1439+// depends_on.hpp1416+// depends_on.hpp
@@ -1849,7 +1826,7 @@
1849Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/external.hpp1826Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/external.hpp
1850===================================================================1827===================================================================
1851--- /dev/null 1970-01-01 00:00:00.000000000 +00001828--- /dev/null 1970-01-01 00:00:00.000000000 +0000
1852+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/external.hpp 2009-10-21 20:44:48.000000000 +10001829+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/external.hpp 2009-10-23 10:28:02.000000000 -0700
1853@@ -0,0 +1,27 @@1830@@ -0,0 +1,27 @@
1854+///////////////////////////////////////////////////////////////////////////////1831+///////////////////////////////////////////////////////////////////////////////
1855+// external.hpp1832+// external.hpp
@@ -1881,7 +1858,7 @@
1881Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/extractor.hpp1858Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/extractor.hpp
1882===================================================================1859===================================================================
1883--- /dev/null 1970-01-01 00:00:00.000000000 +00001860--- /dev/null 1970-01-01 00:00:00.000000000 +0000
1884+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/extractor.hpp 2009-10-21 20:44:48.000000000 +10001861+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/extractor.hpp 2009-10-23 10:28:02.000000000 -0700
1885@@ -0,0 +1,229 @@1862@@ -0,0 +1,229 @@
1886+///////////////////////////////////////////////////////////////////////////////1863+///////////////////////////////////////////////////////////////////////////////
1887+// extractor.hpp1864+// extractor.hpp
@@ -2115,7 +2092,7 @@
2115Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/features.hpp2092Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/features.hpp
2116===================================================================2093===================================================================
2117--- /dev/null 1970-01-01 00:00:00.000000000 +00002094--- /dev/null 1970-01-01 00:00:00.000000000 +0000
2118+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/features.hpp 2009-10-21 20:44:48.000000000 +10002095+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/features.hpp 2009-10-23 10:28:02.000000000 -0700
2119@@ -0,0 +1,29 @@2096@@ -0,0 +1,29 @@
2120+///////////////////////////////////////////////////////////////////////////////2097+///////////////////////////////////////////////////////////////////////////////
2121+// features.hpp2098+// features.hpp
@@ -2149,7 +2126,7 @@
2149Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/parameters/accumulator.hpp2126Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/parameters/accumulator.hpp
2150===================================================================2127===================================================================
2151--- /dev/null 1970-01-01 00:00:00.000000000 +00002128--- /dev/null 1970-01-01 00:00:00.000000000 +0000
2152+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/parameters/accumulator.hpp 2009-10-21 20:44:48.000000000 +10002129+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/parameters/accumulator.hpp 2009-10-23 10:28:02.000000000 -0700
2153@@ -0,0 +1,20 @@2130@@ -0,0 +1,20 @@
2154+///////////////////////////////////////////////////////////////////////////////2131+///////////////////////////////////////////////////////////////////////////////
2155+// accumulator.hpp2132+// accumulator.hpp
@@ -2174,7 +2151,7 @@
2174Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/parameters/sample.hpp2151Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/parameters/sample.hpp
2175===================================================================2152===================================================================
2176--- /dev/null 1970-01-01 00:00:00.000000000 +00002153--- /dev/null 1970-01-01 00:00:00.000000000 +0000
2177+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/parameters/sample.hpp 2009-10-21 20:44:48.000000000 +10002154+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/parameters/sample.hpp 2009-10-23 10:28:02.000000000 -0700
2178@@ -0,0 +1,20 @@2155@@ -0,0 +1,20 @@
2179+///////////////////////////////////////////////////////////////////////////////2156+///////////////////////////////////////////////////////////////////////////////
2180+// sample.hpp2157+// sample.hpp
@@ -2199,7 +2176,7 @@
2199Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/parameters/weight.hpp2176Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/parameters/weight.hpp
2200===================================================================2177===================================================================
2201--- /dev/null 1970-01-01 00:00:00.000000000 +00002178--- /dev/null 1970-01-01 00:00:00.000000000 +0000
2202+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/parameters/weight.hpp 2009-10-21 20:44:48.000000000 +10002179+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/parameters/weight.hpp 2009-10-23 10:28:02.000000000 -0700
2203@@ -0,0 +1,21 @@2180@@ -0,0 +1,21 @@
2204+///////////////////////////////////////////////////////////////////////////////2181+///////////////////////////////////////////////////////////////////////////////
2205+// weight.hpp2182+// weight.hpp
@@ -2225,7 +2202,7 @@
2225Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/parameters/weights.hpp2202Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/parameters/weights.hpp
2226===================================================================2203===================================================================
2227--- /dev/null 1970-01-01 00:00:00.000000000 +00002204--- /dev/null 1970-01-01 00:00:00.000000000 +0000
2228+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/parameters/weights.hpp 2009-10-21 20:44:48.000000000 +10002205+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/framework/parameters/weights.hpp 2009-10-23 10:28:02.000000000 -0700
2229@@ -0,0 +1,21 @@2206@@ -0,0 +1,21 @@
2230+///////////////////////////////////////////////////////////////////////////////2207+///////////////////////////////////////////////////////////////////////////////
2231+// weights.hpp2208+// weights.hpp
@@ -2251,7 +2228,7 @@
2251Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/detail/function1.hpp2228Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/detail/function1.hpp
2252===================================================================2229===================================================================
2253--- /dev/null 1970-01-01 00:00:00.000000000 +00002230--- /dev/null 1970-01-01 00:00:00.000000000 +0000
2254+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/detail/function1.hpp 2009-10-21 20:44:48.000000000 +10002231+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/detail/function1.hpp 2009-10-23 10:28:02.000000000 -0700
2255@@ -0,0 +1,75 @@2232@@ -0,0 +1,75 @@
2256+// Copyright David Abrahams 2006. Distributed under the Boost2233+// Copyright David Abrahams 2006. Distributed under the Boost
2257+// Software License, Version 1.0. (See accompanying2234+// Software License, Version 1.0. (See accompanying
@@ -2331,7 +2308,7 @@
2331Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/detail/function2.hpp2308Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/detail/function2.hpp
2332===================================================================2309===================================================================
2333--- /dev/null 1970-01-01 00:00:00.000000000 +00002310--- /dev/null 1970-01-01 00:00:00.000000000 +0000
2334+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/detail/function2.hpp 2009-10-21 20:44:48.000000000 +10002311+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/detail/function2.hpp 2009-10-23 10:28:02.000000000 -0700
2335@@ -0,0 +1,10 @@2312@@ -0,0 +1,10 @@
2336+// Copyright David Abrahams 2006. Distributed under the Boost2313+// Copyright David Abrahams 2006. Distributed under the Boost
2337+// Software License, Version 1.0. (See accompanying2314+// Software License, Version 1.0. (See accompanying
@@ -2346,7 +2323,7 @@
2346Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/detail/function3.hpp2323Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/detail/function3.hpp
2347===================================================================2324===================================================================
2348--- /dev/null 1970-01-01 00:00:00.000000000 +00002325--- /dev/null 1970-01-01 00:00:00.000000000 +0000
2349+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/detail/function3.hpp 2009-10-21 20:44:48.000000000 +10002326+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/detail/function3.hpp 2009-10-23 10:28:02.000000000 -0700
2350@@ -0,0 +1,10 @@2327@@ -0,0 +1,10 @@
2351+// Copyright David Abrahams 2006. Distributed under the Boost2328+// Copyright David Abrahams 2006. Distributed under the Boost
2352+// Software License, Version 1.0. (See accompanying2329+// Software License, Version 1.0. (See accompanying
@@ -2361,7 +2338,7 @@
2361Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/detail/function4.hpp2338Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/detail/function4.hpp
2362===================================================================2339===================================================================
2363--- /dev/null 1970-01-01 00:00:00.000000000 +00002340--- /dev/null 1970-01-01 00:00:00.000000000 +0000
2364+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/detail/function4.hpp 2009-10-21 20:44:48.000000000 +10002341+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/detail/function4.hpp 2009-10-23 10:28:02.000000000 -0700
2365@@ -0,0 +1,10 @@2342@@ -0,0 +1,10 @@
2366+// Copyright David Abrahams 2006. Distributed under the Boost2343+// Copyright David Abrahams 2006. Distributed under the Boost
2367+// Software License, Version 1.0. (See accompanying2344+// Software License, Version 1.0. (See accompanying
@@ -2376,7 +2353,7 @@
2376Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/detail/function_n.hpp2353Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/detail/function_n.hpp
2377===================================================================2354===================================================================
2378--- /dev/null 1970-01-01 00:00:00.000000000 +00002355--- /dev/null 1970-01-01 00:00:00.000000000 +0000
2379+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/detail/function_n.hpp 2009-10-21 20:44:48.000000000 +10002356+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/detail/function_n.hpp 2009-10-23 10:28:02.000000000 -0700
2380@@ -0,0 +1,148 @@2357@@ -0,0 +1,148 @@
2381+// Copyright David Abrahams 2006. Distributed under the Boost2358+// Copyright David Abrahams 2006. Distributed under the Boost
2382+// Software License, Version 1.0. (See accompanying2359+// Software License, Version 1.0. (See accompanying
@@ -2529,7 +2506,7 @@
2529Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/detail/pod_singleton.hpp2506Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/detail/pod_singleton.hpp
2530===================================================================2507===================================================================
2531--- /dev/null 1970-01-01 00:00:00.000000000 +00002508--- /dev/null 1970-01-01 00:00:00.000000000 +0000
2532+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/detail/pod_singleton.hpp 2009-10-21 20:44:48.000000000 +10002509+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/detail/pod_singleton.hpp 2009-10-23 10:28:02.000000000 -0700
2533@@ -0,0 +1,20 @@2510@@ -0,0 +1,20 @@
2534+// Copyright David Abrahams 2006. Distributed under the Boost2511+// Copyright David Abrahams 2006. Distributed under the Boost
2535+// Software License, Version 1.0. (See accompanying2512+// Software License, Version 1.0. (See accompanying
@@ -2554,7 +2531,7 @@
2554Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/functional.hpp2531Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/functional.hpp
2555===================================================================2532===================================================================
2556--- /dev/null 1970-01-01 00:00:00.000000000 +00002533--- /dev/null 1970-01-01 00:00:00.000000000 +0000
2557+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/functional.hpp 2009-10-21 20:44:48.000000000 +10002534+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/functional.hpp 2009-10-23 10:28:02.000000000 -0700
2558@@ -0,0 +1,490 @@2535@@ -0,0 +1,490 @@
2559+///////////////////////////////////////////////////////////////////////////////2536+///////////////////////////////////////////////////////////////////////////////
2560+/// \file functional.hpp2537+/// \file functional.hpp
@@ -3049,7 +3026,7 @@
3049Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/functional/complex.hpp3026Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/functional/complex.hpp
3050===================================================================3027===================================================================
3051--- /dev/null 1970-01-01 00:00:00.000000000 +00003028--- /dev/null 1970-01-01 00:00:00.000000000 +0000
3052+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/functional/complex.hpp 2009-10-21 20:44:48.000000000 +10003029+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/functional/complex.hpp 2009-10-23 10:28:02.000000000 -0700
3053@@ -0,0 +1,82 @@3030@@ -0,0 +1,82 @@
3054+///////////////////////////////////////////////////////////////////////////////3031+///////////////////////////////////////////////////////////////////////////////
3055+/// \file complex.hpp3032+/// \file complex.hpp
@@ -3136,7 +3113,7 @@
3136Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/functional/valarray.hpp3113Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/functional/valarray.hpp
3137===================================================================3114===================================================================
3138--- /dev/null 1970-01-01 00:00:00.000000000 +00003115--- /dev/null 1970-01-01 00:00:00.000000000 +0000
3139+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/functional/valarray.hpp 2009-10-21 20:44:48.000000000 +10003116+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/functional/valarray.hpp 2009-10-23 10:28:02.000000000 -0700
3140@@ -0,0 +1,351 @@3117@@ -0,0 +1,351 @@
3141+///////////////////////////////////////////////////////////////////////////////3118+///////////////////////////////////////////////////////////////////////////////
3142+/// \file valarray.hpp3119+/// \file valarray.hpp
@@ -3492,7 +3469,7 @@
3492Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/functional/vector.hpp3469Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/functional/vector.hpp
3493===================================================================3470===================================================================
3494--- /dev/null 1970-01-01 00:00:00.000000000 +00003471--- /dev/null 1970-01-01 00:00:00.000000000 +0000
3495+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/functional/vector.hpp 2009-10-21 20:44:48.000000000 +10003472+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/functional/vector.hpp 2009-10-23 10:28:02.000000000 -0700
3496@@ -0,0 +1,320 @@3473@@ -0,0 +1,320 @@
3497+///////////////////////////////////////////////////////////////////////////////3474+///////////////////////////////////////////////////////////////////////////////
3498+/// \file vector.hpp3475+/// \file vector.hpp
@@ -3817,7 +3794,7 @@
3817Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/functional_fwd.hpp3794Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/functional_fwd.hpp
3818===================================================================3795===================================================================
3819--- /dev/null 1970-01-01 00:00:00.000000000 +00003796--- /dev/null 1970-01-01 00:00:00.000000000 +0000
3820+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/functional_fwd.hpp 2009-10-21 20:44:48.000000000 +10003797+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/numeric/functional_fwd.hpp 2009-10-23 10:28:02.000000000 -0700
3821@@ -0,0 +1,221 @@3798@@ -0,0 +1,221 @@
3822+///////////////////////////////////////////////////////////////////////////////3799+///////////////////////////////////////////////////////////////////////////////
3823+/// \file functional_fwd.hpp3800+/// \file functional_fwd.hpp
@@ -4043,7 +4020,7 @@
4043Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics.hpp4020Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics.hpp
4044===================================================================4021===================================================================
4045--- /dev/null 1970-01-01 00:00:00.000000000 +00004022--- /dev/null 1970-01-01 00:00:00.000000000 +0000
4046+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics.hpp 2009-10-21 20:44:48.000000000 +10004023+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics.hpp 2009-10-23 10:28:02.000000000 -0700
4047@@ -0,0 +1,59 @@4024@@ -0,0 +1,59 @@
4048+///////////////////////////////////////////////////////////////////////////////4025+///////////////////////////////////////////////////////////////////////////////
4049+/// \file statistics.hpp4026+/// \file statistics.hpp
@@ -4107,7 +4084,7 @@
4107Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/count.hpp4084Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/count.hpp
4108===================================================================4085===================================================================
4109--- /dev/null 1970-01-01 00:00:00.000000000 +00004086--- /dev/null 1970-01-01 00:00:00.000000000 +0000
4110+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/count.hpp 2009-10-21 20:44:48.000000000 +10004087+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/count.hpp 2009-10-23 10:28:02.000000000 -0700
4111@@ -0,0 +1,78 @@4088@@ -0,0 +1,78 @@
4112+///////////////////////////////////////////////////////////////////////////////4089+///////////////////////////////////////////////////////////////////////////////
4113+// count.hpp4090+// count.hpp
@@ -4190,7 +4167,7 @@
4190Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/covariance.hpp4167Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/covariance.hpp
4191===================================================================4168===================================================================
4192--- /dev/null 1970-01-01 00:00:00.000000000 +00004169--- /dev/null 1970-01-01 00:00:00.000000000 +0000
4193+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/covariance.hpp 2009-10-21 20:44:48.000000000 +10004170+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/covariance.hpp 2009-10-23 10:28:02.000000000 -0700
4194@@ -0,0 +1,218 @@4171@@ -0,0 +1,218 @@
4195+///////////////////////////////////////////////////////////////////////////////4172+///////////////////////////////////////////////////////////////////////////////
4196+// covariance.hpp4173+// covariance.hpp
@@ -4413,7 +4390,7 @@
4413Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/density.hpp4390Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/density.hpp
4414===================================================================4391===================================================================
4415--- /dev/null 1970-01-01 00:00:00.000000000 +00004392--- /dev/null 1970-01-01 00:00:00.000000000 +0000
4416+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/density.hpp 2009-10-21 20:44:48.000000000 +10004393+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/density.hpp 2009-10-23 10:28:02.000000000 -0700
4417@@ -0,0 +1,241 @@4394@@ -0,0 +1,241 @@
4418+4395+
4419+///////////////////////////////////////////////////////////////////////////////4396+///////////////////////////////////////////////////////////////////////////////
@@ -4659,7 +4636,7 @@
4659Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/error_of.hpp4636Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/error_of.hpp
4660===================================================================4637===================================================================
4661--- /dev/null 1970-01-01 00:00:00.000000000 +00004638--- /dev/null 1970-01-01 00:00:00.000000000 +0000
4662+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/error_of.hpp 2009-10-21 20:44:48.000000000 +10004639+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/error_of.hpp 2009-10-23 10:28:02.000000000 -0700
4663@@ -0,0 +1,99 @@4640@@ -0,0 +1,99 @@
4664+///////////////////////////////////////////////////////////////////////////////4641+///////////////////////////////////////////////////////////////////////////////
4665+// error_of.hpp4642+// error_of.hpp
@@ -4763,7 +4740,7 @@
4763Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/error_of_mean.hpp4740Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/error_of_mean.hpp
4764===================================================================4741===================================================================
4765--- /dev/null 1970-01-01 00:00:00.000000000 +00004742--- /dev/null 1970-01-01 00:00:00.000000000 +0000
4766+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/error_of_mean.hpp 2009-10-21 20:44:48.000000000 +10004743+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/error_of_mean.hpp 2009-10-23 10:28:02.000000000 -0700
4767@@ -0,0 +1,73 @@4744@@ -0,0 +1,73 @@
4768+///////////////////////////////////////////////////////////////////////////////4745+///////////////////////////////////////////////////////////////////////////////
4769+// error_of.hpp4746+// error_of.hpp
@@ -4841,7 +4818,7 @@
4841Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/extended_p_square.hpp4818Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/extended_p_square.hpp
4842===================================================================4819===================================================================
4843--- /dev/null 1970-01-01 00:00:00.000000000 +00004820--- /dev/null 1970-01-01 00:00:00.000000000 +0000
4844+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/extended_p_square.hpp 2009-10-21 20:44:48.000000000 +10004821+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/extended_p_square.hpp 2009-10-23 10:28:03.000000000 -0700
4845@@ -0,0 +1,291 @@4822@@ -0,0 +1,291 @@
4846+///////////////////////////////////////////////////////////////////////////////4823+///////////////////////////////////////////////////////////////////////////////
4847+// extended_p_square.hpp4824+// extended_p_square.hpp
@@ -5137,7 +5114,7 @@
5137Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/extended_p_square_quantile.hpp5114Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/extended_p_square_quantile.hpp
5138===================================================================5115===================================================================
5139--- /dev/null 1970-01-01 00:00:00.000000000 +00005116--- /dev/null 1970-01-01 00:00:00.000000000 +0000
5140+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/extended_p_square_quantile.hpp 2009-10-21 20:44:48.000000000 +10005117+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/extended_p_square_quantile.hpp 2009-10-23 10:28:03.000000000 -0700
5141@@ -0,0 +1,314 @@5118@@ -0,0 +1,314 @@
5142+///////////////////////////////////////////////////////////////////////////////5119+///////////////////////////////////////////////////////////////////////////////
5143+// extended_p_square_quantile.hpp5120+// extended_p_square_quantile.hpp
@@ -5456,7 +5433,7 @@
5456Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/kurtosis.hpp5433Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/kurtosis.hpp
5457===================================================================5434===================================================================
5458--- /dev/null 1970-01-01 00:00:00.000000000 +00005435--- /dev/null 1970-01-01 00:00:00.000000000 +0000
5459+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/kurtosis.hpp 2009-10-21 20:44:48.000000000 +10005436+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/kurtosis.hpp 2009-10-23 10:28:03.000000000 -0700
5460@@ -0,0 +1,110 @@5437@@ -0,0 +1,110 @@
5461+///////////////////////////////////////////////////////////////////////////////5438+///////////////////////////////////////////////////////////////////////////////
5462+// kurtosis.hpp5439+// kurtosis.hpp
@@ -5571,7 +5548,7 @@
5571Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/max.hpp5548Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/max.hpp
5572===================================================================5549===================================================================
5573--- /dev/null 1970-01-01 00:00:00.000000000 +00005550--- /dev/null 1970-01-01 00:00:00.000000000 +0000
5574+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/max.hpp 2009-10-21 20:44:48.000000000 +10005551+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/max.hpp 2009-10-23 10:28:03.000000000 -0700
5575@@ -0,0 +1,83 @@5552@@ -0,0 +1,83 @@
5576+///////////////////////////////////////////////////////////////////////////////5553+///////////////////////////////////////////////////////////////////////////////
5577+// max.hpp5554+// max.hpp
@@ -5659,7 +5636,7 @@
5659Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/mean.hpp5636Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/mean.hpp
5660===================================================================5637===================================================================
5661--- /dev/null 1970-01-01 00:00:00.000000000 +00005638--- /dev/null 1970-01-01 00:00:00.000000000 +0000
5662+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/mean.hpp 2009-10-21 20:44:48.000000000 +10005639+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/mean.hpp 2009-10-23 10:28:03.000000000 -0700
5663@@ -0,0 +1,295 @@5640@@ -0,0 +1,295 @@
5664+///////////////////////////////////////////////////////////////////////////////5641+///////////////////////////////////////////////////////////////////////////////
5665+// mean.hpp5642+// mean.hpp
@@ -5959,7 +5936,7 @@
5959Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/median.hpp5936Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/median.hpp
5960===================================================================5937===================================================================
5961--- /dev/null 1970-01-01 00:00:00.000000000 +00005938--- /dev/null 1970-01-01 00:00:00.000000000 +0000
5962+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/median.hpp 2009-10-21 20:44:48.000000000 +10005939+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/median.hpp 2009-10-23 10:28:03.000000000 -0700
5963@@ -0,0 +1,297 @@5940@@ -0,0 +1,297 @@
5964+///////////////////////////////////////////////////////////////////////////////5941+///////////////////////////////////////////////////////////////////////////////
5965+// median.hpp5942+// median.hpp
@@ -6261,7 +6238,7 @@
6261Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/min.hpp6238Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/min.hpp
6262===================================================================6239===================================================================
6263--- /dev/null 1970-01-01 00:00:00.000000000 +00006240--- /dev/null 1970-01-01 00:00:00.000000000 +0000
6264+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/min.hpp 2009-10-21 20:44:48.000000000 +10006241+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/min.hpp 2009-10-23 10:28:03.000000000 -0700
6265@@ -0,0 +1,83 @@6242@@ -0,0 +1,83 @@
6266+///////////////////////////////////////////////////////////////////////////////6243+///////////////////////////////////////////////////////////////////////////////
6267+// min.hpp6244+// min.hpp
@@ -6349,7 +6326,7 @@
6349Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/moment.hpp6326Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/moment.hpp
6350===================================================================6327===================================================================
6351--- /dev/null 1970-01-01 00:00:00.000000000 +00006328--- /dev/null 1970-01-01 00:00:00.000000000 +0000
6352+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/moment.hpp 2009-10-21 20:44:48.000000000 +10006329+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/moment.hpp 2009-10-23 10:28:03.000000000 -0700
6353@@ -0,0 +1,125 @@6330@@ -0,0 +1,125 @@
6354+///////////////////////////////////////////////////////////////////////////////6331+///////////////////////////////////////////////////////////////////////////////
6355+// moment.hpp6332+// moment.hpp
@@ -6479,7 +6456,7 @@
6479Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/p_square_cumulative_distribution.hpp6456Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/p_square_cumulative_distribution.hpp
6480===================================================================6457===================================================================
6481--- /dev/null 1970-01-01 00:00:00.000000000 +00006458--- /dev/null 1970-01-01 00:00:00.000000000 +0000
6482+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/p_square_cumulative_distribution.hpp 2009-10-21 20:44:48.000000000 +10006459+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/p_square_cumulative_distribution.hpp 2009-10-23 10:28:03.000000000 -0700
6483@@ -0,0 +1,258 @@6460@@ -0,0 +1,258 @@
6484+///////////////////////////////////////////////////////////////////////////////6461+///////////////////////////////////////////////////////////////////////////////
6485+// p_square_cumulative_distribution.hpp6462+// p_square_cumulative_distribution.hpp
@@ -6742,7 +6719,7 @@
6742Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/p_square_quantile.hpp6719Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/p_square_quantile.hpp
6743===================================================================6720===================================================================
6744--- /dev/null 1970-01-01 00:00:00.000000000 +00006721--- /dev/null 1970-01-01 00:00:00.000000000 +0000
6745+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/p_square_quantile.hpp 2009-10-21 20:44:48.000000000 +10006722+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/p_square_quantile.hpp 2009-10-23 10:28:03.000000000 -0700
6746@@ -0,0 +1,254 @@6723@@ -0,0 +1,254 @@
6747+///////////////////////////////////////////////////////////////////////////////6724+///////////////////////////////////////////////////////////////////////////////
6748+// p_square_quantile.hpp6725+// p_square_quantile.hpp
@@ -7001,7 +6978,7 @@
7001Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/parameters/quantile_probability.hpp6978Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/parameters/quantile_probability.hpp
7002===================================================================6979===================================================================
7003--- /dev/null 1970-01-01 00:00:00.000000000 +00006980--- /dev/null 1970-01-01 00:00:00.000000000 +0000
7004+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/parameters/quantile_probability.hpp 2009-10-21 20:44:48.000000000 +10006981+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/parameters/quantile_probability.hpp 2009-10-23 10:28:03.000000000 -0700
7005@@ -0,0 +1,20 @@6982@@ -0,0 +1,20 @@
7006+///////////////////////////////////////////////////////////////////////////////6983+///////////////////////////////////////////////////////////////////////////////
7007+// quantile_probability.hpp6984+// quantile_probability.hpp
@@ -7026,7 +7003,7 @@
7026Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/peaks_over_threshold.hpp7003Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/peaks_over_threshold.hpp
7027===================================================================7004===================================================================
7028--- /dev/null 1970-01-01 00:00:00.000000000 +00007005--- /dev/null 1970-01-01 00:00:00.000000000 +0000
7029+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/peaks_over_threshold.hpp 2009-10-21 20:44:48.000000000 +10007006+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/peaks_over_threshold.hpp 2009-10-23 10:28:03.000000000 -0700
7030@@ -0,0 +1,399 @@7007@@ -0,0 +1,399 @@
7031+///////////////////////////////////////////////////////////////////////////////7008+///////////////////////////////////////////////////////////////////////////////
7032+// peaks_over_threshold.hpp7009+// peaks_over_threshold.hpp
@@ -7430,7 +7407,7 @@
7430Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/pot_quantile.hpp7407Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/pot_quantile.hpp
7431===================================================================7408===================================================================
7432--- /dev/null 1970-01-01 00:00:00.000000000 +00007409--- /dev/null 1970-01-01 00:00:00.000000000 +0000
7433+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/pot_quantile.hpp 2009-10-21 20:44:48.000000000 +10007410+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/pot_quantile.hpp 2009-10-23 10:28:03.000000000 -0700
7434@@ -0,0 +1,205 @@7411@@ -0,0 +1,205 @@
7435+///////////////////////////////////////////////////////////////////////////////7412+///////////////////////////////////////////////////////////////////////////////
7436+// pot_quantile.hpp7413+// pot_quantile.hpp
@@ -7640,7 +7617,7 @@
7640Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/pot_tail_mean.hpp7617Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/pot_tail_mean.hpp
7641===================================================================7618===================================================================
7642--- /dev/null 1970-01-01 00:00:00.000000000 +00007619--- /dev/null 1970-01-01 00:00:00.000000000 +0000
7643+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/pot_tail_mean.hpp 2009-10-21 20:44:48.000000000 +10007620+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/pot_tail_mean.hpp 2009-10-23 10:28:03.000000000 -0700
7644@@ -0,0 +1,211 @@7621@@ -0,0 +1,211 @@
7645+///////////////////////////////////////////////////////////////////////////////7622+///////////////////////////////////////////////////////////////////////////////
7646+// pot_tail_mean.hpp7623+// pot_tail_mean.hpp
@@ -7856,7 +7833,7 @@
7856Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/rolling_count.hpp7833Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/rolling_count.hpp
7857===================================================================7834===================================================================
7858--- /dev/null 1970-01-01 00:00:00.000000000 +00007835--- /dev/null 1970-01-01 00:00:00.000000000 +0000
7859+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/rolling_count.hpp 2009-10-21 20:44:48.000000000 +10007836+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/rolling_count.hpp 2009-10-23 10:28:03.000000000 -0700
7860@@ -0,0 +1,78 @@7837@@ -0,0 +1,78 @@
7861+///////////////////////////////////////////////////////////////////////////////7838+///////////////////////////////////////////////////////////////////////////////
7862+// rolling_count.hpp7839+// rolling_count.hpp
@@ -7939,7 +7916,7 @@
7939Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/rolling_mean.hpp7916Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/rolling_mean.hpp
7940===================================================================7917===================================================================
7941--- /dev/null 1970-01-01 00:00:00.000000000 +00007918--- /dev/null 1970-01-01 00:00:00.000000000 +0000
7942+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/rolling_mean.hpp 2009-10-21 20:44:48.000000000 +10007919+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/rolling_mean.hpp 2009-10-23 10:28:03.000000000 -0700
7943@@ -0,0 +1,79 @@7920@@ -0,0 +1,79 @@
7944+///////////////////////////////////////////////////////////////////////////////7921+///////////////////////////////////////////////////////////////////////////////
7945+// rolling_mean.hpp7922+// rolling_mean.hpp
@@ -8023,7 +8000,7 @@
8023Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/rolling_sum.hpp8000Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/rolling_sum.hpp
8024===================================================================8001===================================================================
8025--- /dev/null 1970-01-01 00:00:00.000000000 +00008002--- /dev/null 1970-01-01 00:00:00.000000000 +0000
8026+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/rolling_sum.hpp 2009-10-21 20:44:48.000000000 +10008003+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/rolling_sum.hpp 2009-10-23 10:28:03.000000000 -0700
8027@@ -0,0 +1,91 @@8004@@ -0,0 +1,91 @@
8028+///////////////////////////////////////////////////////////////////////////////8005+///////////////////////////////////////////////////////////////////////////////
8029+// rolling_sum.hpp8006+// rolling_sum.hpp
@@ -8119,7 +8096,7 @@
8119Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/rolling_window.hpp8096Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/rolling_window.hpp
8120===================================================================8097===================================================================
8121--- /dev/null 1970-01-01 00:00:00.000000000 +00008098--- /dev/null 1970-01-01 00:00:00.000000000 +0000
8122+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/rolling_window.hpp 2009-10-21 20:44:48.000000000 +10008099+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/rolling_window.hpp 2009-10-23 10:28:03.000000000 -0700
8123@@ -0,0 +1,165 @@8100@@ -0,0 +1,165 @@
8124+///////////////////////////////////////////////////////////////////////////////8101+///////////////////////////////////////////////////////////////////////////////
8125+// rolling_window.hpp8102+// rolling_window.hpp
@@ -8289,7 +8266,7 @@
8289Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/skewness.hpp8266Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/skewness.hpp
8290===================================================================8267===================================================================
8291--- /dev/null 1970-01-01 00:00:00.000000000 +00008268--- /dev/null 1970-01-01 00:00:00.000000000 +0000
8292+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/skewness.hpp 2009-10-21 20:44:48.000000000 +10008269+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/skewness.hpp 2009-10-23 10:28:03.000000000 -0700
8293@@ -0,0 +1,112 @@8270@@ -0,0 +1,112 @@
8294+///////////////////////////////////////////////////////////////////////////////8271+///////////////////////////////////////////////////////////////////////////////
8295+// skewness.hpp8272+// skewness.hpp
@@ -8406,7 +8383,7 @@
8406Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/stats.hpp8383Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/stats.hpp
8407===================================================================8384===================================================================
8408--- /dev/null 1970-01-01 00:00:00.000000000 +00008385--- /dev/null 1970-01-01 00:00:00.000000000 +0000
8409+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/stats.hpp 2009-10-21 20:44:48.000000000 +10008386+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/stats.hpp 2009-10-23 10:28:03.000000000 -0700
8410@@ -0,0 +1,29 @@8387@@ -0,0 +1,29 @@
8411+///////////////////////////////////////////////////////////////////////////////8388+///////////////////////////////////////////////////////////////////////////////
8412+/// \file stats.hpp8389+/// \file stats.hpp
@@ -8440,7 +8417,7 @@
8440Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/sum.hpp8417Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/sum.hpp
8441===================================================================8418===================================================================
8442--- /dev/null 1970-01-01 00:00:00.000000000 +00008419--- /dev/null 1970-01-01 00:00:00.000000000 +0000
8443+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/sum.hpp 2009-10-21 20:44:48.000000000 +10008420+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/sum.hpp 2009-10-23 10:28:03.000000000 -0700
8444@@ -0,0 +1,137 @@8421@@ -0,0 +1,137 @@
8445+///////////////////////////////////////////////////////////////////////////////8422+///////////////////////////////////////////////////////////////////////////////
8446+// sum.hpp8423+// sum.hpp
@@ -8582,7 +8559,7 @@
8582Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/tail.hpp8559Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/tail.hpp
8583===================================================================8560===================================================================
8584--- /dev/null 1970-01-01 00:00:00.000000000 +00008561--- /dev/null 1970-01-01 00:00:00.000000000 +0000
8585+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/tail.hpp 2009-10-21 20:44:48.000000000 +10008562+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/tail.hpp 2009-10-23 10:28:03.000000000 -0700
8586@@ -0,0 +1,332 @@8563@@ -0,0 +1,332 @@
8587+///////////////////////////////////////////////////////////////////////////////8564+///////////////////////////////////////////////////////////////////////////////
8588+// tail.hpp8565+// tail.hpp
@@ -8919,7 +8896,7 @@
8919Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/tail_mean.hpp8896Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/tail_mean.hpp
8920===================================================================8897===================================================================
8921--- /dev/null 1970-01-01 00:00:00.000000000 +00008898--- /dev/null 1970-01-01 00:00:00.000000000 +0000
8922+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/tail_mean.hpp 2009-10-21 20:44:48.000000000 +10008899+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/tail_mean.hpp 2009-10-23 10:28:03.000000000 -0700
8923@@ -0,0 +1,243 @@8900@@ -0,0 +1,243 @@
8924+///////////////////////////////////////////////////////////////////////////////8901+///////////////////////////////////////////////////////////////////////////////
8925+// tail_mean.hpp8902+// tail_mean.hpp
@@ -9167,7 +9144,7 @@
9167Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/tail_quantile.hpp9144Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/tail_quantile.hpp
9168===================================================================9145===================================================================
9169--- /dev/null 1970-01-01 00:00:00.000000000 +00009146--- /dev/null 1970-01-01 00:00:00.000000000 +0000
9170+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/tail_quantile.hpp 2009-10-21 20:44:48.000000000 +10009147+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/tail_quantile.hpp 2009-10-23 10:28:03.000000000 -0700
9171@@ -0,0 +1,156 @@9148@@ -0,0 +1,156 @@
9172+///////////////////////////////////////////////////////////////////////////////9149+///////////////////////////////////////////////////////////////////////////////
9173+// tail_quantile.hpp9150+// tail_quantile.hpp
@@ -9328,7 +9305,7 @@
9328Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/tail_variate.hpp9305Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/tail_variate.hpp
9329===================================================================9306===================================================================
9330--- /dev/null 1970-01-01 00:00:00.000000000 +00009307--- /dev/null 1970-01-01 00:00:00.000000000 +0000
9331+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/tail_variate.hpp 2009-10-21 20:44:48.000000000 +10009308+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/tail_variate.hpp 2009-10-23 10:28:03.000000000 -0700
9332@@ -0,0 +1,138 @@9309@@ -0,0 +1,138 @@
9333+///////////////////////////////////////////////////////////////////////////////9310+///////////////////////////////////////////////////////////////////////////////
9334+// tail_variate.hpp9311+// tail_variate.hpp
@@ -9471,7 +9448,7 @@
9471Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/tail_variate_means.hpp9448Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/tail_variate_means.hpp
9472===================================================================9449===================================================================
9473--- /dev/null 1970-01-01 00:00:00.000000000 +00009450--- /dev/null 1970-01-01 00:00:00.000000000 +0000
9474+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/tail_variate_means.hpp 2009-10-21 20:44:48.000000000 +10009451+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/tail_variate_means.hpp 2009-10-23 10:28:03.000000000 -0700
9475@@ -0,0 +1,255 @@9452@@ -0,0 +1,255 @@
9476+///////////////////////////////////////////////////////////////////////////////9453+///////////////////////////////////////////////////////////////////////////////
9477+// tail_variate_means.hpp9454+// tail_variate_means.hpp
@@ -9731,7 +9708,7 @@
9731Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/times2_iterator.hpp9708Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/times2_iterator.hpp
9732===================================================================9709===================================================================
9733--- /dev/null 1970-01-01 00:00:00.000000000 +00009710--- /dev/null 1970-01-01 00:00:00.000000000 +0000
9734+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/times2_iterator.hpp 2009-10-21 20:44:48.000000000 +10009711+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/times2_iterator.hpp 2009-10-23 10:28:03.000000000 -0700
9735@@ -0,0 +1,58 @@9712@@ -0,0 +1,58 @@
9736+///////////////////////////////////////////////////////////////////////////////9713+///////////////////////////////////////////////////////////////////////////////
9737+// times2_iterator.hpp9714+// times2_iterator.hpp
@@ -9794,7 +9771,7 @@
9794Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/variance.hpp9771Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/variance.hpp
9795===================================================================9772===================================================================
9796--- /dev/null 1970-01-01 00:00:00.000000000 +00009773--- /dev/null 1970-01-01 00:00:00.000000000 +0000
9797+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/variance.hpp 2009-10-21 20:44:48.000000000 +10009774+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/variance.hpp 2009-10-23 10:28:03.000000000 -0700
9798@@ -0,0 +1,233 @@9775@@ -0,0 +1,233 @@
9799+///////////////////////////////////////////////////////////////////////////////9776+///////////////////////////////////////////////////////////////////////////////
9800+// variance.hpp9777+// variance.hpp
@@ -10032,7 +10009,7 @@
10032Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/variates/covariate.hpp10009Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/variates/covariate.hpp
10033===================================================================10010===================================================================
10034--- /dev/null 1970-01-01 00:00:00.000000000 +000010011--- /dev/null 1970-01-01 00:00:00.000000000 +0000
10035+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/variates/covariate.hpp 2009-10-21 20:44:48.000000000 +100010012+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/variates/covariate.hpp 2009-10-23 10:28:03.000000000 -0700
10036@@ -0,0 +1,21 @@10013@@ -0,0 +1,21 @@
10037+///////////////////////////////////////////////////////////////////////////////10014+///////////////////////////////////////////////////////////////////////////////
10038+// weight.hpp10015+// weight.hpp
@@ -10058,7 +10035,7 @@
10058Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_covariance.hpp10035Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_covariance.hpp
10059===================================================================10036===================================================================
10060--- /dev/null 1970-01-01 00:00:00.000000000 +000010037--- /dev/null 1970-01-01 00:00:00.000000000 +0000
10061+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_covariance.hpp 2009-10-21 20:44:48.000000000 +100010038+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_covariance.hpp 2009-10-23 10:28:03.000000000 -0700
10062@@ -0,0 +1,131 @@10039@@ -0,0 +1,131 @@
10063+///////////////////////////////////////////////////////////////////////////////10040+///////////////////////////////////////////////////////////////////////////////
10064+// weighted_covariance.hpp10041+// weighted_covariance.hpp
@@ -10194,7 +10171,7 @@
10194Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_density.hpp10171Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_density.hpp
10195===================================================================10172===================================================================
10196--- /dev/null 1970-01-01 00:00:00.000000000 +000010173--- /dev/null 1970-01-01 00:00:00.000000000 +0000
10197+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_density.hpp 2009-10-21 20:44:48.000000000 +100010174+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_density.hpp 2009-10-23 10:28:03.000000000 -0700
10198@@ -0,0 +1,219 @@10175@@ -0,0 +1,219 @@
10199+///////////////////////////////////////////////////////////////////////////////10176+///////////////////////////////////////////////////////////////////////////////
10200+// weighted_density.hpp10177+// weighted_density.hpp
@@ -10418,7 +10395,7 @@
10418Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_extended_p_square.hpp10395Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_extended_p_square.hpp
10419===================================================================10396===================================================================
10420--- /dev/null 1970-01-01 00:00:00.000000000 +000010397--- /dev/null 1970-01-01 00:00:00.000000000 +0000
10421+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_extended_p_square.hpp 2009-10-21 20:44:48.000000000 +100010398+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_extended_p_square.hpp 2009-10-23 10:28:03.000000000 -0700
10422@@ -0,0 +1,288 @@10399@@ -0,0 +1,288 @@
10423+///////////////////////////////////////////////////////////////////////////////10400+///////////////////////////////////////////////////////////////////////////////
10424+// weighted_extended_p_square.hpp10401+// weighted_extended_p_square.hpp
@@ -10711,7 +10688,7 @@
10711Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_kurtosis.hpp10688Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_kurtosis.hpp
10712===================================================================10689===================================================================
10713--- /dev/null 1970-01-01 00:00:00.000000000 +000010690--- /dev/null 1970-01-01 00:00:00.000000000 +0000
10714+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_kurtosis.hpp 2009-10-21 20:44:48.000000000 +100010691+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_kurtosis.hpp 2009-10-23 10:28:03.000000000 -0700
10715@@ -0,0 +1,103 @@10692@@ -0,0 +1,103 @@
10716+///////////////////////////////////////////////////////////////////////////////10693+///////////////////////////////////////////////////////////////////////////////
10717+// weighted_kurtosis.hpp10694+// weighted_kurtosis.hpp
@@ -10819,7 +10796,7 @@
10819Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_mean.hpp10796Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_mean.hpp
10820===================================================================10797===================================================================
10821--- /dev/null 1970-01-01 00:00:00.000000000 +000010798--- /dev/null 1970-01-01 00:00:00.000000000 +0000
10822+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_mean.hpp 2009-10-21 20:44:48.000000000 +100010799+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_mean.hpp 2009-10-23 10:28:03.000000000 -0700
10823@@ -0,0 +1,187 @@10800@@ -0,0 +1,187 @@
10824+///////////////////////////////////////////////////////////////////////////////10801+///////////////////////////////////////////////////////////////////////////////
10825+// weighted_mean.hpp10802+// weighted_mean.hpp
@@ -11011,7 +10988,7 @@
11011Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_median.hpp10988Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_median.hpp
11012===================================================================10989===================================================================
11013--- /dev/null 1970-01-01 00:00:00.000000000 +000010990--- /dev/null 1970-01-01 00:00:00.000000000 +0000
11014+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_median.hpp 2009-10-21 20:44:48.000000000 +100010991+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_median.hpp 2009-10-23 10:28:03.000000000 -0700
11015@@ -0,0 +1,235 @@10992@@ -0,0 +1,235 @@
11016+///////////////////////////////////////////////////////////////////////////////10993+///////////////////////////////////////////////////////////////////////////////
11017+// weighted_median.hpp10994+// weighted_median.hpp
@@ -11251,7 +11228,7 @@
11251Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_moment.hpp11228Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_moment.hpp
11252===================================================================11229===================================================================
11253--- /dev/null 1970-01-01 00:00:00.000000000 +000011230--- /dev/null 1970-01-01 00:00:00.000000000 +0000
11254+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_moment.hpp 2009-10-21 20:44:48.000000000 +100011231+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_moment.hpp 2009-10-23 10:28:03.000000000 -0700
11255@@ -0,0 +1,96 @@11232@@ -0,0 +1,96 @@
11256+///////////////////////////////////////////////////////////////////////////////11233+///////////////////////////////////////////////////////////////////////////////
11257+// weighted_moment.hpp11234+// weighted_moment.hpp
@@ -11352,7 +11329,7 @@
11352Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_p_square_cumulative_distribution.hpp11329Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_p_square_cumulative_distribution.hpp
11353===================================================================11330===================================================================
11354--- /dev/null 1970-01-01 00:00:00.000000000 +000011331--- /dev/null 1970-01-01 00:00:00.000000000 +0000
11355+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_p_square_cumulative_distribution.hpp 2009-10-21 20:44:48.000000000 +100011332+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_p_square_cumulative_distribution.hpp 2009-10-23 10:28:03.000000000 -0700
11356@@ -0,0 +1,260 @@11333@@ -0,0 +1,260 @@
11357+///////////////////////////////////////////////////////////////////////////////11334+///////////////////////////////////////////////////////////////////////////////
11358+// weighted_p_square_cumulative_distribution.hpp11335+// weighted_p_square_cumulative_distribution.hpp
@@ -11617,7 +11594,7 @@
11617Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_p_square_quantile.hpp11594Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_p_square_quantile.hpp
11618===================================================================11595===================================================================
11619--- /dev/null 1970-01-01 00:00:00.000000000 +000011596--- /dev/null 1970-01-01 00:00:00.000000000 +0000
11620+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_p_square_quantile.hpp 2009-10-21 20:44:48.000000000 +100011597+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_p_square_quantile.hpp 2009-10-23 10:28:03.000000000 -0700
11621@@ -0,0 +1,251 @@11598@@ -0,0 +1,251 @@
11622+///////////////////////////////////////////////////////////////////////////////11599+///////////////////////////////////////////////////////////////////////////////
11623+// weighted_p_square_quantile.hpp11600+// weighted_p_square_quantile.hpp
@@ -11873,7 +11850,7 @@
11873Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_peaks_over_threshold.hpp11850Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_peaks_over_threshold.hpp
11874===================================================================11851===================================================================
11875--- /dev/null 1970-01-01 00:00:00.000000000 +000011852--- /dev/null 1970-01-01 00:00:00.000000000 +0000
11876+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_peaks_over_threshold.hpp 2009-10-21 20:44:48.000000000 +100011853+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_peaks_over_threshold.hpp 2009-10-23 10:28:03.000000000 -0700
11877@@ -0,0 +1,286 @@11854@@ -0,0 +1,286 @@
11878+///////////////////////////////////////////////////////////////////////////////11855+///////////////////////////////////////////////////////////////////////////////
11879+// weighted_peaks_over_threshold.hpp11856+// weighted_peaks_over_threshold.hpp
@@ -12164,7 +12141,7 @@
12164Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_skewness.hpp12141Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_skewness.hpp
12165===================================================================12142===================================================================
12166--- /dev/null 1970-01-01 00:00:00.000000000 +000012143--- /dev/null 1970-01-01 00:00:00.000000000 +0000
12167+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_skewness.hpp 2009-10-21 20:44:48.000000000 +100012144+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_skewness.hpp 2009-10-23 10:28:03.000000000 -0700
12168@@ -0,0 +1,99 @@12145@@ -0,0 +1,99 @@
12169+///////////////////////////////////////////////////////////////////////////////12146+///////////////////////////////////////////////////////////////////////////////
12170+// weighted_skewness.hpp12147+// weighted_skewness.hpp
@@ -12268,7 +12245,7 @@
12268Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_sum.hpp12245Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_sum.hpp
12269===================================================================12246===================================================================
12270--- /dev/null 1970-01-01 00:00:00.000000000 +000012247--- /dev/null 1970-01-01 00:00:00.000000000 +0000
12271+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_sum.hpp 2009-10-21 20:44:48.000000000 +100012248+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_sum.hpp 2009-10-23 10:28:03.000000000 -0700
12272@@ -0,0 +1,113 @@12249@@ -0,0 +1,113 @@
12273+///////////////////////////////////////////////////////////////////////////////12250+///////////////////////////////////////////////////////////////////////////////
12274+// weighted_sum.hpp12251+// weighted_sum.hpp
@@ -12386,7 +12363,7 @@
12386Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_tail_mean.hpp12363Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_tail_mean.hpp
12387===================================================================12364===================================================================
12388--- /dev/null 1970-01-01 00:00:00.000000000 +000012365--- /dev/null 1970-01-01 00:00:00.000000000 +0000
12389+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_tail_mean.hpp 2009-10-21 20:44:48.000000000 +100012366+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_tail_mean.hpp 2009-10-23 10:28:03.000000000 -0700
12390@@ -0,0 +1,167 @@12367@@ -0,0 +1,167 @@
12391+///////////////////////////////////////////////////////////////////////////////12368+///////////////////////////////////////////////////////////////////////////////
12392+// weighted_tail_mean.hpp12369+// weighted_tail_mean.hpp
@@ -12558,7 +12535,7 @@
12558Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_tail_quantile.hpp12535Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_tail_quantile.hpp
12559===================================================================12536===================================================================
12560--- /dev/null 1970-01-01 00:00:00.000000000 +000012537--- /dev/null 1970-01-01 00:00:00.000000000 +0000
12561+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_tail_quantile.hpp 2009-10-21 20:44:48.000000000 +100012538+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_tail_quantile.hpp 2009-10-23 10:28:03.000000000 -0700
12562@@ -0,0 +1,144 @@12539@@ -0,0 +1,144 @@
12563+///////////////////////////////////////////////////////////////////////////////12540+///////////////////////////////////////////////////////////////////////////////
12564+// weighted_tail_quantile.hpp12541+// weighted_tail_quantile.hpp
@@ -12707,7 +12684,7 @@
12707Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_tail_variate_means.hpp12684Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_tail_variate_means.hpp
12708===================================================================12685===================================================================
12709--- /dev/null 1970-01-01 00:00:00.000000000 +000012686--- /dev/null 1970-01-01 00:00:00.000000000 +0000
12710+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_tail_variate_means.hpp 2009-10-21 20:44:48.000000000 +100012687+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_tail_variate_means.hpp 2009-10-23 10:28:03.000000000 -0700
12711@@ -0,0 +1,239 @@12688@@ -0,0 +1,239 @@
12712+///////////////////////////////////////////////////////////////////////////////12689+///////////////////////////////////////////////////////////////////////////////
12713+// weighted_tail_variate_means.hpp12690+// weighted_tail_variate_means.hpp
@@ -12951,7 +12928,7 @@
12951Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_variance.hpp12928Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_variance.hpp
12952===================================================================12929===================================================================
12953--- /dev/null 1970-01-01 00:00:00.000000000 +000012930--- /dev/null 1970-01-01 00:00:00.000000000 +0000
12954+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_variance.hpp 2009-10-21 20:44:48.000000000 +100012931+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/weighted_variance.hpp 2009-10-23 10:28:03.000000000 -0700
12955@@ -0,0 +1,183 @@12932@@ -0,0 +1,183 @@
12956+///////////////////////////////////////////////////////////////////////////////12933+///////////////////////////////////////////////////////////////////////////////
12957+// weighted_variance.hpp12934+// weighted_variance.hpp
@@ -13139,7 +13116,7 @@
13139Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/with_error.hpp13116Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/with_error.hpp
13140===================================================================13117===================================================================
13141--- /dev/null 1970-01-01 00:00:00.000000000 +000013118--- /dev/null 1970-01-01 00:00:00.000000000 +0000
13142+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/with_error.hpp 2009-10-21 20:44:48.000000000 +100013119+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics/with_error.hpp 2009-10-23 10:28:03.000000000 -0700
13143@@ -0,0 +1,44 @@13120@@ -0,0 +1,44 @@
13144+///////////////////////////////////////////////////////////////////////////////13121+///////////////////////////////////////////////////////////////////////////////
13145+// with_error.hpp13122+// with_error.hpp
@@ -13188,7 +13165,7 @@
13188Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics_fwd.hpp13165Index: mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics_fwd.hpp
13189===================================================================13166===================================================================
13190--- /dev/null 1970-01-01 00:00:00.000000000 +000013167--- /dev/null 1970-01-01 00:00:00.000000000 +0000
13191+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics_fwd.hpp 2009-10-21 20:44:48.000000000 +100013168+++ mysql-5.0.86/sql/oqgraph/boost/accumulators/statistics_fwd.hpp 2009-10-23 10:28:03.000000000 -0700
13192@@ -0,0 +1,415 @@13169@@ -0,0 +1,415 @@
13193+///////////////////////////////////////////////////////////////////////////////13170+///////////////////////////////////////////////////////////////////////////////
13194+// statistics_fwd.hpp13171+// statistics_fwd.hpp
@@ -13608,7 +13585,7 @@
13608Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/minmax.hpp13585Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/minmax.hpp
13609===================================================================13586===================================================================
13610--- /dev/null 1970-01-01 00:00:00.000000000 +000013587--- /dev/null 1970-01-01 00:00:00.000000000 +0000
13611+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/minmax.hpp 2009-10-21 20:44:48.000000000 +100013588+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/minmax.hpp 2009-10-23 10:28:03.000000000 -0700
13612@@ -0,0 +1,47 @@13589@@ -0,0 +1,47 @@
13613+// (C) Copyright Herve Bronnimann 2004.13590+// (C) Copyright Herve Bronnimann 2004.
13614+//13591+//
@@ -13660,7 +13637,7 @@
13660Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/minmax_element.hpp13637Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/minmax_element.hpp
13661===================================================================13638===================================================================
13662--- /dev/null 1970-01-01 00:00:00.000000000 +000013639--- /dev/null 1970-01-01 00:00:00.000000000 +0000
13663+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/minmax_element.hpp 2009-10-21 20:44:48.000000000 +100013640+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/minmax_element.hpp 2009-10-23 10:28:03.000000000 -0700
13664@@ -0,0 +1,551 @@13641@@ -0,0 +1,551 @@
13665+// (C) Copyright Herve Bronnimann 2004.13642+// (C) Copyright Herve Bronnimann 2004.
13666+//13643+//
@@ -14216,7 +14193,7 @@
14216Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string.hpp14193Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string.hpp
14217===================================================================14194===================================================================
14218--- /dev/null 1970-01-01 00:00:00.000000000 +000014195--- /dev/null 1970-01-01 00:00:00.000000000 +0000
14219+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string.hpp 2009-10-21 20:44:48.000000000 +100014196+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string.hpp 2009-10-23 10:28:03.000000000 -0700
14220@@ -0,0 +1,31 @@14197@@ -0,0 +1,31 @@
14221+// Boost string_algo library string_algo.hpp header file ---------------------------//14198+// Boost string_algo library string_algo.hpp header file ---------------------------//
14222+14199+
@@ -14252,7 +14229,7 @@
14252Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/case_conv.hpp14229Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/case_conv.hpp
14253===================================================================14230===================================================================
14254--- /dev/null 1970-01-01 00:00:00.000000000 +000014231--- /dev/null 1970-01-01 00:00:00.000000000 +0000
14255+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/case_conv.hpp 2009-10-21 20:44:48.000000000 +100014232+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/case_conv.hpp 2009-10-23 10:28:03.000000000 -0700
14256@@ -0,0 +1,176 @@14233@@ -0,0 +1,176 @@
14257+// Boost string_algo library case_conv.hpp header file ---------------------------//14234+// Boost string_algo library case_conv.hpp header file ---------------------------//
14258+14235+
@@ -14433,7 +14410,7 @@
14433Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/classification.hpp14410Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/classification.hpp
14434===================================================================14411===================================================================
14435--- /dev/null 1970-01-01 00:00:00.000000000 +000014412--- /dev/null 1970-01-01 00:00:00.000000000 +0000
14436+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/classification.hpp 2009-10-21 20:44:48.000000000 +100014413+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/classification.hpp 2009-10-23 10:28:03.000000000 -0700
14437@@ -0,0 +1,312 @@14414@@ -0,0 +1,312 @@
14438+// Boost string_algo library classification.hpp header file ---------------------------//14415+// Boost string_algo library classification.hpp header file ---------------------------//
14439+14416+
@@ -14750,7 +14727,7 @@
14750Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/compare.hpp14727Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/compare.hpp
14751===================================================================14728===================================================================
14752--- /dev/null 1970-01-01 00:00:00.000000000 +000014729--- /dev/null 1970-01-01 00:00:00.000000000 +0000
14753+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/compare.hpp 2009-10-21 20:44:48.000000000 +100014730+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/compare.hpp 2009-10-23 10:28:03.000000000 -0700
14754@@ -0,0 +1,199 @@14731@@ -0,0 +1,199 @@
14755+// Boost string_algo library compare.hpp header file -------------------------//14732+// Boost string_algo library compare.hpp header file -------------------------//
14756+14733+
@@ -14954,7 +14931,7 @@
14954Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/concept.hpp14931Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/concept.hpp
14955===================================================================14932===================================================================
14956--- /dev/null 1970-01-01 00:00:00.000000000 +000014933--- /dev/null 1970-01-01 00:00:00.000000000 +0000
14957+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/concept.hpp 2009-10-21 20:44:48.000000000 +100014934+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/concept.hpp 2009-10-23 10:28:03.000000000 -0700
14958@@ -0,0 +1,83 @@14935@@ -0,0 +1,83 @@
14959+// Boost string_algo library concept.hpp header file ---------------------------//14936+// Boost string_algo library concept.hpp header file ---------------------------//
14960+14937+
@@ -15042,7 +15019,7 @@
15042Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/config.hpp15019Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/config.hpp
15043===================================================================15020===================================================================
15044--- /dev/null 1970-01-01 00:00:00.000000000 +000015021--- /dev/null 1970-01-01 00:00:00.000000000 +0000
15045+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/config.hpp 2009-10-21 20:44:48.000000000 +100015022+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/config.hpp 2009-10-23 10:28:03.000000000 -0700
15046@@ -0,0 +1,28 @@15023@@ -0,0 +1,28 @@
15047+// Boost string_algo library config.hpp header file ---------------------------//15024+// Boost string_algo library config.hpp header file ---------------------------//
15048+15025+
@@ -15075,7 +15052,7 @@
15075Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/constants.hpp15052Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/constants.hpp
15076===================================================================15053===================================================================
15077--- /dev/null 1970-01-01 00:00:00.000000000 +000015054--- /dev/null 1970-01-01 00:00:00.000000000 +0000
15078+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/constants.hpp 2009-10-21 20:44:48.000000000 +100015055+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/constants.hpp 2009-10-23 10:28:03.000000000 -0700
15079@@ -0,0 +1,36 @@15056@@ -0,0 +1,36 @@
15080+// Boost string_algo library constants.hpp header file ---------------------------//15057+// Boost string_algo library constants.hpp header file ---------------------------//
15081+15058+
@@ -15116,7 +15093,7 @@
15116Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/case_conv.hpp15093Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/case_conv.hpp
15117===================================================================15094===================================================================
15118--- /dev/null 1970-01-01 00:00:00.000000000 +000015095--- /dev/null 1970-01-01 00:00:00.000000000 +0000
15119+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/case_conv.hpp 2009-10-21 20:44:48.000000000 +100015096+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/case_conv.hpp 2009-10-23 10:28:03.000000000 -0700
15120@@ -0,0 +1,121 @@15097@@ -0,0 +1,121 @@
15121+// Boost string_algo library string_funct.hpp header file ---------------------------//15098+// Boost string_algo library string_funct.hpp header file ---------------------------//
15122+15099+
@@ -15242,7 +15219,7 @@
15242Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/classification.hpp15219Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/classification.hpp
15243===================================================================15220===================================================================
15244--- /dev/null 1970-01-01 00:00:00.000000000 +000015221--- /dev/null 1970-01-01 00:00:00.000000000 +0000
15245+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/classification.hpp 2009-10-21 20:44:48.000000000 +100015222+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/classification.hpp 2009-10-23 10:28:03.000000000 -0700
15246@@ -0,0 +1,353 @@15223@@ -0,0 +1,353 @@
15247+// Boost string_algo library classification.hpp header file ---------------------------//15224+// Boost string_algo library classification.hpp header file ---------------------------//
15248+15225+
@@ -15600,7 +15577,7 @@
15600Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/find_format.hpp15577Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/find_format.hpp
15601===================================================================15578===================================================================
15602--- /dev/null 1970-01-01 00:00:00.000000000 +000015579--- /dev/null 1970-01-01 00:00:00.000000000 +0000
15603+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/find_format.hpp 2009-10-21 20:44:48.000000000 +100015580+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/find_format.hpp 2009-10-23 10:28:03.000000000 -0700
15604@@ -0,0 +1,193 @@15581@@ -0,0 +1,193 @@
15605+// Boost string_algo library find_format.hpp header file ---------------------------//15582+// Boost string_algo library find_format.hpp header file ---------------------------//
15606+15583+
@@ -15798,7 +15775,7 @@
15798Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/find_format_all.hpp15775Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/find_format_all.hpp
15799===================================================================15776===================================================================
15800--- /dev/null 1970-01-01 00:00:00.000000000 +000015777--- /dev/null 1970-01-01 00:00:00.000000000 +0000
15801+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/find_format_all.hpp 2009-10-21 20:44:48.000000000 +100015778+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/find_format_all.hpp 2009-10-23 10:28:03.000000000 -0700
15802@@ -0,0 +1,263 @@15779@@ -0,0 +1,263 @@
15803+// Boost string_algo library find_format_all.hpp header file ---------------------------//15780+// Boost string_algo library find_format_all.hpp header file ---------------------------//
15804+15781+
@@ -16066,7 +16043,7 @@
16066Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/find_format_store.hpp16043Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/find_format_store.hpp
16067===================================================================16044===================================================================
16068--- /dev/null 1970-01-01 00:00:00.000000000 +000016045--- /dev/null 1970-01-01 00:00:00.000000000 +0000
16069+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/find_format_store.hpp 2009-10-21 20:44:48.000000000 +100016046+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/find_format_store.hpp 2009-10-23 10:28:03.000000000 -0700
16070@@ -0,0 +1,78 @@16047@@ -0,0 +1,78 @@
16071+// Boost string_algo library find_format_store.hpp header file ---------------------------//16048+// Boost string_algo library find_format_store.hpp header file ---------------------------//
16072+16049+
@@ -16149,7 +16126,7 @@
16149Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/find_iterator.hpp16126Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/find_iterator.hpp
16150===================================================================16127===================================================================
16151--- /dev/null 1970-01-01 00:00:00.000000000 +000016128--- /dev/null 1970-01-01 00:00:00.000000000 +0000
16152+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/find_iterator.hpp 2009-10-21 20:44:48.000000000 +100016129+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/find_iterator.hpp 2009-10-23 10:28:03.000000000 -0700
16153@@ -0,0 +1,87 @@16130@@ -0,0 +1,87 @@
16154+// Boost string_algo library find_iterator.hpp header file ---------------------------//16131+// Boost string_algo library find_iterator.hpp header file ---------------------------//
16155+16132+
@@ -16241,7 +16218,7 @@
16241Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/finder.hpp16218Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/finder.hpp
16242===================================================================16219===================================================================
16243--- /dev/null 1970-01-01 00:00:00.000000000 +000016220--- /dev/null 1970-01-01 00:00:00.000000000 +0000
16244+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/finder.hpp 2009-10-21 20:44:48.000000000 +100016221+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/finder.hpp 2009-10-23 10:28:03.000000000 -0700
16245@@ -0,0 +1,646 @@16222@@ -0,0 +1,646 @@
16246+// Boost string_algo library finder.hpp header file ---------------------------//16223+// Boost string_algo library finder.hpp header file ---------------------------//
16247+16224+
@@ -16892,7 +16869,7 @@
16892Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/finder_regex.hpp16869Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/finder_regex.hpp
16893===================================================================16870===================================================================
16894--- /dev/null 1970-01-01 00:00:00.000000000 +000016871--- /dev/null 1970-01-01 00:00:00.000000000 +0000
16895+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/finder_regex.hpp 2009-10-21 20:44:48.000000000 +100016872+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/finder_regex.hpp 2009-10-23 10:28:03.000000000 -0700
16896@@ -0,0 +1,122 @@16873@@ -0,0 +1,122 @@
16897+// Boost string_algo library find_regex.hpp header file ---------------------------//16874+// Boost string_algo library find_regex.hpp header file ---------------------------//
16898+16875+
@@ -17019,7 +16996,7 @@
17019Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/formatter.hpp16996Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/formatter.hpp
17020===================================================================16997===================================================================
17021--- /dev/null 1970-01-01 00:00:00.000000000 +000016998--- /dev/null 1970-01-01 00:00:00.000000000 +0000
17022+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/formatter.hpp 2009-10-21 20:44:48.000000000 +100016999+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/formatter.hpp 2009-10-23 10:28:03.000000000 -0700
17023@@ -0,0 +1,94 @@17000@@ -0,0 +1,94 @@
17024+// Boost string_algo library formatter.hpp header file ---------------------------//17001+// Boost string_algo library formatter.hpp header file ---------------------------//
17025+17002+
@@ -17118,7 +17095,7 @@
17118Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/formatter_regex.hpp17095Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/formatter_regex.hpp
17119===================================================================17096===================================================================
17120--- /dev/null 1970-01-01 00:00:00.000000000 +000017097--- /dev/null 1970-01-01 00:00:00.000000000 +0000
17121+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/formatter_regex.hpp 2009-10-21 20:44:48.000000000 +100017098+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/formatter_regex.hpp 2009-10-23 10:28:03.000000000 -0700
17122@@ -0,0 +1,61 @@17099@@ -0,0 +1,61 @@
17123+// Boost string_algo library formatter_regex.hpp header file ---------------------------//17100+// Boost string_algo library formatter_regex.hpp header file ---------------------------//
17124+17101+
@@ -17184,7 +17161,7 @@
17184Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/predicate.hpp17161Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/predicate.hpp
17185===================================================================17162===================================================================
17186--- /dev/null 1970-01-01 00:00:00.000000000 +000017163--- /dev/null 1970-01-01 00:00:00.000000000 +0000
17187+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/predicate.hpp 2009-10-21 20:44:48.000000000 +100017164+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/predicate.hpp 2009-10-23 10:28:03.000000000 -0700
17188@@ -0,0 +1,77 @@17165@@ -0,0 +1,77 @@
17189+// Boost string_algo library predicate.hpp header file ---------------------------//17166+// Boost string_algo library predicate.hpp header file ---------------------------//
17190+17167+
@@ -17266,7 +17243,7 @@
17266Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/replace_storage.hpp17243Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/replace_storage.hpp
17267===================================================================17244===================================================================
17268--- /dev/null 1970-01-01 00:00:00.000000000 +000017245--- /dev/null 1970-01-01 00:00:00.000000000 +0000
17269+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/replace_storage.hpp 2009-10-21 20:44:48.000000000 +100017246+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/replace_storage.hpp 2009-10-23 10:28:03.000000000 -0700
17270@@ -0,0 +1,159 @@17247@@ -0,0 +1,159 @@
17271+// Boost string_algo library replace_storage.hpp header file ---------------------------//17248+// Boost string_algo library replace_storage.hpp header file ---------------------------//
17272+17249+
@@ -17430,7 +17407,7 @@
17430Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/sequence.hpp17407Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/sequence.hpp
17431===================================================================17408===================================================================
17432--- /dev/null 1970-01-01 00:00:00.000000000 +000017409--- /dev/null 1970-01-01 00:00:00.000000000 +0000
17433+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/sequence.hpp 2009-10-21 20:44:48.000000000 +100017410+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/sequence.hpp 2009-10-23 10:28:03.000000000 -0700
17434@@ -0,0 +1,200 @@17411@@ -0,0 +1,200 @@
17435+// Boost string_algo library sequence.hpp header file ---------------------------//17412+// Boost string_algo library sequence.hpp header file ---------------------------//
17436+17413+
@@ -17635,7 +17612,7 @@
17635Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/trim.hpp17612Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/trim.hpp
17636===================================================================17613===================================================================
17637--- /dev/null 1970-01-01 00:00:00.000000000 +000017614--- /dev/null 1970-01-01 00:00:00.000000000 +0000
17638+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/trim.hpp 2009-10-21 20:44:48.000000000 +100017615+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/trim.hpp 2009-10-23 10:28:03.000000000 -0700
17639@@ -0,0 +1,95 @@17616@@ -0,0 +1,95 @@
17640+// Boost string_algo library trim.hpp header file ---------------------------//17617+// Boost string_algo library trim.hpp header file ---------------------------//
17641+17618+
@@ -17735,7 +17712,7 @@
17735Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/util.hpp17712Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/util.hpp
17736===================================================================17713===================================================================
17737--- /dev/null 1970-01-01 00:00:00.000000000 +000017714--- /dev/null 1970-01-01 00:00:00.000000000 +0000
17738+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/util.hpp 2009-10-21 20:44:48.000000000 +100017715+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/detail/util.hpp 2009-10-23 10:28:03.000000000 -0700
17739@@ -0,0 +1,106 @@17716@@ -0,0 +1,106 @@
17740+// Boost string_algo library util.hpp header file ---------------------------//17717+// Boost string_algo library util.hpp header file ---------------------------//
17741+17718+
@@ -17846,7 +17823,7 @@
17846Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/erase.hpp17823Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/erase.hpp
17847===================================================================17824===================================================================
17848--- /dev/null 1970-01-01 00:00:00.000000000 +000017825--- /dev/null 1970-01-01 00:00:00.000000000 +0000
17849+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/erase.hpp 2009-10-21 20:44:48.000000000 +100017826+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/erase.hpp 2009-10-23 10:28:03.000000000 -0700
17850@@ -0,0 +1,844 @@17827@@ -0,0 +1,844 @@
17851+// Boost string_algo library erase.hpp header file ---------------------------//17828+// Boost string_algo library erase.hpp header file ---------------------------//
17852+17829+
@@ -18695,7 +18672,7 @@
18695Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/find.hpp18672Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/find.hpp
18696===================================================================18673===================================================================
18697--- /dev/null 1970-01-01 00:00:00.000000000 +000018674--- /dev/null 1970-01-01 00:00:00.000000000 +0000
18698+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/find.hpp 2009-10-21 20:44:48.000000000 +100018675+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/find.hpp 2009-10-23 10:28:03.000000000 -0700
18699@@ -0,0 +1,334 @@18676@@ -0,0 +1,334 @@
18700+// Boost string_algo library find.hpp header file ---------------------------//18677+// Boost string_algo library find.hpp header file ---------------------------//
18701+18678+
@@ -19034,7 +19011,7 @@
19034Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/find_format.hpp19011Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/find_format.hpp
19035===================================================================19012===================================================================
19036--- /dev/null 1970-01-01 00:00:00.000000000 +000019013--- /dev/null 1970-01-01 00:00:00.000000000 +0000
19037+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/find_format.hpp 2009-10-21 20:44:48.000000000 +100019014+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/find_format.hpp 2009-10-23 10:28:03.000000000 -0700
19038@@ -0,0 +1,269 @@19015@@ -0,0 +1,269 @@
19039+// Boost string_algo library find_format.hpp header file ---------------------------//19016+// Boost string_algo library find_format.hpp header file ---------------------------//
19040+19017+
@@ -19308,7 +19285,7 @@
19308Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/find_iterator.hpp19285Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/find_iterator.hpp
19309===================================================================19286===================================================================
19310--- /dev/null 1970-01-01 00:00:00.000000000 +000019287--- /dev/null 1970-01-01 00:00:00.000000000 +0000
19311+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/find_iterator.hpp 2009-10-21 20:44:48.000000000 +100019288+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/find_iterator.hpp 2009-10-23 10:28:03.000000000 -0700
19312@@ -0,0 +1,375 @@19289@@ -0,0 +1,375 @@
19313+// Boost string_algo library find_iterator.hpp header file ---------------------------//19290+// Boost string_algo library find_iterator.hpp header file ---------------------------//
19314+19291+
@@ -19688,7 +19665,7 @@
19688Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/finder.hpp19665Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/finder.hpp
19689===================================================================19666===================================================================
19690--- /dev/null 1970-01-01 00:00:00.000000000 +000019667--- /dev/null 1970-01-01 00:00:00.000000000 +0000
19691+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/finder.hpp 2009-10-21 20:44:48.000000000 +100019668+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/finder.hpp 2009-10-23 10:28:03.000000000 -0700
19692@@ -0,0 +1,270 @@19669@@ -0,0 +1,270 @@
19693+// Boost string_algo library finder.hpp header file ---------------------------//19670+// Boost string_algo library finder.hpp header file ---------------------------//
19694+19671+
@@ -19963,7 +19940,7 @@
19963Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/formatter.hpp19940Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/formatter.hpp
19964===================================================================19941===================================================================
19965--- /dev/null 1970-01-01 00:00:00.000000000 +000019942--- /dev/null 1970-01-01 00:00:00.000000000 +0000
19966+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/formatter.hpp 2009-10-21 20:44:48.000000000 +100019943+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/formatter.hpp 2009-10-23 10:28:03.000000000 -0700
19967@@ -0,0 +1,103 @@19944@@ -0,0 +1,103 @@
19968+// Boost string_algo library formatter.hpp header file ---------------------------//19945+// Boost string_algo library formatter.hpp header file ---------------------------//
19969+19946+
@@ -20071,7 +20048,7 @@
20071Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/iter_find.hpp20048Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/iter_find.hpp
20072===================================================================20049===================================================================
20073--- /dev/null 1970-01-01 00:00:00.000000000 +000020050--- /dev/null 1970-01-01 00:00:00.000000000 +0000
20074+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/iter_find.hpp 2009-10-21 20:44:48.000000000 +100020051+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/iter_find.hpp 2009-10-23 10:28:03.000000000 -0700
20075@@ -0,0 +1,190 @@20052@@ -0,0 +1,190 @@
20076+// Boost string_algo library iter_find.hpp header file ---------------------------//20053+// Boost string_algo library iter_find.hpp header file ---------------------------//
20077+20054+
@@ -20266,7 +20243,7 @@
20266Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/join.hpp20243Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/join.hpp
20267===================================================================20244===================================================================
20268--- /dev/null 1970-01-01 00:00:00.000000000 +000020245--- /dev/null 1970-01-01 00:00:00.000000000 +0000
20269+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/join.hpp 2009-10-21 20:44:48.000000000 +100020246+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/join.hpp 2009-10-23 10:28:03.000000000 -0700
20270@@ -0,0 +1,145 @@20247@@ -0,0 +1,145 @@
20271+// Boost string_algo library join.hpp header file ---------------------------//20248+// Boost string_algo library join.hpp header file ---------------------------//
20272+20249+
@@ -20416,7 +20393,7 @@
20416Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/predicate.hpp20393Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/predicate.hpp
20417===================================================================20394===================================================================
20418--- /dev/null 1970-01-01 00:00:00.000000000 +000020395--- /dev/null 1970-01-01 00:00:00.000000000 +0000
20419+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/predicate.hpp 2009-10-21 20:44:48.000000000 +100020396+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/predicate.hpp 2009-10-23 10:28:03.000000000 -0700
20420@@ -0,0 +1,475 @@20397@@ -0,0 +1,475 @@
20421+// Boost string_algo library predicate.hpp header file ---------------------------//20398+// Boost string_algo library predicate.hpp header file ---------------------------//
20422+20399+
@@ -20896,7 +20873,7 @@
20896Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/predicate_facade.hpp20873Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/predicate_facade.hpp
20897===================================================================20874===================================================================
20898--- /dev/null 1970-01-01 00:00:00.000000000 +000020875--- /dev/null 1970-01-01 00:00:00.000000000 +0000
20899+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/predicate_facade.hpp 2009-10-21 20:44:48.000000000 +100020876+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/predicate_facade.hpp 2009-10-23 10:28:03.000000000 -0700
20900@@ -0,0 +1,42 @@20877@@ -0,0 +1,42 @@
20901+// Boost string_algo library predicate_facade.hpp header file ---------------------------//20878+// Boost string_algo library predicate_facade.hpp header file ---------------------------//
20902+20879+
@@ -20943,7 +20920,7 @@
20943Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/regex.hpp20920Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/regex.hpp
20944===================================================================20921===================================================================
20945--- /dev/null 1970-01-01 00:00:00.000000000 +000020922--- /dev/null 1970-01-01 00:00:00.000000000 +0000
20946+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/regex.hpp 2009-10-21 20:44:48.000000000 +100020923+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/regex.hpp 2009-10-23 10:28:03.000000000 -0700
20947@@ -0,0 +1,646 @@20924@@ -0,0 +1,646 @@
20948+// Boost string_algo library regex.hpp header file ---------------------------//20925+// Boost string_algo library regex.hpp header file ---------------------------//
20949+20926+
@@ -21594,7 +21571,7 @@
21594Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/regex_find_format.hpp21571Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/regex_find_format.hpp
21595===================================================================21572===================================================================
21596--- /dev/null 1970-01-01 00:00:00.000000000 +000021573--- /dev/null 1970-01-01 00:00:00.000000000 +0000
21597+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/regex_find_format.hpp 2009-10-21 20:44:48.000000000 +100021574+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/regex_find_format.hpp 2009-10-23 10:28:03.000000000 -0700
21598@@ -0,0 +1,90 @@21575@@ -0,0 +1,90 @@
21599+// Boost string_algo library regex_find_format.hpp header file ---------------------------//21576+// Boost string_algo library regex_find_format.hpp header file ---------------------------//
21600+21577+
@@ -21689,7 +21666,7 @@
21689Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/replace.hpp21666Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/replace.hpp
21690===================================================================21667===================================================================
21691--- /dev/null 1970-01-01 00:00:00.000000000 +000021668--- /dev/null 1970-01-01 00:00:00.000000000 +0000
21692+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/replace.hpp 2009-10-21 20:44:48.000000000 +100021669+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/replace.hpp 2009-10-23 10:28:03.000000000 -0700
21693@@ -0,0 +1,928 @@21670@@ -0,0 +1,928 @@
21694+// Boost string_algo library replace.hpp header file ---------------------------//21671+// Boost string_algo library replace.hpp header file ---------------------------//
21695+21672+
@@ -22622,7 +22599,7 @@
22622Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/sequence_traits.hpp22599Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/sequence_traits.hpp
22623===================================================================22600===================================================================
22624--- /dev/null 1970-01-01 00:00:00.000000000 +000022601--- /dev/null 1970-01-01 00:00:00.000000000 +0000
22625+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/sequence_traits.hpp 2009-10-21 20:44:48.000000000 +100022602+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/sequence_traits.hpp 2009-10-23 10:28:03.000000000 -0700
22626@@ -0,0 +1,193 @@22603@@ -0,0 +1,193 @@
22627+// Boost string_algo library sequence_traits.hpp header file ---------------------------//22604+// Boost string_algo library sequence_traits.hpp header file ---------------------------//
22628+22605+
@@ -22820,7 +22797,7 @@
22820Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/split.hpp22797Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/split.hpp
22821===================================================================22798===================================================================
22822--- /dev/null 1970-01-01 00:00:00.000000000 +000022799--- /dev/null 1970-01-01 00:00:00.000000000 +0000
22823+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/split.hpp 2009-10-21 20:44:48.000000000 +100022800+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/split.hpp 2009-10-23 10:28:03.000000000 -0700
22824@@ -0,0 +1,163 @@22801@@ -0,0 +1,163 @@
22825+// Boost string_algo library split.hpp header file ---------------------------//22802+// Boost string_algo library split.hpp header file ---------------------------//
22826+22803+
@@ -22988,7 +22965,7 @@
22988Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/std/list_traits.hpp22965Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/std/list_traits.hpp
22989===================================================================22966===================================================================
22990--- /dev/null 1970-01-01 00:00:00.000000000 +000022967--- /dev/null 1970-01-01 00:00:00.000000000 +0000
22991+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/std/list_traits.hpp 2009-10-21 20:44:48.000000000 +100022968+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/std/list_traits.hpp 2009-10-23 10:28:03.000000000 -0700
22992@@ -0,0 +1,85 @@22969@@ -0,0 +1,85 @@
22993+// Boost string_algo library list_traits.hpp header file ---------------------------//22970+// Boost string_algo library list_traits.hpp header file ---------------------------//
22994+22971+
@@ -23078,7 +23055,7 @@
23078Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/std/rope_traits.hpp23055Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/std/rope_traits.hpp
23079===================================================================23056===================================================================
23080--- /dev/null 1970-01-01 00:00:00.000000000 +000023057--- /dev/null 1970-01-01 00:00:00.000000000 +0000
23081+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/std/rope_traits.hpp 2009-10-21 20:44:48.000000000 +100023058+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/std/rope_traits.hpp 2009-10-23 10:28:03.000000000 -0700
23082@@ -0,0 +1,101 @@23059@@ -0,0 +1,101 @@
23083+// Boost string_algo library string_traits.hpp header file ---------------------------//23060+// Boost string_algo library string_traits.hpp header file ---------------------------//
23084+23061+
@@ -23184,7 +23161,7 @@
23184Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/std/slist_traits.hpp23161Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/std/slist_traits.hpp
23185===================================================================23162===================================================================
23186--- /dev/null 1970-01-01 00:00:00.000000000 +000023163--- /dev/null 1970-01-01 00:00:00.000000000 +0000
23187+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/std/slist_traits.hpp 2009-10-21 20:44:48.000000000 +100023164+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/std/slist_traits.hpp 2009-10-23 10:28:03.000000000 -0700
23188@@ -0,0 +1,85 @@23165@@ -0,0 +1,85 @@
23189+// Boost string_algo library slist_traits.hpp header file ---------------------------//23166+// Boost string_algo library slist_traits.hpp header file ---------------------------//
23190+23167+
@@ -23274,7 +23251,7 @@
23274Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/std/string_traits.hpp23251Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/std/string_traits.hpp
23275===================================================================23252===================================================================
23276--- /dev/null 1970-01-01 00:00:00.000000000 +000023253--- /dev/null 1970-01-01 00:00:00.000000000 +0000
23277+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/std/string_traits.hpp 2009-10-21 20:44:48.000000000 +100023254+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/std/string_traits.hpp 2009-10-23 10:28:03.000000000 -0700
23278@@ -0,0 +1,52 @@23255@@ -0,0 +1,52 @@
23279+// Boost string_algo library string_traits.hpp header file ---------------------------//23256+// Boost string_algo library string_traits.hpp header file ---------------------------//
23280+23257+
@@ -23331,7 +23308,7 @@
23331Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/std_containers_traits.hpp23308Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/std_containers_traits.hpp
23332===================================================================23309===================================================================
23333--- /dev/null 1970-01-01 00:00:00.000000000 +000023310--- /dev/null 1970-01-01 00:00:00.000000000 +0000
23334+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/std_containers_traits.hpp 2009-10-21 20:44:48.000000000 +100023311+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/std_containers_traits.hpp 2009-10-23 10:28:03.000000000 -0700
23335@@ -0,0 +1,26 @@23312@@ -0,0 +1,26 @@
23336+// Boost string_algo library std_containers_traits.hpp header file ---------------------------//23313+// Boost string_algo library std_containers_traits.hpp header file ---------------------------//
23337+23314+
@@ -23362,7 +23339,7 @@
23362Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/trim.hpp23339Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/trim.hpp
23363===================================================================23340===================================================================
23364--- /dev/null 1970-01-01 00:00:00.000000000 +000023341--- /dev/null 1970-01-01 00:00:00.000000000 +0000
23365+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/trim.hpp 2009-10-21 20:44:48.000000000 +100023342+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/trim.hpp 2009-10-23 10:28:03.000000000 -0700
23366@@ -0,0 +1,398 @@23343@@ -0,0 +1,398 @@
23367+// Boost string_algo library trim.hpp header file ---------------------------//23344+// Boost string_algo library trim.hpp header file ---------------------------//
23368+23345+
@@ -23765,7 +23742,7 @@
23765Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/yes_no_type.hpp23742Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string/yes_no_type.hpp
23766===================================================================23743===================================================================
23767--- /dev/null 1970-01-01 00:00:00.000000000 +000023744--- /dev/null 1970-01-01 00:00:00.000000000 +0000
23768+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/yes_no_type.hpp 2009-10-21 20:44:48.000000000 +100023745+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string/yes_no_type.hpp 2009-10-23 10:28:03.000000000 -0700
23769@@ -0,0 +1,33 @@23746@@ -0,0 +1,33 @@
23770+// Boost string_algo library yes_no_type.hpp header file ---------------------------//23747+// Boost string_algo library yes_no_type.hpp header file ---------------------------//
23771+23748+
@@ -23803,7 +23780,7 @@
23803Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string_regex.hpp23780Index: mysql-5.0.86/sql/oqgraph/boost/algorithm/string_regex.hpp
23804===================================================================23781===================================================================
23805--- /dev/null 1970-01-01 00:00:00.000000000 +000023782--- /dev/null 1970-01-01 00:00:00.000000000 +0000
23806+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string_regex.hpp 2009-10-21 20:44:48.000000000 +100023783+++ mysql-5.0.86/sql/oqgraph/boost/algorithm/string_regex.hpp 2009-10-23 10:28:03.000000000 -0700
23807@@ -0,0 +1,23 @@23784@@ -0,0 +1,23 @@
23808+// Boost string_algo library string_regex.hpp header file ---------------------------//23785+// Boost string_algo library string_regex.hpp header file ---------------------------//
23809+23786+
@@ -23831,7 +23808,7 @@
23831Index: mysql-5.0.86/sql/oqgraph/boost/aligned_storage.hpp23808Index: mysql-5.0.86/sql/oqgraph/boost/aligned_storage.hpp
23832===================================================================23809===================================================================
23833--- /dev/null 1970-01-01 00:00:00.000000000 +000023810--- /dev/null 1970-01-01 00:00:00.000000000 +0000
23834+++ mysql-5.0.86/sql/oqgraph/boost/aligned_storage.hpp 2009-10-21 20:44:48.000000000 +100023811+++ mysql-5.0.86/sql/oqgraph/boost/aligned_storage.hpp 2009-10-23 10:28:03.000000000 -0700
23835@@ -0,0 +1,170 @@23812@@ -0,0 +1,170 @@
23836+//-----------------------------------------------------------------------------23813+//-----------------------------------------------------------------------------
23837+// boost aligned_storage.hpp header file23814+// boost aligned_storage.hpp header file
@@ -24006,7 +23983,7 @@
24006Index: mysql-5.0.86/sql/oqgraph/boost/any.hpp23983Index: mysql-5.0.86/sql/oqgraph/boost/any.hpp
24007===================================================================23984===================================================================
24008--- /dev/null 1970-01-01 00:00:00.000000000 +000023985--- /dev/null 1970-01-01 00:00:00.000000000 +0000
24009+++ mysql-5.0.86/sql/oqgraph/boost/any.hpp 2009-10-21 20:44:48.000000000 +100023986+++ mysql-5.0.86/sql/oqgraph/boost/any.hpp 2009-10-23 10:28:03.000000000 -0700
24010@@ -0,0 +1,237 @@23987@@ -0,0 +1,237 @@
24011+// See http://www.boost.org/libs/any for Documentation.23988+// See http://www.boost.org/libs/any for Documentation.
24012+23989+
@@ -24248,7 +24225,7 @@
24248Index: mysql-5.0.86/sql/oqgraph/boost/archive/add_facet.hpp24225Index: mysql-5.0.86/sql/oqgraph/boost/archive/add_facet.hpp
24249===================================================================24226===================================================================
24250--- /dev/null 1970-01-01 00:00:00.000000000 +000024227--- /dev/null 1970-01-01 00:00:00.000000000 +0000
24251+++ mysql-5.0.86/sql/oqgraph/boost/archive/add_facet.hpp 2009-10-21 20:44:48.000000000 +100024228+++ mysql-5.0.86/sql/oqgraph/boost/archive/add_facet.hpp 2009-10-23 10:28:03.000000000 -0700
24252@@ -0,0 +1,55 @@24229@@ -0,0 +1,55 @@
24253+#ifndef BOOST_ARCHIVE_ADD_FACET_HPP24230+#ifndef BOOST_ARCHIVE_ADD_FACET_HPP
24254+#define BOOST_ARCHIVE_ADD_FACET_HPP24231+#define BOOST_ARCHIVE_ADD_FACET_HPP
@@ -24308,7 +24285,7 @@
24308Index: mysql-5.0.86/sql/oqgraph/boost/archive/archive_exception.hpp24285Index: mysql-5.0.86/sql/oqgraph/boost/archive/archive_exception.hpp
24309===================================================================24286===================================================================
24310--- /dev/null 1970-01-01 00:00:00.000000000 +000024287--- /dev/null 1970-01-01 00:00:00.000000000 +0000
24311+++ mysql-5.0.86/sql/oqgraph/boost/archive/archive_exception.hpp 2009-10-21 20:44:48.000000000 +100024288+++ mysql-5.0.86/sql/oqgraph/boost/archive/archive_exception.hpp 2009-10-23 10:28:03.000000000 -0700
24312@@ -0,0 +1,121 @@24289@@ -0,0 +1,121 @@
24313+#ifndef BOOST_ARCHIVE_ARCHIVE_EXCEPTION_HPP24290+#ifndef BOOST_ARCHIVE_ARCHIVE_EXCEPTION_HPP
24314+#define BOOST_ARCHIVE_ARCHIVE_EXCEPTION_HPP24291+#define BOOST_ARCHIVE_ARCHIVE_EXCEPTION_HPP
@@ -24434,7 +24411,7 @@
24434Index: mysql-5.0.86/sql/oqgraph/boost/archive/basic_archive.hpp24411Index: mysql-5.0.86/sql/oqgraph/boost/archive/basic_archive.hpp
24435===================================================================24412===================================================================
24436--- /dev/null 1970-01-01 00:00:00.000000000 +000024413--- /dev/null 1970-01-01 00:00:00.000000000 +0000
24437+++ mysql-5.0.86/sql/oqgraph/boost/archive/basic_archive.hpp 2009-10-21 20:44:48.000000000 +100024414+++ mysql-5.0.86/sql/oqgraph/boost/archive/basic_archive.hpp 2009-10-23 10:28:03.000000000 -0700
24438@@ -0,0 +1,120 @@24415@@ -0,0 +1,120 @@
24439+#ifndef BOOST_ARCHIVE_BASIC_ARCHIVE_HPP24416+#ifndef BOOST_ARCHIVE_BASIC_ARCHIVE_HPP
24440+#define BOOST_ARCHIVE_BASIC_ARCHIVE_HPP24417+#define BOOST_ARCHIVE_BASIC_ARCHIVE_HPP
@@ -24559,7 +24536,7 @@
24559Index: mysql-5.0.86/sql/oqgraph/boost/archive/basic_binary_iarchive.hpp24536Index: mysql-5.0.86/sql/oqgraph/boost/archive/basic_binary_iarchive.hpp
24560===================================================================24537===================================================================
24561--- /dev/null 1970-01-01 00:00:00.000000000 +000024538--- /dev/null 1970-01-01 00:00:00.000000000 +0000
24562+++ mysql-5.0.86/sql/oqgraph/boost/archive/basic_binary_iarchive.hpp 2009-10-21 20:44:48.000000000 +100024539+++ mysql-5.0.86/sql/oqgraph/boost/archive/basic_binary_iarchive.hpp 2009-10-23 10:28:03.000000000 -0700
24563@@ -0,0 +1,125 @@24540@@ -0,0 +1,125 @@
24564+#ifndef BOOST_ARCHIVE_BASIC_BINARY_IARCHIVE_HPP24541+#ifndef BOOST_ARCHIVE_BASIC_BINARY_IARCHIVE_HPP
24565+#define BOOST_ARCHIVE_BASIC_BINARY_IARCHIVE_HPP24542+#define BOOST_ARCHIVE_BASIC_BINARY_IARCHIVE_HPP
@@ -24689,7 +24666,7 @@
24689Index: mysql-5.0.86/sql/oqgraph/boost/archive/basic_binary_iprimitive.hpp24666Index: mysql-5.0.86/sql/oqgraph/boost/archive/basic_binary_iprimitive.hpp
24690===================================================================24667===================================================================
24691--- /dev/null 1970-01-01 00:00:00.000000000 +000024668--- /dev/null 1970-01-01 00:00:00.000000000 +0000
24692+++ mysql-5.0.86/sql/oqgraph/boost/archive/basic_binary_iprimitive.hpp 2009-10-21 20:44:48.000000000 +100024669+++ mysql-5.0.86/sql/oqgraph/boost/archive/basic_binary_iprimitive.hpp 2009-10-23 10:28:03.000000000 -0700
24693@@ -0,0 +1,185 @@24670@@ -0,0 +1,185 @@
24694+#ifndef BOOST_ARCHIVE_BINARY_IPRIMITIVE_HPP24671+#ifndef BOOST_ARCHIVE_BINARY_IPRIMITIVE_HPP
24695+#define BOOST_ARCHIVE_BINARY_IPRIMITIVE_HPP24672+#define BOOST_ARCHIVE_BINARY_IPRIMITIVE_HPP
@@ -24879,7 +24856,7 @@
24879Index: mysql-5.0.86/sql/oqgraph/boost/archive/basic_binary_oarchive.hpp24856Index: mysql-5.0.86/sql/oqgraph/boost/archive/basic_binary_oarchive.hpp
24880===================================================================24857===================================================================
24881--- /dev/null 1970-01-01 00:00:00.000000000 +000024858--- /dev/null 1970-01-01 00:00:00.000000000 +0000
24882+++ mysql-5.0.86/sql/oqgraph/boost/archive/basic_binary_oarchive.hpp 2009-10-21 20:44:48.000000000 +100024859+++ mysql-5.0.86/sql/oqgraph/boost/archive/basic_binary_oarchive.hpp 2009-10-23 10:28:03.000000000 -0700
24883@@ -0,0 +1,123 @@24860@@ -0,0 +1,123 @@
24884+#ifndef BOOST_ARCHIVE_BASIC_BINARY_OARCHIVE_HPP24861+#ifndef BOOST_ARCHIVE_BASIC_BINARY_OARCHIVE_HPP
24885+#define BOOST_ARCHIVE_BASIC_BINARY_OARCHIVE_HPP24862+#define BOOST_ARCHIVE_BASIC_BINARY_OARCHIVE_HPP
@@ -25007,7 +24984,7 @@
25007Index: mysql-5.0.86/sql/oqgraph/boost/archive/basic_binary_oprimitive.hpp24984Index: mysql-5.0.86/sql/oqgraph/boost/archive/basic_binary_oprimitive.hpp
25008===================================================================24985===================================================================
25009--- /dev/null 1970-01-01 00:00:00.000000000 +000024986--- /dev/null 1970-01-01 00:00:00.000000000 +0000
25010+++ mysql-5.0.86/sql/oqgraph/boost/archive/basic_binary_oprimitive.hpp 2009-10-21 20:44:48.000000000 +100024987+++ mysql-5.0.86/sql/oqgraph/boost/archive/basic_binary_oprimitive.hpp 2009-10-23 10:28:03.000000000 -0700
25011@@ -0,0 +1,183 @@24988@@ -0,0 +1,183 @@
25012+#ifndef BOOST_ARCHIVE_BASIC_BINARY_OPRIMITIVE_HPP24989+#ifndef BOOST_ARCHIVE_BASIC_BINARY_OPRIMITIVE_HPP
25013+#define BOOST_ARCHIVE_BASIC_BINARY_OPRIMITIVE_HPP24990+#define BOOST_ARCHIVE_BASIC_BINARY_OPRIMITIVE_HPP
@@ -25195,7 +25172,7 @@
25195Index: mysql-5.0.86/sql/oqgraph/boost/archive/basic_streambuf_locale_saver.hpp25172Index: mysql-5.0.86/sql/oqgraph/boost/archive/basic_streambuf_locale_saver.hpp
25196===================================================================25173===================================================================
25197--- /dev/null 1970-01-01 00:00:00.000000000 +000025174--- /dev/null 1970-01-01 00:00:00.000000000 +0000
25198+++ mysql-5.0.86/sql/oqgraph/boost/archive/basic_streambuf_locale_saver.hpp 2009-10-21 20:44:48.000000000 +100025175+++ mysql-5.0.86/sql/oqgraph/boost/archive/basic_streambuf_locale_saver.hpp 2009-10-23 10:28:03.000000000 -0700
25199@@ -0,0 +1,60 @@25176@@ -0,0 +1,60 @@
25200+#ifndef BOOST_ARCHIVE_BASIC_STREAMBUF_LOCALE_SAVER_HPP25177+#ifndef BOOST_ARCHIVE_BASIC_STREAMBUF_LOCALE_SAVER_HPP
25201+#define BOOST_ARCHIVE_BASIC_STREAMBUF_LOCALE_SAVER_HPP25178+#define BOOST_ARCHIVE_BASIC_STREAMBUF_LOCALE_SAVER_HPP
@@ -25260,7 +25237,7 @@
25260Index: mysql-5.0.86/sql/oqgraph/boost/archive/basic_text_iarchive.hpp25237Index: mysql-5.0.86/sql/oqgraph/boost/archive/basic_text_iarchive.hpp
25261===================================================================25238===================================================================
25262--- /dev/null 1970-01-01 00:00:00.000000000 +000025239--- /dev/null 1970-01-01 00:00:00.000000000 +0000
25263+++ mysql-5.0.86/sql/oqgraph/boost/archive/basic_text_iarchive.hpp 2009-10-21 20:44:48.000000000 +100025240+++ mysql-5.0.86/sql/oqgraph/boost/archive/basic_text_iarchive.hpp 2009-10-23 10:28:03.000000000 -0700
25264@@ -0,0 +1,84 @@25241@@ -0,0 +1,84 @@
25265+#ifndef BOOST_ARCHIVE_BASIC_TEXT_IARCHIVE_HPP25242+#ifndef BOOST_ARCHIVE_BASIC_TEXT_IARCHIVE_HPP
25266+#define BOOST_ARCHIVE_BASIC_TEXT_IARCHIVE_HPP25243+#define BOOST_ARCHIVE_BASIC_TEXT_IARCHIVE_HPP
@@ -25349,7 +25326,7 @@
25349Index: mysql-5.0.86/sql/oqgraph/boost/archive/basic_text_iprimitive.hpp25326Index: mysql-5.0.86/sql/oqgraph/boost/archive/basic_text_iprimitive.hpp
25350===================================================================25327===================================================================
25351--- /dev/null 1970-01-01 00:00:00.000000000 +000025328--- /dev/null 1970-01-01 00:00:00.000000000 +0000
25352+++ mysql-5.0.86/sql/oqgraph/boost/archive/basic_text_iprimitive.hpp 2009-10-21 20:44:48.000000000 +100025329+++ mysql-5.0.86/sql/oqgraph/boost/archive/basic_text_iprimitive.hpp 2009-10-23 10:28:03.000000000 -0700
25353@@ -0,0 +1,143 @@25330@@ -0,0 +1,143 @@
25354+#ifndef BOOST_ARCHIVE_BASIC_TEXT_IPRIMITIVE_HPP25331+#ifndef BOOST_ARCHIVE_BASIC_TEXT_IPRIMITIVE_HPP
25355+#define BOOST_ARCHIVE_BASIC_TEXT_IPRIMITIVE_HPP25332+#define BOOST_ARCHIVE_BASIC_TEXT_IPRIMITIVE_HPP
@@ -25497,7 +25474,7 @@
25497Index: mysql-5.0.86/sql/oqgraph/boost/archive/basic_text_oarchive.hpp25474Index: mysql-5.0.86/sql/oqgraph/boost/archive/basic_text_oarchive.hpp
25498===================================================================25475===================================================================
25499--- /dev/null 1970-01-01 00:00:00.000000000 +000025476--- /dev/null 1970-01-01 00:00:00.000000000 +0000
25500+++ mysql-5.0.86/sql/oqgraph/boost/archive/basic_text_oarchive.hpp 2009-10-21 20:44:48.000000000 +100025477+++ mysql-5.0.86/sql/oqgraph/boost/archive/basic_text_oarchive.hpp 2009-10-23 10:28:03.000000000 -0700
25501@@ -0,0 +1,134 @@25478@@ -0,0 +1,134 @@
25502+#ifndef BOOST_ARCHIVE_BASIC_TEXT_OARCHIVE_HPP25479+#ifndef BOOST_ARCHIVE_BASIC_TEXT_OARCHIVE_HPP
25503+#define BOOST_ARCHIVE_BASIC_TEXT_OARCHIVE_HPP25480+#define BOOST_ARCHIVE_BASIC_TEXT_OARCHIVE_HPP
@@ -25636,7 +25613,7 @@
25636Index: mysql-5.0.86/sql/oqgraph/boost/archive/basic_text_oprimitive.hpp25613Index: mysql-5.0.86/sql/oqgraph/boost/archive/basic_text_oprimitive.hpp
25637===================================================================25614===================================================================
25638--- /dev/null 1970-01-01 00:00:00.000000000 +000025615--- /dev/null 1970-01-01 00:00:00.000000000 +0000
25639+++ mysql-5.0.86/sql/oqgraph/boost/archive/basic_text_oprimitive.hpp 2009-10-21 20:44:48.000000000 +100025616+++ mysql-5.0.86/sql/oqgraph/boost/archive/basic_text_oprimitive.hpp 2009-10-23 10:28:03.000000000 -0700
25640@@ -0,0 +1,190 @@25617@@ -0,0 +1,190 @@
25641+#ifndef BOOST_ARCHIVE_BASIC_TEXT_OPRIMITIVE_HPP25618+#ifndef BOOST_ARCHIVE_BASIC_TEXT_OPRIMITIVE_HPP
25642+#define BOOST_ARCHIVE_BASIC_TEXT_OPRIMITIVE_HPP25619+#define BOOST_ARCHIVE_BASIC_TEXT_OPRIMITIVE_HPP
@@ -25831,7 +25808,7 @@
25831Index: mysql-5.0.86/sql/oqgraph/boost/archive/basic_xml_archive.hpp25808Index: mysql-5.0.86/sql/oqgraph/boost/archive/basic_xml_archive.hpp
25832===================================================================25809===================================================================
25833--- /dev/null 1970-01-01 00:00:00.000000000 +000025810--- /dev/null 1970-01-01 00:00:00.000000000 +0000
25834+++ mysql-5.0.86/sql/oqgraph/boost/archive/basic_xml_archive.hpp 2009-10-21 20:44:48.000000000 +100025811+++ mysql-5.0.86/sql/oqgraph/boost/archive/basic_xml_archive.hpp 2009-10-23 10:28:03.000000000 -0700
25835@@ -0,0 +1,67 @@25812@@ -0,0 +1,67 @@
25836+#ifndef BOOST_ARCHIVE_BASIC_XML_TEXT_ARCHIVE_HPP25813+#ifndef BOOST_ARCHIVE_BASIC_XML_TEXT_ARCHIVE_HPP
25837+#define BOOST_ARCHIVE_BASIC_XML_TEXT_ARCHIVE_HPP25814+#define BOOST_ARCHIVE_BASIC_XML_TEXT_ARCHIVE_HPP
@@ -25903,7 +25880,7 @@
25903Index: mysql-5.0.86/sql/oqgraph/boost/archive/basic_xml_iarchive.hpp25880Index: mysql-5.0.86/sql/oqgraph/boost/archive/basic_xml_iarchive.hpp
25904===================================================================25881===================================================================
25905--- /dev/null 1970-01-01 00:00:00.000000000 +000025882--- /dev/null 1970-01-01 00:00:00.000000000 +0000
25906+++ mysql-5.0.86/sql/oqgraph/boost/archive/basic_xml_iarchive.hpp 2009-10-21 20:44:48.000000000 +100025883+++ mysql-5.0.86/sql/oqgraph/boost/archive/basic_xml_iarchive.hpp 2009-10-23 10:28:03.000000000 -0700
25907@@ -0,0 +1,118 @@25884@@ -0,0 +1,118 @@
25908+#ifndef BOOST_ARCHIVE_BASIC_XML_IARCHIVE_HPP25885+#ifndef BOOST_ARCHIVE_BASIC_XML_IARCHIVE_HPP
25909+#define BOOST_ARCHIVE_BASIC_XML_IARCHIVE_HPP25886+#define BOOST_ARCHIVE_BASIC_XML_IARCHIVE_HPP
@@ -26026,7 +26003,7 @@
26026Index: mysql-5.0.86/sql/oqgraph/boost/archive/basic_xml_oarchive.hpp26003Index: mysql-5.0.86/sql/oqgraph/boost/archive/basic_xml_oarchive.hpp
26027===================================================================26004===================================================================
26028--- /dev/null 1970-01-01 00:00:00.000000000 +000026005--- /dev/null 1970-01-01 00:00:00.000000000 +0000
26029+++ mysql-5.0.86/sql/oqgraph/boost/archive/basic_xml_oarchive.hpp 2009-10-21 20:44:48.000000000 +100026006+++ mysql-5.0.86/sql/oqgraph/boost/archive/basic_xml_oarchive.hpp 2009-10-23 10:28:03.000000000 -0700
26030@@ -0,0 +1,136 @@26007@@ -0,0 +1,136 @@
26031+#ifndef BOOST_ARCHIVE_BASIC_XML_OARCHIVE_HPP26008+#ifndef BOOST_ARCHIVE_BASIC_XML_OARCHIVE_HPP
26032+#define BOOST_ARCHIVE_BASIC_XML_OARCHIVE_HPP26009+#define BOOST_ARCHIVE_BASIC_XML_OARCHIVE_HPP
@@ -26167,7 +26144,7 @@
26167Index: mysql-5.0.86/sql/oqgraph/boost/archive/binary_iarchive.hpp26144Index: mysql-5.0.86/sql/oqgraph/boost/archive/binary_iarchive.hpp
26168===================================================================26145===================================================================
26169--- /dev/null 1970-01-01 00:00:00.000000000 +000026146--- /dev/null 1970-01-01 00:00:00.000000000 +0000
26170+++ mysql-5.0.86/sql/oqgraph/boost/archive/binary_iarchive.hpp 2009-10-21 20:44:48.000000000 +100026147+++ mysql-5.0.86/sql/oqgraph/boost/archive/binary_iarchive.hpp 2009-10-23 10:28:03.000000000 -0700
26171@@ -0,0 +1,93 @@26148@@ -0,0 +1,93 @@
26172+#ifndef BOOST_ARCHIVE_BINARY_IARCHIVE_HPP26149+#ifndef BOOST_ARCHIVE_BINARY_IARCHIVE_HPP
26173+#define BOOST_ARCHIVE_BINARY_IARCHIVE_HPP26150+#define BOOST_ARCHIVE_BINARY_IARCHIVE_HPP
@@ -26265,7 +26242,7 @@
26265Index: mysql-5.0.86/sql/oqgraph/boost/archive/binary_iarchive_impl.hpp26242Index: mysql-5.0.86/sql/oqgraph/boost/archive/binary_iarchive_impl.hpp
26266===================================================================26243===================================================================
26267--- /dev/null 1970-01-01 00:00:00.000000000 +000026244--- /dev/null 1970-01-01 00:00:00.000000000 +0000
26268+++ mysql-5.0.86/sql/oqgraph/boost/archive/binary_iarchive_impl.hpp 2009-10-21 20:44:48.000000000 +100026245+++ mysql-5.0.86/sql/oqgraph/boost/archive/binary_iarchive_impl.hpp 2009-10-23 10:28:03.000000000 -0700
26269@@ -0,0 +1,87 @@26246@@ -0,0 +1,87 @@
26270+#ifndef BOOST_ARCHIVE_BINARY_IARCHIVE_IMPL_HPP26247+#ifndef BOOST_ARCHIVE_BINARY_IARCHIVE_IMPL_HPP
26271+#define BOOST_ARCHIVE_BINARY_IARCHIVE_IMPL_HPP26248+#define BOOST_ARCHIVE_BINARY_IARCHIVE_IMPL_HPP
@@ -26357,7 +26334,7 @@
26357Index: mysql-5.0.86/sql/oqgraph/boost/archive/binary_oarchive.hpp26334Index: mysql-5.0.86/sql/oqgraph/boost/archive/binary_oarchive.hpp
26358===================================================================26335===================================================================
26359--- /dev/null 1970-01-01 00:00:00.000000000 +000026336--- /dev/null 1970-01-01 00:00:00.000000000 +0000
26360+++ mysql-5.0.86/sql/oqgraph/boost/archive/binary_oarchive.hpp 2009-10-21 20:44:48.000000000 +100026337+++ mysql-5.0.86/sql/oqgraph/boost/archive/binary_oarchive.hpp 2009-10-23 10:28:03.000000000 -0700
26361@@ -0,0 +1,55 @@26338@@ -0,0 +1,55 @@
26362+#ifndef BOOST_ARCHIVE_BINARY_OARCHIVE_HPP26339+#ifndef BOOST_ARCHIVE_BINARY_OARCHIVE_HPP
26363+#define BOOST_ARCHIVE_BINARY_OARCHIVE_HPP26340+#define BOOST_ARCHIVE_BINARY_OARCHIVE_HPP
@@ -26417,7 +26394,7 @@
26417Index: mysql-5.0.86/sql/oqgraph/boost/archive/binary_oarchive_impl.hpp26394Index: mysql-5.0.86/sql/oqgraph/boost/archive/binary_oarchive_impl.hpp
26418===================================================================26395===================================================================
26419--- /dev/null 1970-01-01 00:00:00.000000000 +000026396--- /dev/null 1970-01-01 00:00:00.000000000 +0000
26420+++ mysql-5.0.86/sql/oqgraph/boost/archive/binary_oarchive_impl.hpp 2009-10-21 20:44:48.000000000 +100026397+++ mysql-5.0.86/sql/oqgraph/boost/archive/binary_oarchive_impl.hpp 2009-10-23 10:28:03.000000000 -0700
26421@@ -0,0 +1,87 @@26398@@ -0,0 +1,87 @@
26422+#ifndef BOOST_ARCHIVE_BINARY_OARCHIVE_IMPL_HPP26399+#ifndef BOOST_ARCHIVE_BINARY_OARCHIVE_IMPL_HPP
26423+#define BOOST_ARCHIVE_BINARY_OARCHIVE_IMPL_HPP26400+#define BOOST_ARCHIVE_BINARY_OARCHIVE_IMPL_HPP
@@ -26509,7 +26486,7 @@
26509Index: mysql-5.0.86/sql/oqgraph/boost/archive/binary_wiarchive.hpp26486Index: mysql-5.0.86/sql/oqgraph/boost/archive/binary_wiarchive.hpp
26510===================================================================26487===================================================================
26511--- /dev/null 1970-01-01 00:00:00.000000000 +000026488--- /dev/null 1970-01-01 00:00:00.000000000 +0000
26512+++ mysql-5.0.86/sql/oqgraph/boost/archive/binary_wiarchive.hpp 2009-10-21 20:44:48.000000000 +100026489+++ mysql-5.0.86/sql/oqgraph/boost/archive/binary_wiarchive.hpp 2009-10-23 10:28:03.000000000 -0700
26513@@ -0,0 +1,92 @@26490@@ -0,0 +1,92 @@
26514+#ifndef BOOST_ARCHIVE_BINARY_WIARCHIVE_HPP26491+#ifndef BOOST_ARCHIVE_BINARY_WIARCHIVE_HPP
26515+#define BOOST_ARCHIVE_BINARY_WIARCHIVE_HPP26492+#define BOOST_ARCHIVE_BINARY_WIARCHIVE_HPP
@@ -26606,7 +26583,7 @@
26606Index: mysql-5.0.86/sql/oqgraph/boost/archive/binary_woarchive.hpp26583Index: mysql-5.0.86/sql/oqgraph/boost/archive/binary_woarchive.hpp
26607===================================================================26584===================================================================
26608--- /dev/null 1970-01-01 00:00:00.000000000 +000026585--- /dev/null 1970-01-01 00:00:00.000000000 +0000
26609+++ mysql-5.0.86/sql/oqgraph/boost/archive/binary_woarchive.hpp 2009-10-21 20:44:48.000000000 +100026586+++ mysql-5.0.86/sql/oqgraph/boost/archive/binary_woarchive.hpp 2009-10-23 10:28:03.000000000 -0700
26610@@ -0,0 +1,60 @@26587@@ -0,0 +1,60 @@
26611+#ifndef BOOST_ARCHIVE_BINARY_WOARCHIVE_HPP26588+#ifndef BOOST_ARCHIVE_BINARY_WOARCHIVE_HPP
26612+#define BOOST_ARCHIVE_BINARY_WOARCHIVE_HPP26589+#define BOOST_ARCHIVE_BINARY_WOARCHIVE_HPP
@@ -26671,7 +26648,7 @@
26671Index: mysql-5.0.86/sql/oqgraph/boost/archive/codecvt_null.hpp26648Index: mysql-5.0.86/sql/oqgraph/boost/archive/codecvt_null.hpp
26672===================================================================26649===================================================================
26673--- /dev/null 1970-01-01 00:00:00.000000000 +000026650--- /dev/null 1970-01-01 00:00:00.000000000 +0000
26674+++ mysql-5.0.86/sql/oqgraph/boost/archive/codecvt_null.hpp 2009-10-21 20:44:48.000000000 +100026651+++ mysql-5.0.86/sql/oqgraph/boost/archive/codecvt_null.hpp 2009-10-23 10:28:03.000000000 -0700
26675@@ -0,0 +1,90 @@26652@@ -0,0 +1,90 @@
26676+#ifndef BOOST_ARCHIVE_CODECVT_NULL_HPP26653+#ifndef BOOST_ARCHIVE_CODECVT_NULL_HPP
26677+#define BOOST_ARCHIVE_CODECVT_NULL_HPP26654+#define BOOST_ARCHIVE_CODECVT_NULL_HPP
@@ -26766,7 +26743,7 @@
26766Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/abi_prefix.hpp26743Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/abi_prefix.hpp
26767===================================================================26744===================================================================
26768--- /dev/null 1970-01-01 00:00:00.000000000 +000026745--- /dev/null 1970-01-01 00:00:00.000000000 +0000
26769+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/abi_prefix.hpp 2009-10-21 20:44:48.000000000 +100026746+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/abi_prefix.hpp 2009-10-23 10:28:03.000000000 -0700
26770@@ -0,0 +1,20 @@26747@@ -0,0 +1,20 @@
26771+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////826748+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
26772+// abi_prefix.hpp26749+// abi_prefix.hpp
@@ -26791,7 +26768,7 @@
26791Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/abi_suffix.hpp26768Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/abi_suffix.hpp
26792===================================================================26769===================================================================
26793--- /dev/null 1970-01-01 00:00:00.000000000 +000026770--- /dev/null 1970-01-01 00:00:00.000000000 +0000
26794+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/abi_suffix.hpp 2009-10-21 20:44:48.000000000 +100026771+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/abi_suffix.hpp 2009-10-23 10:28:03.000000000 -0700
26795@@ -0,0 +1,19 @@26772@@ -0,0 +1,19 @@
26796+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////826773+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
26797+// abi_suffix.hpp26774+// abi_suffix.hpp
@@ -26815,7 +26792,7 @@
26815Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/archive_pointer_iserializer.hpp26792Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/archive_pointer_iserializer.hpp
26816===================================================================26793===================================================================
26817--- /dev/null 1970-01-01 00:00:00.000000000 +000026794--- /dev/null 1970-01-01 00:00:00.000000000 +0000
26818+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/archive_pointer_iserializer.hpp 2009-10-21 20:44:48.000000000 +100026795+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/archive_pointer_iserializer.hpp 2009-10-23 10:28:03.000000000 -0700
26819@@ -0,0 +1,94 @@26796@@ -0,0 +1,94 @@
26820+#ifndef BOOST_ARCHIVE_ARCHIVE_POINTER_ISERIALIZER_POINTER_HPP26797+#ifndef BOOST_ARCHIVE_ARCHIVE_POINTER_ISERIALIZER_POINTER_HPP
26821+#define BOOST_ARCHIVE_ARCHIVE_POINTER_ISERIALIZER_POINTER_HPP26798+#define BOOST_ARCHIVE_ARCHIVE_POINTER_ISERIALIZER_POINTER_HPP
@@ -26914,7 +26891,7 @@
26914Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/archive_pointer_oserializer.hpp26891Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/archive_pointer_oserializer.hpp
26915===================================================================26892===================================================================
26916--- /dev/null 1970-01-01 00:00:00.000000000 +000026893--- /dev/null 1970-01-01 00:00:00.000000000 +0000
26917+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/archive_pointer_oserializer.hpp 2009-10-21 20:44:48.000000000 +100026894+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/archive_pointer_oserializer.hpp 2009-10-23 10:28:03.000000000 -0700
26918@@ -0,0 +1,66 @@26895@@ -0,0 +1,66 @@
26919+#ifndef BOOST_ARCHIVE_ARCHIVE_POINTER_OSERIALIZER_POINTER_HPP26896+#ifndef BOOST_ARCHIVE_ARCHIVE_POINTER_OSERIALIZER_POINTER_HPP
26920+#define BOOST_ARCHIVE_ARCHIVE_POINTER_OSERIALIZER_POINTER_HPP26897+#define BOOST_ARCHIVE_ARCHIVE_POINTER_OSERIALIZER_POINTER_HPP
@@ -26985,7 +26962,7 @@
26985Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/auto_link_archive.hpp26962Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/auto_link_archive.hpp
26986===================================================================26963===================================================================
26987--- /dev/null 1970-01-01 00:00:00.000000000 +000026964--- /dev/null 1970-01-01 00:00:00.000000000 +0000
26988+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/auto_link_archive.hpp 2009-10-21 20:44:48.000000000 +100026965+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/auto_link_archive.hpp 2009-10-23 10:28:03.000000000 -0700
26989@@ -0,0 +1,48 @@26966@@ -0,0 +1,48 @@
26990+#ifndef BOOST_ARCHIVE_DETAIL_AUTO_LINK_ARCHIVE_HPP26967+#ifndef BOOST_ARCHIVE_DETAIL_AUTO_LINK_ARCHIVE_HPP
26991+#define BOOST_ARCHIVE_DETAIL_AUTO_LINK_ARCHIVE_HPP26968+#define BOOST_ARCHIVE_DETAIL_AUTO_LINK_ARCHIVE_HPP
@@ -27038,7 +27015,7 @@
27038Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/auto_link_warchive.hpp27015Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/auto_link_warchive.hpp
27039===================================================================27016===================================================================
27040--- /dev/null 1970-01-01 00:00:00.000000000 +000027017--- /dev/null 1970-01-01 00:00:00.000000000 +0000
27041+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/auto_link_warchive.hpp 2009-10-21 20:44:48.000000000 +100027018+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/auto_link_warchive.hpp 2009-10-23 10:28:03.000000000 -0700
27042@@ -0,0 +1,47 @@27019@@ -0,0 +1,47 @@
27043+#ifndef BOOST_ARCHIVE_DETAIL_AUTO_LINK_WARCHIVE_HPP27020+#ifndef BOOST_ARCHIVE_DETAIL_AUTO_LINK_WARCHIVE_HPP
27044+#define BOOST_ARCHIVE_DETAIL_AUTO_LINK_WARCHIVE_HPP27021+#define BOOST_ARCHIVE_DETAIL_AUTO_LINK_WARCHIVE_HPP
@@ -27090,7 +27067,7 @@
27090Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_archive_impl.hpp27067Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_archive_impl.hpp
27091===================================================================27068===================================================================
27092--- /dev/null 1970-01-01 00:00:00.000000000 +000027069--- /dev/null 1970-01-01 00:00:00.000000000 +0000
27093+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_archive_impl.hpp 2009-10-21 20:44:48.000000000 +100027070+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_archive_impl.hpp 2009-10-23 10:28:03.000000000 -0700
27094@@ -0,0 +1,48 @@27071@@ -0,0 +1,48 @@
27095+#ifndef BOOST_ARCHIVE_DETAIL_BASIC_ARCHIVE_IMPL_HPP27072+#ifndef BOOST_ARCHIVE_DETAIL_BASIC_ARCHIVE_IMPL_HPP
27096+#define BOOST_ARCHIVE_DETAIL_BASIC_ARCHIVE_IMPL_HPP27073+#define BOOST_ARCHIVE_DETAIL_BASIC_ARCHIVE_IMPL_HPP
@@ -27143,7 +27120,7 @@
27143Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_config.hpp27120Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_config.hpp
27144===================================================================27121===================================================================
27145--- /dev/null 1970-01-01 00:00:00.000000000 +000027122--- /dev/null 1970-01-01 00:00:00.000000000 +0000
27146+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_config.hpp 2009-10-21 20:44:48.000000000 +100027123+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_config.hpp 2009-10-23 10:28:03.000000000 -0700
27147@@ -0,0 +1,45 @@27124@@ -0,0 +1,45 @@
27148+#ifndef BOOST_ARCHIVE_DETAIL_BASIC_CONFIG_HPP27125+#ifndef BOOST_ARCHIVE_DETAIL_BASIC_CONFIG_HPP
27149+#define BOOST_ARCHIVE_DETAIL_BASIC_CONFIG_HPP27126+#define BOOST_ARCHIVE_DETAIL_BASIC_CONFIG_HPP
@@ -27193,7 +27170,7 @@
27193Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_iarchive.hpp27170Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_iarchive.hpp
27194===================================================================27171===================================================================
27195--- /dev/null 1970-01-01 00:00:00.000000000 +000027172--- /dev/null 1970-01-01 00:00:00.000000000 +0000
27196+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_iarchive.hpp 2009-10-21 20:44:48.000000000 +100027173+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_iarchive.hpp 2009-10-23 10:28:03.000000000 -0700
27197@@ -0,0 +1,108 @@27174@@ -0,0 +1,108 @@
27198+#ifndef BOOST_ARCHIVE_DETAIL_BASIC_IARCHIVE_HPP27175+#ifndef BOOST_ARCHIVE_DETAIL_BASIC_IARCHIVE_HPP
27199+#define BOOST_ARCHIVE_DETAIL_BASIC_IARCHIVE_HPP27176+#define BOOST_ARCHIVE_DETAIL_BASIC_IARCHIVE_HPP
@@ -27306,7 +27283,7 @@
27306Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_iserializer.hpp27283Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_iserializer.hpp
27307===================================================================27284===================================================================
27308--- /dev/null 1970-01-01 00:00:00.000000000 +000027285--- /dev/null 1970-01-01 00:00:00.000000000 +0000
27309+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_iserializer.hpp 2009-10-21 20:44:48.000000000 +100027286+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_iserializer.hpp 2009-10-23 10:28:03.000000000 -0700
27310@@ -0,0 +1,86 @@27287@@ -0,0 +1,86 @@
27311+#ifndef BOOST_ARCHIVE_DETAIL_BASIC_ISERIALIZER_HPP27288+#ifndef BOOST_ARCHIVE_DETAIL_BASIC_ISERIALIZER_HPP
27312+#define BOOST_ARCHIVE_DETAIL_BASIC_ISERIALIZER_HPP27289+#define BOOST_ARCHIVE_DETAIL_BASIC_ISERIALIZER_HPP
@@ -27397,7 +27374,7 @@
27397Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_oarchive.hpp27374Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_oarchive.hpp
27398===================================================================27375===================================================================
27399--- /dev/null 1970-01-01 00:00:00.000000000 +000027376--- /dev/null 1970-01-01 00:00:00.000000000 +0000
27400+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_oarchive.hpp 2009-10-21 20:44:48.000000000 +100027377+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_oarchive.hpp 2009-10-23 10:28:03.000000000 -0700
27401@@ -0,0 +1,103 @@27378@@ -0,0 +1,103 @@
27402+#ifndef BOOST_ARCHIVE_BASIC_OARCHIVE_HPP27379+#ifndef BOOST_ARCHIVE_BASIC_OARCHIVE_HPP
27403+#define BOOST_ARCHIVE_BASIC_OARCHIVE_HPP27380+#define BOOST_ARCHIVE_BASIC_OARCHIVE_HPP
@@ -27505,7 +27482,7 @@
27505Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_oserializer.hpp27482Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_oserializer.hpp
27506===================================================================27483===================================================================
27507--- /dev/null 1970-01-01 00:00:00.000000000 +000027484--- /dev/null 1970-01-01 00:00:00.000000000 +0000
27508+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_oserializer.hpp 2009-10-21 20:44:48.000000000 +100027485+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_oserializer.hpp 2009-10-23 10:28:03.000000000 -0700
27509@@ -0,0 +1,83 @@27486@@ -0,0 +1,83 @@
27510+#ifndef BOOST_SERIALIZATION_BASIC_OSERIALIZER_HPP27487+#ifndef BOOST_SERIALIZATION_BASIC_OSERIALIZER_HPP
27511+#define BOOST_SERIALIZATION_BASIC_OSERIALIZER_HPP27488+#define BOOST_SERIALIZATION_BASIC_OSERIALIZER_HPP
@@ -27593,7 +27570,7 @@
27593Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_pointer_iserializer.hpp27570Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_pointer_iserializer.hpp
27594===================================================================27571===================================================================
27595--- /dev/null 1970-01-01 00:00:00.000000000 +000027572--- /dev/null 1970-01-01 00:00:00.000000000 +0000
27596+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_pointer_iserializer.hpp 2009-10-21 20:44:48.000000000 +100027573+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_pointer_iserializer.hpp 2009-10-23 10:28:03.000000000 -0700
27597@@ -0,0 +1,64 @@27574@@ -0,0 +1,64 @@
27598+#ifndef BOOST_ARCHIVE_BASIC_POINTER_ISERIALIZER_HPP27575+#ifndef BOOST_ARCHIVE_BASIC_POINTER_ISERIALIZER_HPP
27599+#define BOOST_ARCHIVE_BASIC_POINTER_ISERIALIZER_HPP27576+#define BOOST_ARCHIVE_BASIC_POINTER_ISERIALIZER_HPP
@@ -27662,7 +27639,7 @@
27662Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_pointer_oserializer.hpp27639Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_pointer_oserializer.hpp
27663===================================================================27640===================================================================
27664--- /dev/null 1970-01-01 00:00:00.000000000 +000027641--- /dev/null 1970-01-01 00:00:00.000000000 +0000
27665+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_pointer_oserializer.hpp 2009-10-21 20:44:48.000000000 +100027642+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_pointer_oserializer.hpp 2009-10-23 10:28:03.000000000 -0700
27666@@ -0,0 +1,62 @@27643@@ -0,0 +1,62 @@
27667+#ifndef BOOST_ARCHIVE_BASIC_POINTER_OSERIALIZER_HPP27644+#ifndef BOOST_ARCHIVE_BASIC_POINTER_OSERIALIZER_HPP
27668+#define BOOST_ARCHIVE_BASIC_POINTER_OSERIALIZER_HPP27645+#define BOOST_ARCHIVE_BASIC_POINTER_OSERIALIZER_HPP
@@ -27729,7 +27706,7 @@
27729Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_serializer.hpp27706Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_serializer.hpp
27730===================================================================27707===================================================================
27731--- /dev/null 1970-01-01 00:00:00.000000000 +000027708--- /dev/null 1970-01-01 00:00:00.000000000 +0000
27732+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_serializer.hpp 2009-10-21 20:44:48.000000000 +100027709+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_serializer.hpp 2009-10-23 10:28:03.000000000 -0700
27733@@ -0,0 +1,63 @@27710@@ -0,0 +1,63 @@
27734+#ifndef BOOST_ARCHIVE_BASIC_SERIALIZER_HPP27711+#ifndef BOOST_ARCHIVE_BASIC_SERIALIZER_HPP
27735+#define BOOST_ARCHIVE_BASIC_SERIALIZER_HPP27712+#define BOOST_ARCHIVE_BASIC_SERIALIZER_HPP
@@ -27797,7 +27774,7 @@
27797Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_serializer_map.hpp27774Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_serializer_map.hpp
27798===================================================================27775===================================================================
27799--- /dev/null 1970-01-01 00:00:00.000000000 +000027776--- /dev/null 1970-01-01 00:00:00.000000000 +0000
27800+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_serializer_map.hpp 2009-10-21 20:44:48.000000000 +100027777+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/basic_serializer_map.hpp 2009-10-23 10:28:03.000000000 -0700
27801@@ -0,0 +1,59 @@27778@@ -0,0 +1,59 @@
27802+#ifndef BOOST_TYPEINFO_EXTENDED_MAP_HPP27779+#ifndef BOOST_TYPEINFO_EXTENDED_MAP_HPP
27803+#define BOOST_TYPEINFO_EXTENDED_MAP_HPP27780+#define BOOST_TYPEINFO_EXTENDED_MAP_HPP
@@ -27861,7 +27838,7 @@
27861Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/common_iarchive.hpp27838Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/common_iarchive.hpp
27862===================================================================27839===================================================================
27863--- /dev/null 1970-01-01 00:00:00.000000000 +000027840--- /dev/null 1970-01-01 00:00:00.000000000 +0000
27864+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/common_iarchive.hpp 2009-10-21 20:44:48.000000000 +100027841+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/common_iarchive.hpp 2009-10-23 10:28:03.000000000 -0700
27865@@ -0,0 +1,77 @@27842@@ -0,0 +1,77 @@
27866+#ifndef BOOST_ARCHIVE_DETAIL_COMMON_IARCHIVE_HPP27843+#ifndef BOOST_ARCHIVE_DETAIL_COMMON_IARCHIVE_HPP
27867+#define BOOST_ARCHIVE_DETAIL_COMMON_IARCHIVE_HPP27844+#define BOOST_ARCHIVE_DETAIL_COMMON_IARCHIVE_HPP
@@ -27943,7 +27920,7 @@
27943Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/common_oarchive.hpp27920Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/common_oarchive.hpp
27944===================================================================27921===================================================================
27945--- /dev/null 1970-01-01 00:00:00.000000000 +000027922--- /dev/null 1970-01-01 00:00:00.000000000 +0000
27946+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/common_oarchive.hpp 2009-10-21 20:44:48.000000000 +100027923+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/common_oarchive.hpp 2009-10-23 10:28:03.000000000 -0700
27947@@ -0,0 +1,78 @@27924@@ -0,0 +1,78 @@
27948+#ifndef BOOST_ARCHIVE_DETAIL_COMMON_OARCHIVE_HPP27925+#ifndef BOOST_ARCHIVE_DETAIL_COMMON_OARCHIVE_HPP
27949+#define BOOST_ARCHIVE_DETAIL_COMMON_OARCHIVE_HPP27926+#define BOOST_ARCHIVE_DETAIL_COMMON_OARCHIVE_HPP
@@ -28026,7 +28003,7 @@
28026Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/decl.hpp28003Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/decl.hpp
28027===================================================================28004===================================================================
28028--- /dev/null 1970-01-01 00:00:00.000000000 +000028005--- /dev/null 1970-01-01 00:00:00.000000000 +0000
28029+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/decl.hpp 2009-10-21 20:44:48.000000000 +100028006+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/decl.hpp 2009-10-23 10:28:03.000000000 -0700
28030@@ -0,0 +1,79 @@28007@@ -0,0 +1,79 @@
28031+#ifndef BOOST_ARCHIVE_DETAIL_DECL_HPP28008+#ifndef BOOST_ARCHIVE_DETAIL_DECL_HPP
28032+#define BOOST_ARCHIVE_DETAIL_DECL_HPP 28009+#define BOOST_ARCHIVE_DETAIL_DECL_HPP
@@ -28110,7 +28087,7 @@
28110Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/interface_iarchive.hpp28087Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/interface_iarchive.hpp
28111===================================================================28088===================================================================
28112--- /dev/null 1970-01-01 00:00:00.000000000 +000028089--- /dev/null 1970-01-01 00:00:00.000000000 +0000
28113+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/interface_iarchive.hpp 2009-10-21 20:44:48.000000000 +100028090+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/interface_iarchive.hpp 2009-10-23 10:28:03.000000000 -0700
28114@@ -0,0 +1,78 @@28091@@ -0,0 +1,78 @@
28115+#ifndef BOOST_ARCHIVE_DETAIL_INTERFACE_IARCHIVE_HPP28092+#ifndef BOOST_ARCHIVE_DETAIL_INTERFACE_IARCHIVE_HPP
28116+#define BOOST_ARCHIVE_DETAIL_INTERFACE_IARCHIVE_HPP28093+#define BOOST_ARCHIVE_DETAIL_INTERFACE_IARCHIVE_HPP
@@ -28193,7 +28170,7 @@
28193Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/interface_oarchive.hpp28170Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/interface_oarchive.hpp
28194===================================================================28171===================================================================
28195--- /dev/null 1970-01-01 00:00:00.000000000 +000028172--- /dev/null 1970-01-01 00:00:00.000000000 +0000
28196+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/interface_oarchive.hpp 2009-10-21 20:44:48.000000000 +100028173+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/interface_oarchive.hpp 2009-10-23 10:28:03.000000000 -0700
28197@@ -0,0 +1,85 @@28174@@ -0,0 +1,85 @@
28198+#ifndef BOOST_ARCHIVE_DETAIL_INTERFACE_OARCHIVE_HPP28175+#ifndef BOOST_ARCHIVE_DETAIL_INTERFACE_OARCHIVE_HPP
28199+#define BOOST_ARCHIVE_DETAIL_INTERFACE_OARCHIVE_HPP28176+#define BOOST_ARCHIVE_DETAIL_INTERFACE_OARCHIVE_HPP
@@ -28283,7 +28260,7 @@
28283Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/iserializer.hpp28260Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/iserializer.hpp
28284===================================================================28261===================================================================
28285--- /dev/null 1970-01-01 00:00:00.000000000 +000028262--- /dev/null 1970-01-01 00:00:00.000000000 +0000
28286+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/iserializer.hpp 2009-10-21 20:44:48.000000000 +100028263+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/iserializer.hpp 2009-10-23 10:28:03.000000000 -0700
28287@@ -0,0 +1,568 @@28264@@ -0,0 +1,568 @@
28288+#ifndef BOOST_ARCHIVE_DETAIL_ISERIALIZER_HPP28265+#ifndef BOOST_ARCHIVE_DETAIL_ISERIALIZER_HPP
28289+#define BOOST_ARCHIVE_DETAIL_ISERIALIZER_HPP28266+#define BOOST_ARCHIVE_DETAIL_ISERIALIZER_HPP
@@ -28856,7 +28833,7 @@
28856Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/oserializer.hpp28833Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/oserializer.hpp
28857===================================================================28834===================================================================
28858--- /dev/null 1970-01-01 00:00:00.000000000 +000028835--- /dev/null 1970-01-01 00:00:00.000000000 +0000
28859+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/oserializer.hpp 2009-10-21 20:44:48.000000000 +100028836+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/oserializer.hpp 2009-10-23 10:28:03.000000000 -0700
28860@@ -0,0 +1,546 @@28837@@ -0,0 +1,546 @@
28861+#ifndef BOOST_ARCHIVE_OSERIALIZER_HPP28838+#ifndef BOOST_ARCHIVE_OSERIALIZER_HPP
28862+#define BOOST_ARCHIVE_OSERIALIZER_HPP28839+#define BOOST_ARCHIVE_OSERIALIZER_HPP
@@ -29407,7 +29384,7 @@
29407Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/polymorphic_iarchive_route.hpp29384Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/polymorphic_iarchive_route.hpp
29408===================================================================29385===================================================================
29409--- /dev/null 1970-01-01 00:00:00.000000000 +000029386--- /dev/null 1970-01-01 00:00:00.000000000 +0000
29410+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/polymorphic_iarchive_route.hpp 2009-10-21 20:44:48.000000000 +100029387+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/polymorphic_iarchive_route.hpp 2009-10-23 10:28:03.000000000 -0700
29411@@ -0,0 +1,196 @@29388@@ -0,0 +1,196 @@
29412+#ifndef BOOST_ARCHIVE_DETAIL_POLYMORPHIC_IARCHIVE_ROUTE_HPP29389+#ifndef BOOST_ARCHIVE_DETAIL_POLYMORPHIC_IARCHIVE_ROUTE_HPP
29413+#define BOOST_ARCHIVE_DETAIL_POLYMORPHIC_IARCHIVE_ROUTE_HPP29390+#define BOOST_ARCHIVE_DETAIL_POLYMORPHIC_IARCHIVE_ROUTE_HPP
@@ -29608,7 +29585,7 @@
29608Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/polymorphic_oarchive_route.hpp29585Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/polymorphic_oarchive_route.hpp
29609===================================================================29586===================================================================
29610--- /dev/null 1970-01-01 00:00:00.000000000 +000029587--- /dev/null 1970-01-01 00:00:00.000000000 +0000
29611+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/polymorphic_oarchive_route.hpp 2009-10-21 20:44:48.000000000 +100029588+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/polymorphic_oarchive_route.hpp 2009-10-23 10:28:03.000000000 -0700
29612@@ -0,0 +1,184 @@29589@@ -0,0 +1,184 @@
29613+#ifndef BOOST_ARCHIVE_DETAIL_POLYMORPHIC_OARCHIVE_ROUTE_HPP29590+#ifndef BOOST_ARCHIVE_DETAIL_POLYMORPHIC_OARCHIVE_ROUTE_HPP
29614+#define BOOST_ARCHIVE_DETAIL_POLYMORPHIC_OARCHIVE_ROUTE_HPP29591+#define BOOST_ARCHIVE_DETAIL_POLYMORPHIC_OARCHIVE_ROUTE_HPP
@@ -29797,7 +29774,7 @@
29797Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/register_archive.hpp29774Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/register_archive.hpp
29798===================================================================29775===================================================================
29799--- /dev/null 1970-01-01 00:00:00.000000000 +000029776--- /dev/null 1970-01-01 00:00:00.000000000 +0000
29800+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/register_archive.hpp 2009-10-21 20:44:48.000000000 +100029777+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/register_archive.hpp 2009-10-23 10:28:03.000000000 -0700
29801@@ -0,0 +1,94 @@29778@@ -0,0 +1,94 @@
29802+// Copyright David Abrahams 2006. Distributed under the Boost29779+// Copyright David Abrahams 2006. Distributed under the Boost
29803+// Software License, Version 1.0. (See accompanying29780+// Software License, Version 1.0. (See accompanying
@@ -29896,7 +29873,7 @@
29896Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/utf8_codecvt_facet.hpp29873Index: mysql-5.0.86/sql/oqgraph/boost/archive/detail/utf8_codecvt_facet.hpp
29897===================================================================29874===================================================================
29898--- /dev/null 1970-01-01 00:00:00.000000000 +000029875--- /dev/null 1970-01-01 00:00:00.000000000 +0000
29899+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/utf8_codecvt_facet.hpp 2009-10-21 20:44:48.000000000 +100029876+++ mysql-5.0.86/sql/oqgraph/boost/archive/detail/utf8_codecvt_facet.hpp 2009-10-23 10:28:03.000000000 -0700
29900@@ -0,0 +1,21 @@29877@@ -0,0 +1,21 @@
29901+// Copyright (c) 2001 Ronald Garcia, Indiana University (garcia@osl.iu.edu)29878+// Copyright (c) 2001 Ronald Garcia, Indiana University (garcia@osl.iu.edu)
29902+// Andrew Lumsdaine, Indiana University (lums@osl.iu.edu).29879+// Andrew Lumsdaine, Indiana University (lums@osl.iu.edu).
@@ -29922,7 +29899,7 @@
29922Index: mysql-5.0.86/sql/oqgraph/boost/archive/dinkumware.hpp29899Index: mysql-5.0.86/sql/oqgraph/boost/archive/dinkumware.hpp
29923===================================================================29900===================================================================
29924--- /dev/null 1970-01-01 00:00:00.000000000 +000029901--- /dev/null 1970-01-01 00:00:00.000000000 +0000
29925+++ mysql-5.0.86/sql/oqgraph/boost/archive/dinkumware.hpp 2009-10-21 20:44:48.000000000 +100029902+++ mysql-5.0.86/sql/oqgraph/boost/archive/dinkumware.hpp 2009-10-23 10:28:03.000000000 -0700
29926@@ -0,0 +1,224 @@29903@@ -0,0 +1,224 @@
29927+#ifndef BOOST_ARCHIVE_DINKUMWARE_HPP29904+#ifndef BOOST_ARCHIVE_DINKUMWARE_HPP
29928+#define BOOST_ARCHIVE_DINKUMWARE_HPP29905+#define BOOST_ARCHIVE_DINKUMWARE_HPP
@@ -30151,7 +30128,7 @@
30151Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/archive_pointer_iserializer.ipp30128Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/archive_pointer_iserializer.ipp
30152===================================================================30129===================================================================
30153--- /dev/null 1970-01-01 00:00:00.000000000 +000030130--- /dev/null 1970-01-01 00:00:00.000000000 +0000
30154+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/archive_pointer_iserializer.ipp 2009-10-21 20:44:48.000000000 +100030131+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/archive_pointer_iserializer.ipp 2009-10-23 10:28:03.000000000 -0700
30155@@ -0,0 +1,87 @@30132@@ -0,0 +1,87 @@
30156+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////830133+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
30157+// pointer_iserializer.ipp: 30134+// pointer_iserializer.ipp:
@@ -30243,7 +30220,7 @@
30243Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/archive_pointer_oserializer.ipp30220Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/archive_pointer_oserializer.ipp
30244===================================================================30221===================================================================
30245--- /dev/null 1970-01-01 00:00:00.000000000 +000030222--- /dev/null 1970-01-01 00:00:00.000000000 +0000
30246+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/archive_pointer_oserializer.ipp 2009-10-21 20:44:48.000000000 +100030223+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/archive_pointer_oserializer.ipp 2009-10-23 10:28:03.000000000 -0700
30247@@ -0,0 +1,87 @@30224@@ -0,0 +1,87 @@
30248+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////830225+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
30249+// archive_pointer_oserializer.ipp: 30226+// archive_pointer_oserializer.ipp:
@@ -30335,7 +30312,7 @@
30335Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_binary_iarchive.ipp30312Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_binary_iarchive.ipp
30336===================================================================30313===================================================================
30337--- /dev/null 1970-01-01 00:00:00.000000000 +000030314--- /dev/null 1970-01-01 00:00:00.000000000 +0000
30338+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_binary_iarchive.ipp 2009-10-21 20:44:48.000000000 +100030315+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_binary_iarchive.ipp 2009-10-23 10:28:03.000000000 -0700
30339@@ -0,0 +1,79 @@30316@@ -0,0 +1,79 @@
30340+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////830317+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
30341+// basic_binary_iarchive.ipp:30318+// basic_binary_iarchive.ipp:
@@ -30419,7 +30396,7 @@
30419Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_binary_iprimitive.ipp30396Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_binary_iprimitive.ipp
30420===================================================================30397===================================================================
30421--- /dev/null 1970-01-01 00:00:00.000000000 +000030398--- /dev/null 1970-01-01 00:00:00.000000000 +0000
30422+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_binary_iprimitive.ipp 2009-10-21 20:44:48.000000000 +100030399+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_binary_iprimitive.ipp 2009-10-23 10:28:03.000000000 -0700
30423@@ -0,0 +1,194 @@30400@@ -0,0 +1,194 @@
30424+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////830401+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
30425+// basic_binary_iprimitive.ipp:30402+// basic_binary_iprimitive.ipp:
@@ -30618,7 +30595,7 @@
30618Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_binary_oarchive.ipp30595Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_binary_oarchive.ipp
30619===================================================================30596===================================================================
30620--- /dev/null 1970-01-01 00:00:00.000000000 +000030597--- /dev/null 1970-01-01 00:00:00.000000000 +0000
30621+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_binary_oarchive.ipp 2009-10-21 20:44:48.000000000 +100030598+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_binary_oarchive.ipp 2009-10-23 10:28:03.000000000 -0700
30622@@ -0,0 +1,46 @@30599@@ -0,0 +1,46 @@
30623+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////830600+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
30624+// basic_binary_oarchive.ipp:30601+// basic_binary_oarchive.ipp:
@@ -30669,7 +30646,7 @@
30669Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_binary_oprimitive.ipp30646Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_binary_oprimitive.ipp
30670===================================================================30647===================================================================
30671--- /dev/null 1970-01-01 00:00:00.000000000 +000030648--- /dev/null 1970-01-01 00:00:00.000000000 +0000
30672+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_binary_oprimitive.ipp 2009-10-21 20:44:48.000000000 +100030649+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_binary_oprimitive.ipp 2009-10-23 10:28:03.000000000 -0700
30673@@ -0,0 +1,164 @@30650@@ -0,0 +1,164 @@
30674+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////830651+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
30675+// basic_binary_oprimitive.ipp:30652+// basic_binary_oprimitive.ipp:
@@ -30838,7 +30815,7 @@
30838Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_text_iarchive.ipp30815Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_text_iarchive.ipp
30839===================================================================30816===================================================================
30840--- /dev/null 1970-01-01 00:00:00.000000000 +000030817--- /dev/null 1970-01-01 00:00:00.000000000 +0000
30841+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_text_iarchive.ipp 2009-10-21 20:44:48.000000000 +100030818+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_text_iarchive.ipp 2009-10-23 10:28:03.000000000 -0700
30842@@ -0,0 +1,79 @@30819@@ -0,0 +1,79 @@
30843+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////830820+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
30844+// basic_text_iarchive.ipp:30821+// basic_text_iarchive.ipp:
@@ -30922,7 +30899,7 @@
30922Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_text_iprimitive.ipp30899Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_text_iprimitive.ipp
30923===================================================================30900===================================================================
30924--- /dev/null 1970-01-01 00:00:00.000000000 +000030901--- /dev/null 1970-01-01 00:00:00.000000000 +0000
30925+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_text_iprimitive.ipp 2009-10-21 20:44:48.000000000 +100030902+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_text_iprimitive.ipp 2009-10-23 10:28:03.000000000 -0700
30926@@ -0,0 +1,154 @@30903@@ -0,0 +1,154 @@
30927+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////830904+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
30928+// basic_text_iprimitive.ipp:30905+// basic_text_iprimitive.ipp:
@@ -31081,7 +31058,7 @@
31081Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_text_oarchive.ipp31058Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_text_oarchive.ipp
31082===================================================================31059===================================================================
31083--- /dev/null 1970-01-01 00:00:00.000000000 +000031060--- /dev/null 1970-01-01 00:00:00.000000000 +0000
31084+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_text_oarchive.ipp 2009-10-21 20:44:48.000000000 +100031061+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_text_oarchive.ipp 2009-10-23 10:28:03.000000000 -0700
31085@@ -0,0 +1,62 @@31062@@ -0,0 +1,62 @@
31086+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////831063+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
31087+// basic_text_oarchive.ipp:31064+// basic_text_oarchive.ipp:
@@ -31148,7 +31125,7 @@
31148Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_text_oprimitive.ipp31125Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_text_oprimitive.ipp
31149===================================================================31126===================================================================
31150--- /dev/null 1970-01-01 00:00:00.000000000 +000031127--- /dev/null 1970-01-01 00:00:00.000000000 +0000
31151+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_text_oprimitive.ipp 2009-10-21 20:44:48.000000000 +100031128+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_text_oprimitive.ipp 2009-10-23 10:28:03.000000000 -0700
31152@@ -0,0 +1,114 @@31129@@ -0,0 +1,114 @@
31153+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////831130+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
31154+// basic_text_oprimitive.ipp:31131+// basic_text_oprimitive.ipp:
@@ -31267,7 +31244,7 @@
31267Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_xml_grammar.hpp31244Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_xml_grammar.hpp
31268===================================================================31245===================================================================
31269--- /dev/null 1970-01-01 00:00:00.000000000 +000031246--- /dev/null 1970-01-01 00:00:00.000000000 +0000
31270+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_xml_grammar.hpp 2009-10-21 20:44:48.000000000 +100031247+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_xml_grammar.hpp 2009-10-23 10:28:03.000000000 -0700
31271@@ -0,0 +1,193 @@31248@@ -0,0 +1,193 @@
31272+#ifndef BOOST_ARCHIVE_BASIC_XML_GRAMMAR_HPP31249+#ifndef BOOST_ARCHIVE_BASIC_XML_GRAMMAR_HPP
31273+#define BOOST_ARCHIVE_BASIC_XML_GRAMMAR_HPP31250+#define BOOST_ARCHIVE_BASIC_XML_GRAMMAR_HPP
@@ -31465,7 +31442,7 @@
31465Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_xml_iarchive.ipp31442Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_xml_iarchive.ipp
31466===================================================================31443===================================================================
31467--- /dev/null 1970-01-01 00:00:00.000000000 +000031444--- /dev/null 1970-01-01 00:00:00.000000000 +0000
31468+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_xml_iarchive.ipp 2009-10-21 20:44:48.000000000 +100031445+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_xml_iarchive.ipp 2009-10-23 10:28:03.000000000 -0700
31469@@ -0,0 +1,111 @@31446@@ -0,0 +1,111 @@
31470+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////831447+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
31471+// basic_xml_iarchive.ipp:31448+// basic_xml_iarchive.ipp:
@@ -31581,7 +31558,7 @@
31581Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_xml_oarchive.ipp31558Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_xml_oarchive.ipp
31582===================================================================31559===================================================================
31583--- /dev/null 1970-01-01 00:00:00.000000000 +000031560--- /dev/null 1970-01-01 00:00:00.000000000 +0000
31584+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_xml_oarchive.ipp 2009-10-21 20:44:48.000000000 +100031561+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/basic_xml_oarchive.ipp 2009-10-23 10:28:03.000000000 -0700
31585@@ -0,0 +1,275 @@31562@@ -0,0 +1,275 @@
31586+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////831563+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
31587+// basic_xml_oarchive.ipp:31564+// basic_xml_oarchive.ipp:
@@ -31861,7 +31838,7 @@
31861Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/text_iarchive_impl.ipp31838Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/text_iarchive_impl.ipp
31862===================================================================31839===================================================================
31863--- /dev/null 1970-01-01 00:00:00.000000000 +000031840--- /dev/null 1970-01-01 00:00:00.000000000 +0000
31864+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/text_iarchive_impl.ipp 2009-10-21 20:44:48.000000000 +100031841+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/text_iarchive_impl.ipp 2009-10-23 10:28:03.000000000 -0700
31865@@ -0,0 +1,128 @@31842@@ -0,0 +1,128 @@
31866+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////831843+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
31867+// text_iarchive_impl.ipp:31844+// text_iarchive_impl.ipp:
@@ -31994,7 +31971,7 @@
31994Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/text_oarchive_impl.ipp31971Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/text_oarchive_impl.ipp
31995===================================================================31972===================================================================
31996--- /dev/null 1970-01-01 00:00:00.000000000 +000031973--- /dev/null 1970-01-01 00:00:00.000000000 +0000
31997+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/text_oarchive_impl.ipp 2009-10-21 20:44:48.000000000 +100031974+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/text_oarchive_impl.ipp 2009-10-23 10:28:03.000000000 -0700
31998@@ -0,0 +1,124 @@31975@@ -0,0 +1,124 @@
31999+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////831976+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
32000+// text_oarchive_impl.ipp:31977+// text_oarchive_impl.ipp:
@@ -32123,7 +32100,7 @@
32123Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/text_wiarchive_impl.ipp32100Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/text_wiarchive_impl.ipp
32124===================================================================32101===================================================================
32125--- /dev/null 1970-01-01 00:00:00.000000000 +000032102--- /dev/null 1970-01-01 00:00:00.000000000 +0000
32126+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/text_wiarchive_impl.ipp 2009-10-21 20:44:48.000000000 +100032103+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/text_wiarchive_impl.ipp 2009-10-23 10:28:03.000000000 -0700
32127@@ -0,0 +1,118 @@32104@@ -0,0 +1,118 @@
32128+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////832105+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
32129+// text_text_wiarchive_impl.ipp:32106+// text_text_wiarchive_impl.ipp:
@@ -32246,7 +32223,7 @@
32246Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/text_woarchive_impl.ipp32223Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/text_woarchive_impl.ipp
32247===================================================================32224===================================================================
32248--- /dev/null 1970-01-01 00:00:00.000000000 +000032225--- /dev/null 1970-01-01 00:00:00.000000000 +0000
32249+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/text_woarchive_impl.ipp 2009-10-21 20:44:48.000000000 +100032226+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/text_woarchive_impl.ipp 2009-10-23 10:28:03.000000000 -0700
32250@@ -0,0 +1,85 @@32227@@ -0,0 +1,85 @@
32251+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////832228+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
32252+// text_woarchive_impl.ipp:32229+// text_woarchive_impl.ipp:
@@ -32336,7 +32313,7 @@
32336Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/xml_iarchive_impl.ipp32313Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/xml_iarchive_impl.ipp
32337===================================================================32314===================================================================
32338--- /dev/null 1970-01-01 00:00:00.000000000 +000032315--- /dev/null 1970-01-01 00:00:00.000000000 +0000
32339+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/xml_iarchive_impl.ipp 2009-10-21 20:44:48.000000000 +100032316+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/xml_iarchive_impl.ipp 2009-10-23 10:28:03.000000000 -0700
32340@@ -0,0 +1,202 @@32317@@ -0,0 +1,202 @@
32341+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////832318+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
32342+// xml_iarchive_impl.cpp:32319+// xml_iarchive_impl.cpp:
@@ -32543,7 +32520,7 @@
32543Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/xml_oarchive_impl.ipp32520Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/xml_oarchive_impl.ipp
32544===================================================================32521===================================================================
32545--- /dev/null 1970-01-01 00:00:00.000000000 +000032522--- /dev/null 1970-01-01 00:00:00.000000000 +0000
32546+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/xml_oarchive_impl.ipp 2009-10-21 20:44:48.000000000 +100032523+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/xml_oarchive_impl.ipp 2009-10-23 10:28:03.000000000 -0700
32547@@ -0,0 +1,117 @@32524@@ -0,0 +1,117 @@
32548+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////832525+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
32549+// xml_oarchive_impl.ipp:32526+// xml_oarchive_impl.ipp:
@@ -32665,7 +32642,7 @@
32665Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/xml_wiarchive_impl.ipp32642Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/xml_wiarchive_impl.ipp
32666===================================================================32643===================================================================
32667--- /dev/null 1970-01-01 00:00:00.000000000 +000032644--- /dev/null 1970-01-01 00:00:00.000000000 +0000
32668+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/xml_wiarchive_impl.ipp 2009-10-21 20:44:48.000000000 +100032645+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/xml_wiarchive_impl.ipp 2009-10-23 10:28:03.000000000 -0700
32669@@ -0,0 +1,204 @@32646@@ -0,0 +1,204 @@
32670+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////832647+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
32671+// xml_wiprimitive.cpp:32648+// xml_wiprimitive.cpp:
@@ -32874,7 +32851,7 @@
32874Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/xml_woarchive_impl.ipp32851Index: mysql-5.0.86/sql/oqgraph/boost/archive/impl/xml_woarchive_impl.ipp
32875===================================================================32852===================================================================
32876--- /dev/null 1970-01-01 00:00:00.000000000 +000032853--- /dev/null 1970-01-01 00:00:00.000000000 +0000
32877+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/xml_woarchive_impl.ipp 2009-10-21 20:44:48.000000000 +100032854+++ mysql-5.0.86/sql/oqgraph/boost/archive/impl/xml_woarchive_impl.ipp 2009-10-23 10:28:03.000000000 -0700
32878@@ -0,0 +1,160 @@32855@@ -0,0 +1,160 @@
32879+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////832856+/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
32880+// xml_woarchive_impl.ipp:32857+// xml_woarchive_impl.ipp:
@@ -33039,7 +33016,7 @@
33039Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/base64_exception.hpp33016Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/base64_exception.hpp
33040===================================================================33017===================================================================
33041--- /dev/null 1970-01-01 00:00:00.000000000 +000033018--- /dev/null 1970-01-01 00:00:00.000000000 +0000
33042+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/base64_exception.hpp 2009-10-21 20:44:48.000000000 +100033019+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/base64_exception.hpp 2009-10-23 10:28:03.000000000 -0700
33043@@ -0,0 +1,68 @@33020@@ -0,0 +1,68 @@
33044+#ifndef BOOST_ARCHIVE_ITERATORS_BASE64_EXCEPTION_HPP33021+#ifndef BOOST_ARCHIVE_ITERATORS_BASE64_EXCEPTION_HPP
33045+#define BOOST_ARCHIVE_ITERATORS_BASE64_EXCEPTION_HPP33022+#define BOOST_ARCHIVE_ITERATORS_BASE64_EXCEPTION_HPP
@@ -33112,7 +33089,7 @@
33112Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/base64_from_binary.hpp33089Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/base64_from_binary.hpp
33113===================================================================33090===================================================================
33114--- /dev/null 1970-01-01 00:00:00.000000000 +000033091--- /dev/null 1970-01-01 00:00:00.000000000 +0000
33115+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/base64_from_binary.hpp 2009-10-21 20:44:48.000000000 +100033092+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/base64_from_binary.hpp 2009-10-23 10:28:03.000000000 -0700
33116@@ -0,0 +1,112 @@33093@@ -0,0 +1,112 @@
33117+#ifndef BOOST_ARCHIVE_ITERATORS_BASE64_FROM_BINARY_HPP33094+#ifndef BOOST_ARCHIVE_ITERATORS_BASE64_FROM_BINARY_HPP
33118+#define BOOST_ARCHIVE_ITERATORS_BASE64_FROM_BINARY_HPP33095+#define BOOST_ARCHIVE_ITERATORS_BASE64_FROM_BINARY_HPP
@@ -33229,7 +33206,7 @@
33229Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/binary_from_base64.hpp33206Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/binary_from_base64.hpp
33230===================================================================33207===================================================================
33231--- /dev/null 1970-01-01 00:00:00.000000000 +000033208--- /dev/null 1970-01-01 00:00:00.000000000 +0000
33232+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/binary_from_base64.hpp 2009-10-21 20:44:48.000000000 +100033209+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/binary_from_base64.hpp 2009-10-23 10:28:03.000000000 -0700
33233@@ -0,0 +1,120 @@33210@@ -0,0 +1,120 @@
33234+#ifndef BOOST_ARCHIVE_ITERATORS_BINARY_FROM_BASE64_HPP33211+#ifndef BOOST_ARCHIVE_ITERATORS_BINARY_FROM_BASE64_HPP
33235+#define BOOST_ARCHIVE_ITERATORS_BINARY_FROM_BASE64_HPP33212+#define BOOST_ARCHIVE_ITERATORS_BINARY_FROM_BASE64_HPP
@@ -33354,7 +33331,7 @@
33354Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/dataflow.hpp33331Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/dataflow.hpp
33355===================================================================33332===================================================================
33356--- /dev/null 1970-01-01 00:00:00.000000000 +000033333--- /dev/null 1970-01-01 00:00:00.000000000 +0000
33357+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/dataflow.hpp 2009-10-21 20:44:48.000000000 +100033334+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/dataflow.hpp 2009-10-23 10:28:03.000000000 -0700
33358@@ -0,0 +1,105 @@33335@@ -0,0 +1,105 @@
33359+#ifndef BOOST_ARCHIVE_ITERATORS_DATAFLOW_HPP33336+#ifndef BOOST_ARCHIVE_ITERATORS_DATAFLOW_HPP
33360+#define BOOST_ARCHIVE_ITERATORS_DATAFLOW_HPP33337+#define BOOST_ARCHIVE_ITERATORS_DATAFLOW_HPP
@@ -33464,7 +33441,7 @@
33464Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/dataflow_exception.hpp33441Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/dataflow_exception.hpp
33465===================================================================33442===================================================================
33466--- /dev/null 1970-01-01 00:00:00.000000000 +000033443--- /dev/null 1970-01-01 00:00:00.000000000 +0000
33467+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/dataflow_exception.hpp 2009-10-21 20:44:48.000000000 +100033444+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/dataflow_exception.hpp 2009-10-23 10:28:03.000000000 -0700
33468@@ -0,0 +1,80 @@33445@@ -0,0 +1,80 @@
33469+#ifndef BOOST_ARCHIVE_ITERATORS_DATAFLOW_EXCEPTION_HPP33446+#ifndef BOOST_ARCHIVE_ITERATORS_DATAFLOW_EXCEPTION_HPP
33470+#define BOOST_ARCHIVE_ITERATORS_DATAFLOW_EXCEPTION_HPP33447+#define BOOST_ARCHIVE_ITERATORS_DATAFLOW_EXCEPTION_HPP
@@ -33549,7 +33526,7 @@
33549Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/escape.hpp33526Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/escape.hpp
33550===================================================================33527===================================================================
33551--- /dev/null 1970-01-01 00:00:00.000000000 +000033528--- /dev/null 1970-01-01 00:00:00.000000000 +0000
33552+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/escape.hpp 2009-10-21 20:44:48.000000000 +100033529+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/escape.hpp 2009-10-23 10:28:03.000000000 -0700
33553@@ -0,0 +1,115 @@33530@@ -0,0 +1,115 @@
33554+#ifndef BOOST_ARCHIVE_ITERATORS_ESCAPE_HPP33531+#ifndef BOOST_ARCHIVE_ITERATORS_ESCAPE_HPP
33555+#define BOOST_ARCHIVE_ITERATORS_ESCAPE_HPP33532+#define BOOST_ARCHIVE_ITERATORS_ESCAPE_HPP
@@ -33669,7 +33646,7 @@
33669Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/head_iterator.hpp33646Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/head_iterator.hpp
33670===================================================================33647===================================================================
33671--- /dev/null 1970-01-01 00:00:00.000000000 +000033648--- /dev/null 1970-01-01 00:00:00.000000000 +0000
33672+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/head_iterator.hpp 2009-10-21 20:44:48.000000000 +100033649+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/head_iterator.hpp 2009-10-23 10:28:03.000000000 -0700
33673@@ -0,0 +1,81 @@33650@@ -0,0 +1,81 @@
33674+#ifndef BOOST_ARCHIVE_ITERATORS_HEAD_ITERATOR_HPP33651+#ifndef BOOST_ARCHIVE_ITERATORS_HEAD_ITERATOR_HPP
33675+#define BOOST_ARCHIVE_ITERATORS_HEAD_ITERATOR_HPP33652+#define BOOST_ARCHIVE_ITERATORS_HEAD_ITERATOR_HPP
@@ -33755,7 +33732,7 @@
33755Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/insert_linebreaks.hpp33732Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/insert_linebreaks.hpp
33756===================================================================33733===================================================================
33757--- /dev/null 1970-01-01 00:00:00.000000000 +000033734--- /dev/null 1970-01-01 00:00:00.000000000 +0000
33758+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/insert_linebreaks.hpp 2009-10-21 20:44:48.000000000 +100033735+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/insert_linebreaks.hpp 2009-10-23 10:28:03.000000000 -0700
33759@@ -0,0 +1,101 @@33736@@ -0,0 +1,101 @@
33760+#ifndef BOOST_ARCHIVE_ITERATORS_INSERT_LINEBREAKS_HPP33737+#ifndef BOOST_ARCHIVE_ITERATORS_INSERT_LINEBREAKS_HPP
33761+#define BOOST_ARCHIVE_ITERATORS_INSERT_LINEBREAKS_HPP33738+#define BOOST_ARCHIVE_ITERATORS_INSERT_LINEBREAKS_HPP
@@ -33861,7 +33838,7 @@
33861Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/istream_iterator.hpp33838Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/istream_iterator.hpp
33862===================================================================33839===================================================================
33863--- /dev/null 1970-01-01 00:00:00.000000000 +000033840--- /dev/null 1970-01-01 00:00:00.000000000 +0000
33864+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/istream_iterator.hpp 2009-10-21 20:44:48.000000000 +100033841+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/istream_iterator.hpp 2009-10-23 10:28:03.000000000 -0700
33865@@ -0,0 +1,95 @@33842@@ -0,0 +1,95 @@
33866+#ifndef BOOST_ARCHIVE_ITERATORS_ISTREAM_ITERATOR_HPP33843+#ifndef BOOST_ARCHIVE_ITERATORS_ISTREAM_ITERATOR_HPP
33867+#define BOOST_ARCHIVE_ITERATORS_ISTREAM_ITERATOR_HPP33844+#define BOOST_ARCHIVE_ITERATORS_ISTREAM_ITERATOR_HPP
@@ -33961,7 +33938,7 @@
33961Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/mb_from_wchar.hpp33938Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/mb_from_wchar.hpp
33962===================================================================33939===================================================================
33963--- /dev/null 1970-01-01 00:00:00.000000000 +000033940--- /dev/null 1970-01-01 00:00:00.000000000 +0000
33964+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/mb_from_wchar.hpp 2009-10-21 20:44:48.000000000 +100033941+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/mb_from_wchar.hpp 2009-10-23 10:28:03.000000000 -0700
33965@@ -0,0 +1,136 @@33942@@ -0,0 +1,136 @@
33966+#ifndef BOOST_ARCHIVE_ITERATORS_MB_FROM_WCHAR_HPP33943+#ifndef BOOST_ARCHIVE_ITERATORS_MB_FROM_WCHAR_HPP
33967+#define BOOST_ARCHIVE_ITERATORS_MB_FROM_WCHAR_HPP33944+#define BOOST_ARCHIVE_ITERATORS_MB_FROM_WCHAR_HPP
@@ -34102,7 +34079,7 @@
34102Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/ostream_iterator.hpp34079Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/ostream_iterator.hpp
34103===================================================================34080===================================================================
34104--- /dev/null 1970-01-01 00:00:00.000000000 +000034081--- /dev/null 1970-01-01 00:00:00.000000000 +0000
34105+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/ostream_iterator.hpp 2009-10-21 20:44:48.000000000 +100034082+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/ostream_iterator.hpp 2009-10-23 10:28:03.000000000 -0700
34106@@ -0,0 +1,83 @@34083@@ -0,0 +1,83 @@
34107+#ifndef BOOST_ARCHIVE_ITERATORS_OSTREAM_ITERATOR_HPP34084+#ifndef BOOST_ARCHIVE_ITERATORS_OSTREAM_ITERATOR_HPP
34108+#define BOOST_ARCHIVE_ITERATORS_OSTREAM_ITERATOR_HPP34085+#define BOOST_ARCHIVE_ITERATORS_OSTREAM_ITERATOR_HPP
@@ -34190,7 +34167,7 @@
34190Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/remove_whitespace.hpp34167Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/remove_whitespace.hpp
34191===================================================================34168===================================================================
34192--- /dev/null 1970-01-01 00:00:00.000000000 +000034169--- /dev/null 1970-01-01 00:00:00.000000000 +0000
34193+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/remove_whitespace.hpp 2009-10-21 20:44:48.000000000 +100034170+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/remove_whitespace.hpp 2009-10-23 10:28:03.000000000 -0700
34194@@ -0,0 +1,169 @@34171@@ -0,0 +1,169 @@
34195+#ifndef BOOST_ARCHIVE_ITERATORS_REMOVE_WHITESPACE_HPP34172+#ifndef BOOST_ARCHIVE_ITERATORS_REMOVE_WHITESPACE_HPP
34196+#define BOOST_ARCHIVE_ITERATORS_REMOVE_WHITESPACE_HPP34173+#define BOOST_ARCHIVE_ITERATORS_REMOVE_WHITESPACE_HPP
@@ -34364,7 +34341,7 @@
34364Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/transform_width.hpp34341Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/transform_width.hpp
34365===================================================================34342===================================================================
34366--- /dev/null 1970-01-01 00:00:00.000000000 +000034343--- /dev/null 1970-01-01 00:00:00.000000000 +0000
34367+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/transform_width.hpp 2009-10-21 20:44:48.000000000 +100034344+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/transform_width.hpp 2009-10-23 10:28:03.000000000 -0700
34368@@ -0,0 +1,168 @@34345@@ -0,0 +1,168 @@
34369+#ifndef BOOST_ARCHIVE_ITERATORS_TRANSFORM_WIDTH_HPP34346+#ifndef BOOST_ARCHIVE_ITERATORS_TRANSFORM_WIDTH_HPP
34370+#define BOOST_ARCHIVE_ITERATORS_TRANSFORM_WIDTH_HPP34347+#define BOOST_ARCHIVE_ITERATORS_TRANSFORM_WIDTH_HPP
@@ -34537,7 +34514,7 @@
34537Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/unescape.hpp34514Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/unescape.hpp
34538===================================================================34515===================================================================
34539--- /dev/null 1970-01-01 00:00:00.000000000 +000034516--- /dev/null 1970-01-01 00:00:00.000000000 +0000
34540+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/unescape.hpp 2009-10-21 20:44:48.000000000 +100034517+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/unescape.hpp 2009-10-23 10:28:03.000000000 -0700
34541@@ -0,0 +1,94 @@34518@@ -0,0 +1,94 @@
34542+#ifndef BOOST_ARCHIVE_ITERATORS_UNESCAPE_HPP34519+#ifndef BOOST_ARCHIVE_ITERATORS_UNESCAPE_HPP
34543+#define BOOST_ARCHIVE_ITERATORS_UNESCAPE_HPP34520+#define BOOST_ARCHIVE_ITERATORS_UNESCAPE_HPP
@@ -34636,7 +34613,7 @@
34636Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/wchar_from_mb.hpp34613Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/wchar_from_mb.hpp
34637===================================================================34614===================================================================
34638--- /dev/null 1970-01-01 00:00:00.000000000 +000034615--- /dev/null 1970-01-01 00:00:00.000000000 +0000
34639+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/wchar_from_mb.hpp 2009-10-21 20:44:48.000000000 +100034616+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/wchar_from_mb.hpp 2009-10-23 10:28:03.000000000 -0700
34640@@ -0,0 +1,129 @@34617@@ -0,0 +1,129 @@
34641+#ifndef BOOST_ARCHIVE_ITERATORS_WCHAR_FROM_MB_HPP34618+#ifndef BOOST_ARCHIVE_ITERATORS_WCHAR_FROM_MB_HPP
34642+#define BOOST_ARCHIVE_ITERATORS_WCHAR_FROM_MB_HPP34619+#define BOOST_ARCHIVE_ITERATORS_WCHAR_FROM_MB_HPP
@@ -34770,7 +34747,7 @@
34770Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/xml_escape.hpp34747Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/xml_escape.hpp
34771===================================================================34748===================================================================
34772--- /dev/null 1970-01-01 00:00:00.000000000 +000034749--- /dev/null 1970-01-01 00:00:00.000000000 +0000
34773+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/xml_escape.hpp 2009-10-21 20:44:48.000000000 +100034750+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/xml_escape.hpp 2009-10-23 10:28:03.000000000 -0700
34774@@ -0,0 +1,125 @@34751@@ -0,0 +1,125 @@
34775+#ifndef BOOST_ARCHIVE_ITERATORS_XML_ESCAPE_HPP34752+#ifndef BOOST_ARCHIVE_ITERATORS_XML_ESCAPE_HPP
34776+#define BOOST_ARCHIVE_ITERATORS_XML_ESCAPE_HPP34753+#define BOOST_ARCHIVE_ITERATORS_XML_ESCAPE_HPP
@@ -34900,7 +34877,7 @@
34900Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/xml_unescape.hpp34877Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/xml_unescape.hpp
34901===================================================================34878===================================================================
34902--- /dev/null 1970-01-01 00:00:00.000000000 +000034879--- /dev/null 1970-01-01 00:00:00.000000000 +0000
34903+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/xml_unescape.hpp 2009-10-21 20:44:48.000000000 +100034880+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/xml_unescape.hpp 2009-10-23 10:28:03.000000000 -0700
34904@@ -0,0 +1,118 @@34881@@ -0,0 +1,118 @@
34905+#ifndef BOOST_ARCHIVE_ITERATORS_XML_UNESCAPE_HPP34882+#ifndef BOOST_ARCHIVE_ITERATORS_XML_UNESCAPE_HPP
34906+#define BOOST_ARCHIVE_ITERATORS_XML_UNESCAPE_HPP34883+#define BOOST_ARCHIVE_ITERATORS_XML_UNESCAPE_HPP
@@ -35023,7 +35000,7 @@
35023Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/xml_unescape_exception.hpp35000Index: mysql-5.0.86/sql/oqgraph/boost/archive/iterators/xml_unescape_exception.hpp
35024===================================================================35001===================================================================
35025--- /dev/null 1970-01-01 00:00:00.000000000 +000035002--- /dev/null 1970-01-01 00:00:00.000000000 +0000
35026+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/xml_unescape_exception.hpp 2009-10-21 20:44:48.000000000 +100035003+++ mysql-5.0.86/sql/oqgraph/boost/archive/iterators/xml_unescape_exception.hpp 2009-10-23 10:28:03.000000000 -0700
35027@@ -0,0 +1,49 @@35004@@ -0,0 +1,49 @@
35028+#ifndef BOOST_ARCHIVE_ITERATORS_XML_UNESCAPE_EXCEPTION_HPP35005+#ifndef BOOST_ARCHIVE_ITERATORS_XML_UNESCAPE_EXCEPTION_HPP
35029+#define BOOST_ARCHIVE_ITERATORS_XML_UNESCAPE_EXCEPTION_HPP35006+#define BOOST_ARCHIVE_ITERATORS_XML_UNESCAPE_EXCEPTION_HPP
@@ -35077,7 +35054,7 @@
35077Index: mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_binary_iarchive.hpp35054Index: mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_binary_iarchive.hpp
35078===================================================================35055===================================================================
35079--- /dev/null 1970-01-01 00:00:00.000000000 +000035056--- /dev/null 1970-01-01 00:00:00.000000000 +0000
35080+++ mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_binary_iarchive.hpp 2009-10-21 20:44:48.000000000 +100035057+++ mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_binary_iarchive.hpp 2009-10-23 10:28:03.000000000 -0700
35081@@ -0,0 +1,45 @@35058@@ -0,0 +1,45 @@
35082+#ifndef BOOST_ARCHIVE_POLYMORPHIC_BINARY_IARCHIVE_HPP35059+#ifndef BOOST_ARCHIVE_POLYMORPHIC_BINARY_IARCHIVE_HPP
35083+#define BOOST_ARCHIVE_POLYMORPHIC_BINARY_IARCHIVE_HPP35060+#define BOOST_ARCHIVE_POLYMORPHIC_BINARY_IARCHIVE_HPP
@@ -35127,7 +35104,7 @@
35127Index: mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_binary_oarchive.hpp35104Index: mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_binary_oarchive.hpp
35128===================================================================35105===================================================================
35129--- /dev/null 1970-01-01 00:00:00.000000000 +000035106--- /dev/null 1970-01-01 00:00:00.000000000 +0000
35130+++ mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_binary_oarchive.hpp 2009-10-21 20:44:48.000000000 +100035107+++ mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_binary_oarchive.hpp 2009-10-23 10:28:03.000000000 -0700
35131@@ -0,0 +1,43 @@35108@@ -0,0 +1,43 @@
35132+#ifndef BOOST_ARCHIVE_POLYMORPHIC_BINARY_OARCHIVE_HPP35109+#ifndef BOOST_ARCHIVE_POLYMORPHIC_BINARY_OARCHIVE_HPP
35133+#define BOOST_ARCHIVE_POLYMORPHIC_BINARY_OARCHIVE_HPP35110+#define BOOST_ARCHIVE_POLYMORPHIC_BINARY_OARCHIVE_HPP
@@ -35175,7 +35152,7 @@
35175Index: mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_iarchive.hpp35152Index: mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_iarchive.hpp
35176===================================================================35153===================================================================
35177--- /dev/null 1970-01-01 00:00:00.000000000 +000035154--- /dev/null 1970-01-01 00:00:00.000000000 +0000
35178+++ mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_iarchive.hpp 2009-10-21 20:44:48.000000000 +100035155+++ mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_iarchive.hpp 2009-10-23 10:28:03.000000000 -0700
35179@@ -0,0 +1,197 @@35156@@ -0,0 +1,197 @@
35180+#ifndef BOOST_ARCHIVE_POLYMORPHIC_IARCHIVE_HPP35157+#ifndef BOOST_ARCHIVE_POLYMORPHIC_IARCHIVE_HPP
35181+#define BOOST_ARCHIVE_POLYMORPHIC_IARCHIVE_HPP35158+#define BOOST_ARCHIVE_POLYMORPHIC_IARCHIVE_HPP
@@ -35377,7 +35354,7 @@
35377Index: mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_oarchive.hpp35354Index: mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_oarchive.hpp
35378===================================================================35355===================================================================
35379--- /dev/null 1970-01-01 00:00:00.000000000 +000035356--- /dev/null 1970-01-01 00:00:00.000000000 +0000
35380+++ mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_oarchive.hpp 2009-10-21 20:44:48.000000000 +100035357+++ mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_oarchive.hpp 2009-10-23 10:28:03.000000000 -0700
35381@@ -0,0 +1,174 @@35358@@ -0,0 +1,174 @@
35382+#ifndef BOOST_ARCHIVE_POLYMORPHIC_OARCHIVE_HPP35359+#ifndef BOOST_ARCHIVE_POLYMORPHIC_OARCHIVE_HPP
35383+#define BOOST_ARCHIVE_POLYMORPHIC_OARCHIVE_HPP35360+#define BOOST_ARCHIVE_POLYMORPHIC_OARCHIVE_HPP
@@ -35556,7 +35533,7 @@
35556Index: mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_text_iarchive.hpp35533Index: mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_text_iarchive.hpp
35557===================================================================35534===================================================================
35558--- /dev/null 1970-01-01 00:00:00.000000000 +000035535--- /dev/null 1970-01-01 00:00:00.000000000 +0000
35559+++ mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_text_iarchive.hpp 2009-10-21 20:44:48.000000000 +100035536+++ mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_text_iarchive.hpp 2009-10-23 10:28:03.000000000 -0700
35560@@ -0,0 +1,45 @@35537@@ -0,0 +1,45 @@
35561+#ifndef BOOST_ARCHIVE_POLYMORPHIC_TEXT_IARCHIVE_HPP35538+#ifndef BOOST_ARCHIVE_POLYMORPHIC_TEXT_IARCHIVE_HPP
35562+#define BOOST_ARCHIVE_POLYMORPHIC_TEXT_IARCHIVE_HPP35539+#define BOOST_ARCHIVE_POLYMORPHIC_TEXT_IARCHIVE_HPP
@@ -35606,7 +35583,7 @@
35606Index: mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_text_oarchive.hpp35583Index: mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_text_oarchive.hpp
35607===================================================================35584===================================================================
35608--- /dev/null 1970-01-01 00:00:00.000000000 +000035585--- /dev/null 1970-01-01 00:00:00.000000000 +0000
35609+++ mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_text_oarchive.hpp 2009-10-21 20:44:48.000000000 +100035586+++ mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_text_oarchive.hpp 2009-10-23 10:28:03.000000000 -0700
35610@@ -0,0 +1,39 @@35587@@ -0,0 +1,39 @@
35611+#ifndef BOOST_ARCHIVE_POLYMORPHIC_TEXT_OARCHIVE_HPP35588+#ifndef BOOST_ARCHIVE_POLYMORPHIC_TEXT_OARCHIVE_HPP
35612+#define BOOST_ARCHIVE_POLYMORPHIC_TEXT_OARCHIVE_HPP35589+#define BOOST_ARCHIVE_POLYMORPHIC_TEXT_OARCHIVE_HPP
@@ -35650,7 +35627,7 @@
35650Index: mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_text_wiarchive.hpp35627Index: mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_text_wiarchive.hpp
35651===================================================================35628===================================================================
35652--- /dev/null 1970-01-01 00:00:00.000000000 +000035629--- /dev/null 1970-01-01 00:00:00.000000000 +0000
35653+++ mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_text_wiarchive.hpp 2009-10-21 20:44:48.000000000 +100035630+++ mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_text_wiarchive.hpp 2009-10-23 10:28:03.000000000 -0700
35654@@ -0,0 +1,44 @@35631@@ -0,0 +1,44 @@
35655+#ifndef BOOST_ARCHIVE_POLYMORPHIC_TEXT_WIARCHIVE_HPP35632+#ifndef BOOST_ARCHIVE_POLYMORPHIC_TEXT_WIARCHIVE_HPP
35656+#define BOOST_ARCHIVE_POLYMORPHIC_TEXT_WIARCHIVE_HPP35633+#define BOOST_ARCHIVE_POLYMORPHIC_TEXT_WIARCHIVE_HPP
@@ -35699,7 +35676,7 @@
35699Index: mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_text_woarchive.hpp35676Index: mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_text_woarchive.hpp
35700===================================================================35677===================================================================
35701--- /dev/null 1970-01-01 00:00:00.000000000 +000035678--- /dev/null 1970-01-01 00:00:00.000000000 +0000
35702+++ mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_text_woarchive.hpp 2009-10-21 20:44:48.000000000 +100035679+++ mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_text_woarchive.hpp 2009-10-23 10:28:03.000000000 -0700
35703@@ -0,0 +1,44 @@35680@@ -0,0 +1,44 @@
35704+#ifndef BOOST_ARCHIVE_POLYMORPHIC_TEXT_WOARCHIVE_HPP35681+#ifndef BOOST_ARCHIVE_POLYMORPHIC_TEXT_WOARCHIVE_HPP
35705+#define BOOST_ARCHIVE_POLYMORPHIC_TEXT_WOARCHIVE_HPP35682+#define BOOST_ARCHIVE_POLYMORPHIC_TEXT_WOARCHIVE_HPP
@@ -35748,7 +35725,7 @@
35748Index: mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_xml_iarchive.hpp35725Index: mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_xml_iarchive.hpp
35749===================================================================35726===================================================================
35750--- /dev/null 1970-01-01 00:00:00.000000000 +000035727--- /dev/null 1970-01-01 00:00:00.000000000 +0000
35751+++ mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_xml_iarchive.hpp 2009-10-21 20:44:48.000000000 +100035728+++ mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_xml_iarchive.hpp 2009-10-23 10:28:03.000000000 -0700
35752@@ -0,0 +1,45 @@35729@@ -0,0 +1,45 @@
35753+#ifndef BOOST_ARCHIVE_POLYMORPHIC_XML_IARCHIVE_HPP35730+#ifndef BOOST_ARCHIVE_POLYMORPHIC_XML_IARCHIVE_HPP
35754+#define BOOST_ARCHIVE_POLYMORPHIC_XML_IARCHIVE_HPP35731+#define BOOST_ARCHIVE_POLYMORPHIC_XML_IARCHIVE_HPP
@@ -35798,7 +35775,7 @@
35798Index: mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_xml_oarchive.hpp35775Index: mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_xml_oarchive.hpp
35799===================================================================35776===================================================================
35800--- /dev/null 1970-01-01 00:00:00.000000000 +000035777--- /dev/null 1970-01-01 00:00:00.000000000 +0000
35801+++ mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_xml_oarchive.hpp 2009-10-21 20:44:48.000000000 +100035778+++ mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_xml_oarchive.hpp 2009-10-23 10:28:03.000000000 -0700
35802@@ -0,0 +1,39 @@35779@@ -0,0 +1,39 @@
35803+#ifndef BOOST_ARCHIVE_POLYMORPHIC_XML_OARCHIVE_HPP35780+#ifndef BOOST_ARCHIVE_POLYMORPHIC_XML_OARCHIVE_HPP
35804+#define BOOST_ARCHIVE_POLYMORPHIC_XML_OARCHIVE_HPP35781+#define BOOST_ARCHIVE_POLYMORPHIC_XML_OARCHIVE_HPP
@@ -35842,7 +35819,7 @@
35842Index: mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_xml_wiarchive.hpp35819Index: mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_xml_wiarchive.hpp
35843===================================================================35820===================================================================
35844--- /dev/null 1970-01-01 00:00:00.000000000 +000035821--- /dev/null 1970-01-01 00:00:00.000000000 +0000
35845+++ mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_xml_wiarchive.hpp 2009-10-21 20:44:48.000000000 +100035822+++ mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_xml_wiarchive.hpp 2009-10-23 10:28:03.000000000 -0700
35846@@ -0,0 +1,44 @@35823@@ -0,0 +1,44 @@
35847+#ifndef BOOST_ARCHIVE_POLYMORPHIC_XML_WIARCHIVE_HPP35824+#ifndef BOOST_ARCHIVE_POLYMORPHIC_XML_WIARCHIVE_HPP
35848+#define BOOST_ARCHIVE_POLYMORPHIC_XML_WIARCHIVE_HPP35825+#define BOOST_ARCHIVE_POLYMORPHIC_XML_WIARCHIVE_HPP
@@ -35891,7 +35868,7 @@
35891Index: mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_xml_woarchive.hpp35868Index: mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_xml_woarchive.hpp
35892===================================================================35869===================================================================
35893--- /dev/null 1970-01-01 00:00:00.000000000 +000035870--- /dev/null 1970-01-01 00:00:00.000000000 +0000
35894+++ mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_xml_woarchive.hpp 2009-10-21 20:44:48.000000000 +100035871+++ mysql-5.0.86/sql/oqgraph/boost/archive/polymorphic_xml_woarchive.hpp 2009-10-23 10:28:03.000000000 -0700
35895@@ -0,0 +1,44 @@35872@@ -0,0 +1,44 @@
35896+#ifndef BOOST_ARCHIVE_POLYMORPHIC_XML_WOARCHIVE_HPP35873+#ifndef BOOST_ARCHIVE_POLYMORPHIC_XML_WOARCHIVE_HPP
35897+#define BOOST_ARCHIVE_POLYMORPHIC_XML_WOARCHIVE_HPP35874+#define BOOST_ARCHIVE_POLYMORPHIC_XML_WOARCHIVE_HPP
@@ -35940,7 +35917,7 @@
35940Index: mysql-5.0.86/sql/oqgraph/boost/archive/shared_ptr_helper.hpp35917Index: mysql-5.0.86/sql/oqgraph/boost/archive/shared_ptr_helper.hpp
35941===================================================================35918===================================================================
35942--- /dev/null 1970-01-01 00:00:00.000000000 +000035919--- /dev/null 1970-01-01 00:00:00.000000000 +0000
35943+++ mysql-5.0.86/sql/oqgraph/boost/archive/shared_ptr_helper.hpp 2009-10-21 20:44:48.000000000 +100035920+++ mysql-5.0.86/sql/oqgraph/boost/archive/shared_ptr_helper.hpp 2009-10-23 10:28:03.000000000 -0700
35944@@ -0,0 +1,157 @@35921@@ -0,0 +1,157 @@
35945+#ifndef BOOST_ARCHIVE_SHARED_PTR_HELPER_HPP35922+#ifndef BOOST_ARCHIVE_SHARED_PTR_HELPER_HPP
35946+#define BOOST_ARCHIVE_SHARED_PTR_HELPER_HPP35923+#define BOOST_ARCHIVE_SHARED_PTR_HELPER_HPP
@@ -36102,7 +36079,7 @@
36102Index: mysql-5.0.86/sql/oqgraph/boost/archive/text_iarchive.hpp36079Index: mysql-5.0.86/sql/oqgraph/boost/archive/text_iarchive.hpp
36103===================================================================36080===================================================================
36104--- /dev/null 1970-01-01 00:00:00.000000000 +000036081--- /dev/null 1970-01-01 00:00:00.000000000 +0000
36105+++ mysql-5.0.86/sql/oqgraph/boost/archive/text_iarchive.hpp 2009-10-21 20:44:48.000000000 +100036082+++ mysql-5.0.86/sql/oqgraph/boost/archive/text_iarchive.hpp 2009-10-23 10:28:03.000000000 -0700
36106@@ -0,0 +1,123 @@36083@@ -0,0 +1,123 @@
36107+#ifndef BOOST_ARCHIVE_TEXT_IARCHIVE_HPP36084+#ifndef BOOST_ARCHIVE_TEXT_IARCHIVE_HPP
36108+#define BOOST_ARCHIVE_TEXT_IARCHIVE_HPP36085+#define BOOST_ARCHIVE_TEXT_IARCHIVE_HPP
@@ -36230,7 +36207,7 @@
36230Index: mysql-5.0.86/sql/oqgraph/boost/archive/text_oarchive.hpp36207Index: mysql-5.0.86/sql/oqgraph/boost/archive/text_oarchive.hpp
36231===================================================================36208===================================================================
36232--- /dev/null 1970-01-01 00:00:00.000000000 +000036209--- /dev/null 1970-01-01 00:00:00.000000000 +0000
36233+++ mysql-5.0.86/sql/oqgraph/boost/archive/text_oarchive.hpp 2009-10-21 20:44:48.000000000 +100036210+++ mysql-5.0.86/sql/oqgraph/boost/archive/text_oarchive.hpp 2009-10-23 10:28:03.000000000 -0700
36234@@ -0,0 +1,101 @@36211@@ -0,0 +1,101 @@
36235+#ifndef BOOST_ARCHIVE_TEXT_OARCHIVE_HPP36212+#ifndef BOOST_ARCHIVE_TEXT_OARCHIVE_HPP
36236+#define BOOST_ARCHIVE_TEXT_OARCHIVE_HPP36213+#define BOOST_ARCHIVE_TEXT_OARCHIVE_HPP
@@ -36336,7 +36313,7 @@
36336Index: mysql-5.0.86/sql/oqgraph/boost/archive/text_wiarchive.hpp36313Index: mysql-5.0.86/sql/oqgraph/boost/archive/text_wiarchive.hpp
36337===================================================================36314===================================================================
36338--- /dev/null 1970-01-01 00:00:00.000000000 +000036315--- /dev/null 1970-01-01 00:00:00.000000000 +0000
36339+++ mysql-5.0.86/sql/oqgraph/boost/archive/text_wiarchive.hpp 2009-10-21 20:44:48.000000000 +100036316+++ mysql-5.0.86/sql/oqgraph/boost/archive/text_wiarchive.hpp 2009-10-23 10:28:03.000000000 -0700
36340@@ -0,0 +1,122 @@36317@@ -0,0 +1,122 @@
36341+#ifndef BOOST_ARCHIVE_TEXT_WIARCHIVE_HPP36318+#ifndef BOOST_ARCHIVE_TEXT_WIARCHIVE_HPP
36342+#define BOOST_ARCHIVE_TEXT_WIARCHIVE_HPP36319+#define BOOST_ARCHIVE_TEXT_WIARCHIVE_HPP
@@ -36463,7 +36440,7 @@
36463Index: mysql-5.0.86/sql/oqgraph/boost/archive/text_woarchive.hpp36440Index: mysql-5.0.86/sql/oqgraph/boost/archive/text_woarchive.hpp
36464===================================================================36441===================================================================
36465--- /dev/null 1970-01-01 00:00:00.000000000 +000036442--- /dev/null 1970-01-01 00:00:00.000000000 +0000
36466+++ mysql-5.0.86/sql/oqgraph/boost/archive/text_woarchive.hpp 2009-10-21 20:44:48.000000000 +100036443+++ mysql-5.0.86/sql/oqgraph/boost/archive/text_woarchive.hpp 2009-10-23 10:28:03.000000000 -0700
36467@@ -0,0 +1,128 @@36444@@ -0,0 +1,128 @@
36468+#ifndef BOOST_ARCHIVE_TEXT_WOARCHIVE_HPP36445+#ifndef BOOST_ARCHIVE_TEXT_WOARCHIVE_HPP
36469+#define BOOST_ARCHIVE_TEXT_WOARCHIVE_HPP36446+#define BOOST_ARCHIVE_TEXT_WOARCHIVE_HPP
@@ -36596,7 +36573,7 @@
36596Index: mysql-5.0.86/sql/oqgraph/boost/archive/tmpdir.hpp36573Index: mysql-5.0.86/sql/oqgraph/boost/archive/tmpdir.hpp
36597===================================================================36574===================================================================
36598--- /dev/null 1970-01-01 00:00:00.000000000 +000036575--- /dev/null 1970-01-01 00:00:00.000000000 +0000
36599+++ mysql-5.0.86/sql/oqgraph/boost/archive/tmpdir.hpp 2009-10-21 20:44:48.000000000 +100036576+++ mysql-5.0.86/sql/oqgraph/boost/archive/tmpdir.hpp 2009-10-23 10:28:03.000000000 -0700
36600@@ -0,0 +1,50 @@36577@@ -0,0 +1,50 @@
36601+#ifndef BOOST_ARCHIVE_TMPDIR_HPP36578+#ifndef BOOST_ARCHIVE_TMPDIR_HPP
36602+#define BOOST_ARCHIVE_TMPDIR_HPP36579+#define BOOST_ARCHIVE_TMPDIR_HPP
@@ -36651,7 +36628,7 @@
36651Index: mysql-5.0.86/sql/oqgraph/boost/archive/wcslen.hpp36628Index: mysql-5.0.86/sql/oqgraph/boost/archive/wcslen.hpp
36652===================================================================36629===================================================================
36653--- /dev/null 1970-01-01 00:00:00.000000000 +000036630--- /dev/null 1970-01-01 00:00:00.000000000 +0000
36654+++ mysql-5.0.86/sql/oqgraph/boost/archive/wcslen.hpp 2009-10-21 20:44:48.000000000 +100036631+++ mysql-5.0.86/sql/oqgraph/boost/archive/wcslen.hpp 2009-10-23 10:28:03.000000000 -0700
36655@@ -0,0 +1,56 @@36632@@ -0,0 +1,56 @@
36656+#ifndef BOOST_ARCHIVE_WCSLEN_HPP36633+#ifndef BOOST_ARCHIVE_WCSLEN_HPP
36657+#define BOOST_ARCHIVE_WCSLEN_HPP36634+#define BOOST_ARCHIVE_WCSLEN_HPP
@@ -36712,7 +36689,7 @@
36712Index: mysql-5.0.86/sql/oqgraph/boost/archive/xml_archive_exception.hpp36689Index: mysql-5.0.86/sql/oqgraph/boost/archive/xml_archive_exception.hpp
36713===================================================================36690===================================================================
36714--- /dev/null 1970-01-01 00:00:00.000000000 +000036691--- /dev/null 1970-01-01 00:00:00.000000000 +0000
36715+++ mysql-5.0.86/sql/oqgraph/boost/archive/xml_archive_exception.hpp 2009-10-21 20:44:48.000000000 +100036692+++ mysql-5.0.86/sql/oqgraph/boost/archive/xml_archive_exception.hpp 2009-10-23 10:28:03.000000000 -0700
36716@@ -0,0 +1,66 @@36693@@ -0,0 +1,66 @@
36717+#ifndef BOOST_ARCHIVE_XML_ARCHIVE_EXCEPTION_HPP36694+#ifndef BOOST_ARCHIVE_XML_ARCHIVE_EXCEPTION_HPP
36718+#define BOOST_ARCHIVE_XML_ARCHIVE_EXCEPTION_HPP36695+#define BOOST_ARCHIVE_XML_ARCHIVE_EXCEPTION_HPP
@@ -36783,7 +36760,7 @@
36783Index: mysql-5.0.86/sql/oqgraph/boost/archive/xml_iarchive.hpp36760Index: mysql-5.0.86/sql/oqgraph/boost/archive/xml_iarchive.hpp
36784===================================================================36761===================================================================
36785--- /dev/null 1970-01-01 00:00:00.000000000 +000036762--- /dev/null 1970-01-01 00:00:00.000000000 +0000
36786+++ mysql-5.0.86/sql/oqgraph/boost/archive/xml_iarchive.hpp 2009-10-21 20:44:48.000000000 +100036763+++ mysql-5.0.86/sql/oqgraph/boost/archive/xml_iarchive.hpp 2009-10-23 10:28:03.000000000 -0700
36787@@ -0,0 +1,132 @@36764@@ -0,0 +1,132 @@
36788+#ifndef BOOST_ARCHIVE_XML_IARCHIVE_HPP36765+#ifndef BOOST_ARCHIVE_XML_IARCHIVE_HPP
36789+#define BOOST_ARCHIVE_XML_IARCHIVE_HPP36766+#define BOOST_ARCHIVE_XML_IARCHIVE_HPP
@@ -36920,7 +36897,7 @@
36920Index: mysql-5.0.86/sql/oqgraph/boost/archive/xml_oarchive.hpp36897Index: mysql-5.0.86/sql/oqgraph/boost/archive/xml_oarchive.hpp
36921===================================================================36898===================================================================
36922--- /dev/null 1970-01-01 00:00:00.000000000 +000036899--- /dev/null 1970-01-01 00:00:00.000000000 +0000
36923+++ mysql-5.0.86/sql/oqgraph/boost/archive/xml_oarchive.hpp 2009-10-21 20:44:48.000000000 +100036900+++ mysql-5.0.86/sql/oqgraph/boost/archive/xml_oarchive.hpp 2009-10-23 10:28:03.000000000 -0700
36924@@ -0,0 +1,114 @@36901@@ -0,0 +1,114 @@
36925+#ifndef BOOST_ARCHIVE_XML_OARCHIVE_HPP36902+#ifndef BOOST_ARCHIVE_XML_OARCHIVE_HPP
36926+#define BOOST_ARCHIVE_XML_OARCHIVE_HPP36903+#define BOOST_ARCHIVE_XML_OARCHIVE_HPP
@@ -37039,7 +37016,7 @@
37039Index: mysql-5.0.86/sql/oqgraph/boost/archive/xml_wiarchive.hpp37016Index: mysql-5.0.86/sql/oqgraph/boost/archive/xml_wiarchive.hpp
37040===================================================================37017===================================================================
37041--- /dev/null 1970-01-01 00:00:00.000000000 +000037018--- /dev/null 1970-01-01 00:00:00.000000000 +0000
37042+++ mysql-5.0.86/sql/oqgraph/boost/archive/xml_wiarchive.hpp 2009-10-21 20:44:48.000000000 +100037019+++ mysql-5.0.86/sql/oqgraph/boost/archive/xml_wiarchive.hpp 2009-10-23 10:28:03.000000000 -0700
37043@@ -0,0 +1,137 @@37020@@ -0,0 +1,137 @@
37044+#ifndef BOOST_ARCHIVE_XML_WIARCHIVE_HPP37021+#ifndef BOOST_ARCHIVE_XML_WIARCHIVE_HPP
37045+#define BOOST_ARCHIVE_XML_WIARCHIVE_HPP37022+#define BOOST_ARCHIVE_XML_WIARCHIVE_HPP
@@ -37181,7 +37158,7 @@
37181Index: mysql-5.0.86/sql/oqgraph/boost/archive/xml_woarchive.hpp37158Index: mysql-5.0.86/sql/oqgraph/boost/archive/xml_woarchive.hpp
37182===================================================================37159===================================================================
37183--- /dev/null 1970-01-01 00:00:00.000000000 +000037160--- /dev/null 1970-01-01 00:00:00.000000000 +0000
37184+++ mysql-5.0.86/sql/oqgraph/boost/archive/xml_woarchive.hpp 2009-10-21 20:44:48.000000000 +100037161+++ mysql-5.0.86/sql/oqgraph/boost/archive/xml_woarchive.hpp 2009-10-23 10:28:03.000000000 -0700
37185@@ -0,0 +1,129 @@37162@@ -0,0 +1,129 @@
37186+#ifndef BOOST_ARCHIVE_XML_WOARCHIVE_HPP37163+#ifndef BOOST_ARCHIVE_XML_WOARCHIVE_HPP
37187+#define BOOST_ARCHIVE_XML_WOARCHIVE_HPP37164+#define BOOST_ARCHIVE_XML_WOARCHIVE_HPP
@@ -37315,7 +37292,7 @@
37315Index: mysql-5.0.86/sql/oqgraph/boost/array.hpp37292Index: mysql-5.0.86/sql/oqgraph/boost/array.hpp
37316===================================================================37293===================================================================
37317--- /dev/null 1970-01-01 00:00:00.000000000 +000037294--- /dev/null 1970-01-01 00:00:00.000000000 +0000
37318+++ mysql-5.0.86/sql/oqgraph/boost/array.hpp 2009-10-21 20:44:48.000000000 +100037295+++ mysql-5.0.86/sql/oqgraph/boost/array.hpp 2009-10-23 10:28:03.000000000 -0700
37319@@ -0,0 +1,321 @@37296@@ -0,0 +1,321 @@
37320+/* The following code declares class array,37297+/* The following code declares class array,
37321+ * an STL container (as wrapper) for arrays of constant size.37298+ * an STL container (as wrapper) for arrays of constant size.
@@ -37641,7 +37618,7 @@
37641Index: mysql-5.0.86/sql/oqgraph/boost/asio.hpp37618Index: mysql-5.0.86/sql/oqgraph/boost/asio.hpp
37642===================================================================37619===================================================================
37643--- /dev/null 1970-01-01 00:00:00.000000000 +000037620--- /dev/null 1970-01-01 00:00:00.000000000 +0000
37644+++ mysql-5.0.86/sql/oqgraph/boost/asio.hpp 2009-10-21 20:44:48.000000000 +100037621+++ mysql-5.0.86/sql/oqgraph/boost/asio.hpp 2009-10-23 10:28:03.000000000 -0700
37645@@ -0,0 +1,100 @@37622@@ -0,0 +1,100 @@
37646+//37623+//
37647+// asio.hpp37624+// asio.hpp
@@ -37746,7 +37723,7 @@
37746Index: mysql-5.0.86/sql/oqgraph/boost/asio/basic_datagram_socket.hpp37723Index: mysql-5.0.86/sql/oqgraph/boost/asio/basic_datagram_socket.hpp
37747===================================================================37724===================================================================
37748--- /dev/null 1970-01-01 00:00:00.000000000 +000037725--- /dev/null 1970-01-01 00:00:00.000000000 +0000
37749+++ mysql-5.0.86/sql/oqgraph/boost/asio/basic_datagram_socket.hpp 2009-10-21 20:44:48.000000000 +100037726+++ mysql-5.0.86/sql/oqgraph/boost/asio/basic_datagram_socket.hpp 2009-10-23 10:28:03.000000000 -0700
37750@@ -0,0 +1,805 @@37727@@ -0,0 +1,805 @@
37751+//37728+//
37752+// basic_datagram_socket.hpp37729+// basic_datagram_socket.hpp
@@ -38556,7 +38533,7 @@
38556Index: mysql-5.0.86/sql/oqgraph/boost/asio/basic_deadline_timer.hpp38533Index: mysql-5.0.86/sql/oqgraph/boost/asio/basic_deadline_timer.hpp
38557===================================================================38534===================================================================
38558--- /dev/null 1970-01-01 00:00:00.000000000 +000038535--- /dev/null 1970-01-01 00:00:00.000000000 +0000
38559+++ mysql-5.0.86/sql/oqgraph/boost/asio/basic_deadline_timer.hpp 2009-10-21 20:44:48.000000000 +100038536+++ mysql-5.0.86/sql/oqgraph/boost/asio/basic_deadline_timer.hpp 2009-10-23 10:28:03.000000000 -0700
38560@@ -0,0 +1,383 @@38537@@ -0,0 +1,383 @@
38561+//38538+//
38562+// basic_deadline_timer.hpp38539+// basic_deadline_timer.hpp
@@ -38944,7 +38921,7 @@
38944Index: mysql-5.0.86/sql/oqgraph/boost/asio/basic_io_object.hpp38921Index: mysql-5.0.86/sql/oqgraph/boost/asio/basic_io_object.hpp
38945===================================================================38922===================================================================
38946--- /dev/null 1970-01-01 00:00:00.000000000 +000038923--- /dev/null 1970-01-01 00:00:00.000000000 +0000
38947+++ mysql-5.0.86/sql/oqgraph/boost/asio/basic_io_object.hpp 2009-10-21 20:44:48.000000000 +100038924+++ mysql-5.0.86/sql/oqgraph/boost/asio/basic_io_object.hpp 2009-10-23 10:28:03.000000000 -0700
38948@@ -0,0 +1,99 @@38925@@ -0,0 +1,99 @@
38949+//38926+//
38950+// basic_io_object.hpp38927+// basic_io_object.hpp
@@ -39048,7 +39025,7 @@
39048Index: mysql-5.0.86/sql/oqgraph/boost/asio/basic_raw_socket.hpp39025Index: mysql-5.0.86/sql/oqgraph/boost/asio/basic_raw_socket.hpp
39049===================================================================39026===================================================================
39050--- /dev/null 1970-01-01 00:00:00.000000000 +000039027--- /dev/null 1970-01-01 00:00:00.000000000 +0000
39051+++ mysql-5.0.86/sql/oqgraph/boost/asio/basic_raw_socket.hpp 2009-10-21 20:44:48.000000000 +100039028+++ mysql-5.0.86/sql/oqgraph/boost/asio/basic_raw_socket.hpp 2009-10-23 10:28:03.000000000 -0700
39052@@ -0,0 +1,800 @@39029@@ -0,0 +1,800 @@
39053+//39030+//
39054+// basic_raw_socket.hpp39031+// basic_raw_socket.hpp
@@ -39853,7 +39830,7 @@
39853Index: mysql-5.0.86/sql/oqgraph/boost/asio/basic_serial_port.hpp39830Index: mysql-5.0.86/sql/oqgraph/boost/asio/basic_serial_port.hpp
39854===================================================================39831===================================================================
39855--- /dev/null 1970-01-01 00:00:00.000000000 +000039832--- /dev/null 1970-01-01 00:00:00.000000000 +0000
39856+++ mysql-5.0.86/sql/oqgraph/boost/asio/basic_serial_port.hpp 2009-10-21 20:44:48.000000000 +100039833+++ mysql-5.0.86/sql/oqgraph/boost/asio/basic_serial_port.hpp 2009-10-23 10:28:03.000000000 -0700
39857@@ -0,0 +1,624 @@39834@@ -0,0 +1,624 @@
39858+//39835+//
39859+// basic_serial_port.hpp39836+// basic_serial_port.hpp
@@ -40482,7 +40459,7 @@
40482Index: mysql-5.0.86/sql/oqgraph/boost/asio/basic_socket.hpp40459Index: mysql-5.0.86/sql/oqgraph/boost/asio/basic_socket.hpp
40483===================================================================40460===================================================================
40484--- /dev/null 1970-01-01 00:00:00.000000000 +000040461--- /dev/null 1970-01-01 00:00:00.000000000 +0000
40485+++ mysql-5.0.86/sql/oqgraph/boost/asio/basic_socket.hpp 2009-10-21 20:44:48.000000000 +100040462+++ mysql-5.0.86/sql/oqgraph/boost/asio/basic_socket.hpp 2009-10-23 10:28:03.000000000 -0700
40486@@ -0,0 +1,1065 @@40463@@ -0,0 +1,1065 @@
40487+//40464+//
40488+// basic_socket.hpp40465+// basic_socket.hpp
@@ -41552,7 +41529,7 @@
41552Index: mysql-5.0.86/sql/oqgraph/boost/asio/basic_socket_acceptor.hpp41529Index: mysql-5.0.86/sql/oqgraph/boost/asio/basic_socket_acceptor.hpp
41553===================================================================41530===================================================================
41554--- /dev/null 1970-01-01 00:00:00.000000000 +000041531--- /dev/null 1970-01-01 00:00:00.000000000 +0000
41555+++ mysql-5.0.86/sql/oqgraph/boost/asio/basic_socket_acceptor.hpp 2009-10-21 20:44:48.000000000 +100041532+++ mysql-5.0.86/sql/oqgraph/boost/asio/basic_socket_acceptor.hpp 2009-10-23 10:28:03.000000000 -0700
41556@@ -0,0 +1,826 @@41533@@ -0,0 +1,826 @@
41557+//41534+//
41558+// basic_socket_acceptor.hpp41535+// basic_socket_acceptor.hpp
@@ -42383,7 +42360,7 @@
42383Index: mysql-5.0.86/sql/oqgraph/boost/asio/basic_socket_iostream.hpp42360Index: mysql-5.0.86/sql/oqgraph/boost/asio/basic_socket_iostream.hpp
42384===================================================================42361===================================================================
42385--- /dev/null 1970-01-01 00:00:00.000000000 +000042362--- /dev/null 1970-01-01 00:00:00.000000000 +0000
42386+++ mysql-5.0.86/sql/oqgraph/boost/asio/basic_socket_iostream.hpp 2009-10-21 20:44:48.000000000 +100042363+++ mysql-5.0.86/sql/oqgraph/boost/asio/basic_socket_iostream.hpp 2009-10-23 10:28:03.000000000 -0700
42387@@ -0,0 +1,150 @@42364@@ -0,0 +1,150 @@
42388+//42365+//
42389+// basic_socket_iostream.hpp42366+// basic_socket_iostream.hpp
@@ -42538,7 +42515,7 @@
42538Index: mysql-5.0.86/sql/oqgraph/boost/asio/basic_socket_streambuf.hpp42515Index: mysql-5.0.86/sql/oqgraph/boost/asio/basic_socket_streambuf.hpp
42539===================================================================42516===================================================================
42540--- /dev/null 1970-01-01 00:00:00.000000000 +000042517--- /dev/null 1970-01-01 00:00:00.000000000 +0000
42541+++ mysql-5.0.86/sql/oqgraph/boost/asio/basic_socket_streambuf.hpp 2009-10-21 20:44:48.000000000 +100042518+++ mysql-5.0.86/sql/oqgraph/boost/asio/basic_socket_streambuf.hpp 2009-10-23 10:28:04.000000000 -0700
42542@@ -0,0 +1,287 @@42519@@ -0,0 +1,287 @@
42543+//42520+//
42544+// basic_socket_streambuf.hpp42521+// basic_socket_streambuf.hpp
@@ -42830,7 +42807,7 @@
42830Index: mysql-5.0.86/sql/oqgraph/boost/asio/basic_stream_socket.hpp42807Index: mysql-5.0.86/sql/oqgraph/boost/asio/basic_stream_socket.hpp
42831===================================================================42808===================================================================
42832--- /dev/null 1970-01-01 00:00:00.000000000 +000042809--- /dev/null 1970-01-01 00:00:00.000000000 +0000
42833+++ mysql-5.0.86/sql/oqgraph/boost/asio/basic_stream_socket.hpp 2009-10-21 20:44:48.000000000 +100042810+++ mysql-5.0.86/sql/oqgraph/boost/asio/basic_stream_socket.hpp 2009-10-23 10:28:04.000000000 -0700
42834@@ -0,0 +1,720 @@42811@@ -0,0 +1,720 @@
42835+//42812+//
42836+// basic_stream_socket.hpp42813+// basic_stream_socket.hpp
@@ -43555,7 +43532,7 @@
43555Index: mysql-5.0.86/sql/oqgraph/boost/asio/basic_streambuf.hpp43532Index: mysql-5.0.86/sql/oqgraph/boost/asio/basic_streambuf.hpp
43556===================================================================43533===================================================================
43557--- /dev/null 1970-01-01 00:00:00.000000000 +000043534--- /dev/null 1970-01-01 00:00:00.000000000 +0000
43558+++ mysql-5.0.86/sql/oqgraph/boost/asio/basic_streambuf.hpp 2009-10-21 20:44:48.000000000 +100043535+++ mysql-5.0.86/sql/oqgraph/boost/asio/basic_streambuf.hpp 2009-10-23 10:28:04.000000000 -0700
43559@@ -0,0 +1,340 @@43536@@ -0,0 +1,340 @@
43560+//43537+//
43561+// basic_streambuf.hpp43538+// basic_streambuf.hpp
@@ -43900,7 +43877,7 @@
43900Index: mysql-5.0.86/sql/oqgraph/boost/asio/buffer.hpp43877Index: mysql-5.0.86/sql/oqgraph/boost/asio/buffer.hpp
43901===================================================================43878===================================================================
43902--- /dev/null 1970-01-01 00:00:00.000000000 +000043879--- /dev/null 1970-01-01 00:00:00.000000000 +0000
43903+++ mysql-5.0.86/sql/oqgraph/boost/asio/buffer.hpp 2009-10-21 20:44:48.000000000 +100043880+++ mysql-5.0.86/sql/oqgraph/boost/asio/buffer.hpp 2009-10-23 10:28:04.000000000 -0700
43904@@ -0,0 +1,1042 @@43881@@ -0,0 +1,1042 @@
43905+//43882+//
43906+// buffer.hpp43883+// buffer.hpp
@@ -44947,7 +44924,7 @@
44947Index: mysql-5.0.86/sql/oqgraph/boost/asio/buffered_read_stream.hpp44924Index: mysql-5.0.86/sql/oqgraph/boost/asio/buffered_read_stream.hpp
44948===================================================================44925===================================================================
44949--- /dev/null 1970-01-01 00:00:00.000000000 +000044926--- /dev/null 1970-01-01 00:00:00.000000000 +0000
44950+++ mysql-5.0.86/sql/oqgraph/boost/asio/buffered_read_stream.hpp 2009-10-21 20:44:48.000000000 +100044927+++ mysql-5.0.86/sql/oqgraph/boost/asio/buffered_read_stream.hpp 2009-10-23 10:28:04.000000000 -0700
44951@@ -0,0 +1,422 @@44928@@ -0,0 +1,422 @@
44952+//44929+//
44953+// buffered_read_stream.hpp44930+// buffered_read_stream.hpp
@@ -45374,7 +45351,7 @@
45374Index: mysql-5.0.86/sql/oqgraph/boost/asio/buffered_read_stream_fwd.hpp45351Index: mysql-5.0.86/sql/oqgraph/boost/asio/buffered_read_stream_fwd.hpp
45375===================================================================45352===================================================================
45376--- /dev/null 1970-01-01 00:00:00.000000000 +000045353--- /dev/null 1970-01-01 00:00:00.000000000 +0000
45377+++ mysql-5.0.86/sql/oqgraph/boost/asio/buffered_read_stream_fwd.hpp 2009-10-21 20:44:48.000000000 +100045354+++ mysql-5.0.86/sql/oqgraph/boost/asio/buffered_read_stream_fwd.hpp 2009-10-23 10:28:04.000000000 -0700
45378@@ -0,0 +1,31 @@45355@@ -0,0 +1,31 @@
45379+//45356+//
45380+// buffered_read_stream_fwd.hpp45357+// buffered_read_stream_fwd.hpp
@@ -45410,7 +45387,7 @@
45410Index: mysql-5.0.86/sql/oqgraph/boost/asio/buffered_stream.hpp45387Index: mysql-5.0.86/sql/oqgraph/boost/asio/buffered_stream.hpp
45411===================================================================45388===================================================================
45412--- /dev/null 1970-01-01 00:00:00.000000000 +000045389--- /dev/null 1970-01-01 00:00:00.000000000 +0000
45413+++ mysql-5.0.86/sql/oqgraph/boost/asio/buffered_stream.hpp 2009-10-21 20:44:48.000000000 +100045390+++ mysql-5.0.86/sql/oqgraph/boost/asio/buffered_stream.hpp 2009-10-23 10:28:04.000000000 -0700
45414@@ -0,0 +1,258 @@45391@@ -0,0 +1,258 @@
45415+//45392+//
45416+// buffered_stream.hpp45393+// buffered_stream.hpp
@@ -45673,7 +45650,7 @@
45673Index: mysql-5.0.86/sql/oqgraph/boost/asio/buffered_stream_fwd.hpp45650Index: mysql-5.0.86/sql/oqgraph/boost/asio/buffered_stream_fwd.hpp
45674===================================================================45651===================================================================
45675--- /dev/null 1970-01-01 00:00:00.000000000 +000045652--- /dev/null 1970-01-01 00:00:00.000000000 +0000
45676+++ mysql-5.0.86/sql/oqgraph/boost/asio/buffered_stream_fwd.hpp 2009-10-21 20:44:48.000000000 +100045653+++ mysql-5.0.86/sql/oqgraph/boost/asio/buffered_stream_fwd.hpp 2009-10-23 10:28:04.000000000 -0700
45677@@ -0,0 +1,31 @@45654@@ -0,0 +1,31 @@
45678+//45655+//
45679+// buffered_stream_fwd.hpp45656+// buffered_stream_fwd.hpp
@@ -45709,7 +45686,7 @@
45709Index: mysql-5.0.86/sql/oqgraph/boost/asio/buffered_write_stream.hpp45686Index: mysql-5.0.86/sql/oqgraph/boost/asio/buffered_write_stream.hpp
45710===================================================================45687===================================================================
45711--- /dev/null 1970-01-01 00:00:00.000000000 +000045688--- /dev/null 1970-01-01 00:00:00.000000000 +0000
45712+++ mysql-5.0.86/sql/oqgraph/boost/asio/buffered_write_stream.hpp 2009-10-21 20:44:48.000000000 +100045689+++ mysql-5.0.86/sql/oqgraph/boost/asio/buffered_write_stream.hpp 2009-10-23 10:28:04.000000000 -0700
45713@@ -0,0 +1,376 @@45690@@ -0,0 +1,376 @@
45714+//45691+//
45715+// buffered_write_stream.hpp45692+// buffered_write_stream.hpp
@@ -46090,7 +46067,7 @@
46090Index: mysql-5.0.86/sql/oqgraph/boost/asio/buffered_write_stream_fwd.hpp46067Index: mysql-5.0.86/sql/oqgraph/boost/asio/buffered_write_stream_fwd.hpp
46091===================================================================46068===================================================================
46092--- /dev/null 1970-01-01 00:00:00.000000000 +000046069--- /dev/null 1970-01-01 00:00:00.000000000 +0000
46093+++ mysql-5.0.86/sql/oqgraph/boost/asio/buffered_write_stream_fwd.hpp 2009-10-21 20:44:48.000000000 +100046070+++ mysql-5.0.86/sql/oqgraph/boost/asio/buffered_write_stream_fwd.hpp 2009-10-23 10:28:04.000000000 -0700
46094@@ -0,0 +1,31 @@46071@@ -0,0 +1,31 @@
46095+//46072+//
46096+// buffered_write_stream_fwd.hpp46073+// buffered_write_stream_fwd.hpp
@@ -46126,7 +46103,7 @@
46126Index: mysql-5.0.86/sql/oqgraph/boost/asio/buffers_iterator.hpp46103Index: mysql-5.0.86/sql/oqgraph/boost/asio/buffers_iterator.hpp
46127===================================================================46104===================================================================
46128--- /dev/null 1970-01-01 00:00:00.000000000 +000046105--- /dev/null 1970-01-01 00:00:00.000000000 +0000
46129+++ mysql-5.0.86/sql/oqgraph/boost/asio/buffers_iterator.hpp 2009-10-21 20:44:48.000000000 +100046106+++ mysql-5.0.86/sql/oqgraph/boost/asio/buffers_iterator.hpp 2009-10-23 10:28:04.000000000 -0700
46130@@ -0,0 +1,327 @@46107@@ -0,0 +1,327 @@
46131+//46108+//
46132+// buffers_iterator.hpp46109+// buffers_iterator.hpp
@@ -46458,7 +46435,7 @@
46458Index: mysql-5.0.86/sql/oqgraph/boost/asio/completion_condition.hpp46435Index: mysql-5.0.86/sql/oqgraph/boost/asio/completion_condition.hpp
46459===================================================================46436===================================================================
46460--- /dev/null 1970-01-01 00:00:00.000000000 +000046437--- /dev/null 1970-01-01 00:00:00.000000000 +0000
46461+++ mysql-5.0.86/sql/oqgraph/boost/asio/completion_condition.hpp 2009-10-21 20:44:48.000000000 +100046438+++ mysql-5.0.86/sql/oqgraph/boost/asio/completion_condition.hpp 2009-10-23 10:28:04.000000000 -0700
46462@@ -0,0 +1,166 @@46439@@ -0,0 +1,166 @@
46463+//46440+//
46464+// completion_condition.hpp46441+// completion_condition.hpp
@@ -46629,7 +46606,7 @@
46629Index: mysql-5.0.86/sql/oqgraph/boost/asio/datagram_socket_service.hpp46606Index: mysql-5.0.86/sql/oqgraph/boost/asio/datagram_socket_service.hpp
46630===================================================================46607===================================================================
46631--- /dev/null 1970-01-01 00:00:00.000000000 +000046608--- /dev/null 1970-01-01 00:00:00.000000000 +0000
46632+++ mysql-5.0.86/sql/oqgraph/boost/asio/datagram_socket_service.hpp 2009-10-21 20:44:48.000000000 +100046609+++ mysql-5.0.86/sql/oqgraph/boost/asio/datagram_socket_service.hpp 2009-10-23 10:28:04.000000000 -0700
46633@@ -0,0 +1,325 @@46610@@ -0,0 +1,325 @@
46634+//46611+//
46635+// datagram_socket_service.hpp46612+// datagram_socket_service.hpp
@@ -46959,7 +46936,7 @@
46959Index: mysql-5.0.86/sql/oqgraph/boost/asio/deadline_timer.hpp46936Index: mysql-5.0.86/sql/oqgraph/boost/asio/deadline_timer.hpp
46960===================================================================46937===================================================================
46961--- /dev/null 1970-01-01 00:00:00.000000000 +000046938--- /dev/null 1970-01-01 00:00:00.000000000 +0000
46962+++ mysql-5.0.86/sql/oqgraph/boost/asio/deadline_timer.hpp 2009-10-21 20:44:48.000000000 +100046939+++ mysql-5.0.86/sql/oqgraph/boost/asio/deadline_timer.hpp 2009-10-23 10:28:04.000000000 -0700
46963@@ -0,0 +1,39 @@46940@@ -0,0 +1,39 @@
46964+//46941+//
46965+// deadline_timer.hpp46942+// deadline_timer.hpp
@@ -47003,7 +46980,7 @@
47003Index: mysql-5.0.86/sql/oqgraph/boost/asio/deadline_timer_service.hpp46980Index: mysql-5.0.86/sql/oqgraph/boost/asio/deadline_timer_service.hpp
47004===================================================================46981===================================================================
47005--- /dev/null 1970-01-01 00:00:00.000000000 +000046982--- /dev/null 1970-01-01 00:00:00.000000000 +0000
47006+++ mysql-5.0.86/sql/oqgraph/boost/asio/deadline_timer_service.hpp 2009-10-21 20:44:48.000000000 +100046983+++ mysql-5.0.86/sql/oqgraph/boost/asio/deadline_timer_service.hpp 2009-10-23 10:28:04.000000000 -0700
47007@@ -0,0 +1,170 @@46984@@ -0,0 +1,170 @@
47008+//46985+//
47009+// deadline_timer_service.hpp46986+// deadline_timer_service.hpp
@@ -47178,7 +47155,7 @@
47178Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/bind_handler.hpp47155Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/bind_handler.hpp
47179===================================================================47156===================================================================
47180--- /dev/null 1970-01-01 00:00:00.000000000 +000047157--- /dev/null 1970-01-01 00:00:00.000000000 +0000
47181+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/bind_handler.hpp 2009-10-21 20:44:48.000000000 +100047158+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/bind_handler.hpp 2009-10-23 10:28:04.000000000 -0700
47182@@ -0,0 +1,351 @@47159@@ -0,0 +1,351 @@
47183+//47160+//
47184+// bind_handler.hpp47161+// bind_handler.hpp
@@ -47534,7 +47511,7 @@
47534Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/buffer_resize_guard.hpp47511Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/buffer_resize_guard.hpp
47535===================================================================47512===================================================================
47536--- /dev/null 1970-01-01 00:00:00.000000000 +000047513--- /dev/null 1970-01-01 00:00:00.000000000 +0000
47537+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/buffer_resize_guard.hpp 2009-10-21 20:44:48.000000000 +100047514+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/buffer_resize_guard.hpp 2009-10-23 10:28:04.000000000 -0700
47538@@ -0,0 +1,72 @@47515@@ -0,0 +1,72 @@
47539+//47516+//
47540+// buffer_resize_guard.hpp47517+// buffer_resize_guard.hpp
@@ -47611,7 +47588,7 @@
47611Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/buffered_stream_storage.hpp47588Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/buffered_stream_storage.hpp
47612===================================================================47589===================================================================
47613--- /dev/null 1970-01-01 00:00:00.000000000 +000047590--- /dev/null 1970-01-01 00:00:00.000000000 +0000
47614+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/buffered_stream_storage.hpp 2009-10-21 20:44:48.000000000 +100047591+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/buffered_stream_storage.hpp 2009-10-23 10:28:04.000000000 -0700
47615@@ -0,0 +1,129 @@47592@@ -0,0 +1,129 @@
47616+//47593+//
47617+// buffered_stream_storage.hpp47594+// buffered_stream_storage.hpp
@@ -47745,7 +47722,7 @@
47745Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/call_stack.hpp47722Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/call_stack.hpp
47746===================================================================47723===================================================================
47747--- /dev/null 1970-01-01 00:00:00.000000000 +000047724--- /dev/null 1970-01-01 00:00:00.000000000 +0000
47748+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/call_stack.hpp 2009-10-21 20:44:48.000000000 +100047725+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/call_stack.hpp 2009-10-23 10:28:04.000000000 -0700
47749@@ -0,0 +1,92 @@47726@@ -0,0 +1,92 @@
47750+//47727+//
47751+// call_stack.hpp47728+// call_stack.hpp
@@ -47842,7 +47819,7 @@
47842Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/const_buffers_iterator.hpp47819Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/const_buffers_iterator.hpp
47843===================================================================47820===================================================================
47844--- /dev/null 1970-01-01 00:00:00.000000000 +000047821--- /dev/null 1970-01-01 00:00:00.000000000 +0000
47845+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/const_buffers_iterator.hpp 2009-10-21 20:44:48.000000000 +100047822+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/const_buffers_iterator.hpp 2009-10-23 10:28:04.000000000 -0700
47846@@ -0,0 +1,153 @@47823@@ -0,0 +1,153 @@
47847+//47824+//
47848+// const_buffers_iterator.hpp47825+// const_buffers_iterator.hpp
@@ -48000,7 +47977,7 @@
48000Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/consuming_buffers.hpp47977Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/consuming_buffers.hpp
48001===================================================================47978===================================================================
48002--- /dev/null 1970-01-01 00:00:00.000000000 +000047979--- /dev/null 1970-01-01 00:00:00.000000000 +0000
48003+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/consuming_buffers.hpp 2009-10-21 20:44:48.000000000 +100047980+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/consuming_buffers.hpp 2009-10-23 10:28:04.000000000 -0700
48004@@ -0,0 +1,246 @@47981@@ -0,0 +1,246 @@
48005+//47982+//
48006+// consuming_buffers.hpp47983+// consuming_buffers.hpp
@@ -48251,7 +48228,7 @@
48251Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/deadline_timer_service.hpp48228Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/deadline_timer_service.hpp
48252===================================================================48229===================================================================
48253--- /dev/null 1970-01-01 00:00:00.000000000 +000048230--- /dev/null 1970-01-01 00:00:00.000000000 +0000
48254+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/deadline_timer_service.hpp 2009-10-21 20:44:48.000000000 +100048231+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/deadline_timer_service.hpp 2009-10-23 10:28:04.000000000 -0700
48255@@ -0,0 +1,203 @@48232@@ -0,0 +1,203 @@
48256+//48233+//
48257+// deadline_timer_service.hpp48234+// deadline_timer_service.hpp
@@ -48459,7 +48436,7 @@
48459Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/descriptor_ops.hpp48436Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/descriptor_ops.hpp
48460===================================================================48437===================================================================
48461--- /dev/null 1970-01-01 00:00:00.000000000 +000048438--- /dev/null 1970-01-01 00:00:00.000000000 +0000
48462+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/descriptor_ops.hpp 2009-10-21 20:44:48.000000000 +100048439+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/descriptor_ops.hpp 2009-10-23 10:28:04.000000000 -0700
48463@@ -0,0 +1,178 @@48440@@ -0,0 +1,178 @@
48464+//48441+//
48465+// descriptor_ops.hpp48442+// descriptor_ops.hpp
@@ -48642,7 +48619,7 @@
48642Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/dev_poll_reactor.hpp48619Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/dev_poll_reactor.hpp
48643===================================================================48620===================================================================
48644--- /dev/null 1970-01-01 00:00:00.000000000 +000048621--- /dev/null 1970-01-01 00:00:00.000000000 +0000
48645+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/dev_poll_reactor.hpp 2009-10-21 20:44:48.000000000 +100048622+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/dev_poll_reactor.hpp 2009-10-23 10:28:04.000000000 -0700
48646@@ -0,0 +1,678 @@48623@@ -0,0 +1,678 @@
48647+//48624+//
48648+// dev_poll_reactor.hpp48625+// dev_poll_reactor.hpp
@@ -49325,7 +49302,7 @@
49325Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/dev_poll_reactor_fwd.hpp49302Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/dev_poll_reactor_fwd.hpp
49326===================================================================49303===================================================================
49327--- /dev/null 1970-01-01 00:00:00.000000000 +000049304--- /dev/null 1970-01-01 00:00:00.000000000 +0000
49328+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/dev_poll_reactor_fwd.hpp 2009-10-21 20:44:48.000000000 +100049305+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/dev_poll_reactor_fwd.hpp 2009-10-23 10:28:04.000000000 -0700
49329@@ -0,0 +1,42 @@49306@@ -0,0 +1,42 @@
49330+//49307+//
49331+// dev_poll_reactor_fwd.hpp49308+// dev_poll_reactor_fwd.hpp
@@ -49372,7 +49349,7 @@
49372Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/epoll_reactor.hpp49349Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/epoll_reactor.hpp
49373===================================================================49350===================================================================
49374--- /dev/null 1970-01-01 00:00:00.000000000 +000049351--- /dev/null 1970-01-01 00:00:00.000000000 +0000
49375+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/epoll_reactor.hpp 2009-10-21 20:44:48.000000000 +100049352+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/epoll_reactor.hpp 2009-10-23 10:28:04.000000000 -0700
49376@@ -0,0 +1,733 @@49353@@ -0,0 +1,733 @@
49377+//49354+//
49378+// epoll_reactor.hpp49355+// epoll_reactor.hpp
@@ -50110,7 +50087,7 @@
50110Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/epoll_reactor_fwd.hpp50087Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/epoll_reactor_fwd.hpp
50111===================================================================50088===================================================================
50112--- /dev/null 1970-01-01 00:00:00.000000000 +000050089--- /dev/null 1970-01-01 00:00:00.000000000 +0000
50113+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/epoll_reactor_fwd.hpp 2009-10-21 20:44:48.000000000 +100050090+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/epoll_reactor_fwd.hpp 2009-10-23 10:28:04.000000000 -0700
50114@@ -0,0 +1,49 @@50091@@ -0,0 +1,49 @@
50115+//50092+//
50116+// epoll_reactor_fwd.hpp50093+// epoll_reactor_fwd.hpp
@@ -50164,7 +50141,7 @@
50164Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/event.hpp50141Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/event.hpp
50165===================================================================50142===================================================================
50166--- /dev/null 1970-01-01 00:00:00.000000000 +000050143--- /dev/null 1970-01-01 00:00:00.000000000 +0000
50167+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/event.hpp 2009-10-21 20:44:48.000000000 +100050144+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/event.hpp 2009-10-23 10:28:04.000000000 -0700
50168@@ -0,0 +1,52 @@50145@@ -0,0 +1,52 @@
50169+//50146+//
50170+// event.hpp50147+// event.hpp
@@ -50221,7 +50198,7 @@
50221Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/eventfd_select_interrupter.hpp50198Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/eventfd_select_interrupter.hpp
50222===================================================================50199===================================================================
50223--- /dev/null 1970-01-01 00:00:00.000000000 +000050200--- /dev/null 1970-01-01 00:00:00.000000000 +0000
50224+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/eventfd_select_interrupter.hpp 2009-10-21 20:44:48.000000000 +100050201+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/eventfd_select_interrupter.hpp 2009-10-23 10:28:04.000000000 -0700
50225@@ -0,0 +1,157 @@50202@@ -0,0 +1,157 @@
50226+//50203+//
50227+// eventfd_select_interrupter.hpp50204+// eventfd_select_interrupter.hpp
@@ -50383,7 +50360,7 @@
50383Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/fd_set_adapter.hpp50360Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/fd_set_adapter.hpp
50384===================================================================50361===================================================================
50385--- /dev/null 1970-01-01 00:00:00.000000000 +000050362--- /dev/null 1970-01-01 00:00:00.000000000 +0000
50386+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/fd_set_adapter.hpp 2009-10-21 20:44:48.000000000 +100050363+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/fd_set_adapter.hpp 2009-10-23 10:28:04.000000000 -0700
50387@@ -0,0 +1,43 @@50364@@ -0,0 +1,43 @@
50388+//50365+//
50389+// fd_set_adapter.hpp50366+// fd_set_adapter.hpp
@@ -50431,7 +50408,7 @@
50431Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/handler_alloc_helpers.hpp50408Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/handler_alloc_helpers.hpp
50432===================================================================50409===================================================================
50433--- /dev/null 1970-01-01 00:00:00.000000000 +000050410--- /dev/null 1970-01-01 00:00:00.000000000 +0000
50434+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/handler_alloc_helpers.hpp 2009-10-21 20:44:48.000000000 +100050411+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/handler_alloc_helpers.hpp 2009-10-23 10:28:04.000000000 -0700
50435@@ -0,0 +1,258 @@50412@@ -0,0 +1,258 @@
50436+//50413+//
50437+// handler_alloc_helpers.hpp50414+// handler_alloc_helpers.hpp
@@ -50694,7 +50671,7 @@
50694Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/handler_base_from_member.hpp50671Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/handler_base_from_member.hpp
50695===================================================================50672===================================================================
50696--- /dev/null 1970-01-01 00:00:00.000000000 +000050673--- /dev/null 1970-01-01 00:00:00.000000000 +0000
50697+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/handler_base_from_member.hpp 2009-10-21 20:44:48.000000000 +100050674+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/handler_base_from_member.hpp 2009-10-23 10:28:04.000000000 -0700
50698@@ -0,0 +1,78 @@50675@@ -0,0 +1,78 @@
50699+//50676+//
50700+// handler_base_from_member.hpp50677+// handler_base_from_member.hpp
@@ -50777,7 +50754,7 @@
50777Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/handler_invoke_helpers.hpp50754Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/handler_invoke_helpers.hpp
50778===================================================================50755===================================================================
50779--- /dev/null 1970-01-01 00:00:00.000000000 +000050756--- /dev/null 1970-01-01 00:00:00.000000000 +0000
50780+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/handler_invoke_helpers.hpp 2009-10-21 20:44:48.000000000 +100050757+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/handler_invoke_helpers.hpp 2009-10-23 10:28:04.000000000 -0700
50781@@ -0,0 +1,47 @@50758@@ -0,0 +1,47 @@
50782+//50759+//
50783+// handler_invoke_helpers.hpp50760+// handler_invoke_helpers.hpp
@@ -50829,7 +50806,7 @@
50829Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/handler_queue.hpp50806Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/handler_queue.hpp
50830===================================================================50807===================================================================
50831--- /dev/null 1970-01-01 00:00:00.000000000 +000050808--- /dev/null 1970-01-01 00:00:00.000000000 +0000
50832+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/handler_queue.hpp 2009-10-21 20:44:48.000000000 +100050809+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/handler_queue.hpp 2009-10-23 10:28:04.000000000 -0700
50833@@ -0,0 +1,231 @@50810@@ -0,0 +1,231 @@
50834+//50811+//
50835+// handler_queue.hpp50812+// handler_queue.hpp
@@ -51065,7 +51042,7 @@
51065Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/hash_map.hpp51042Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/hash_map.hpp
51066===================================================================51043===================================================================
51067--- /dev/null 1970-01-01 00:00:00.000000000 +000051044--- /dev/null 1970-01-01 00:00:00.000000000 +0000
51068+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/hash_map.hpp 2009-10-21 20:44:48.000000000 +100051045+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/hash_map.hpp 2009-10-23 10:28:04.000000000 -0700
51069@@ -0,0 +1,292 @@51046@@ -0,0 +1,292 @@
51070+//51047+//
51071+// hash_map.hpp51048+// hash_map.hpp
@@ -51362,7 +51339,7 @@
51362Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/indirect_handler_queue.hpp51339Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/indirect_handler_queue.hpp
51363===================================================================51340===================================================================
51364--- /dev/null 1970-01-01 00:00:00.000000000 +000051341--- /dev/null 1970-01-01 00:00:00.000000000 +0000
51365+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/indirect_handler_queue.hpp 2009-10-21 20:44:48.000000000 +100051342+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/indirect_handler_queue.hpp 2009-10-23 10:28:04.000000000 -0700
51366@@ -0,0 +1,293 @@51343@@ -0,0 +1,293 @@
51367+//51344+//
51368+// indirect_handler_queue.hpp51345+// indirect_handler_queue.hpp
@@ -51660,7 +51637,7 @@
51660Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/io_control.hpp51637Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/io_control.hpp
51661===================================================================51638===================================================================
51662--- /dev/null 1970-01-01 00:00:00.000000000 +000051639--- /dev/null 1970-01-01 00:00:00.000000000 +0000
51663+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/io_control.hpp 2009-10-21 20:44:48.000000000 +100051640+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/io_control.hpp 2009-10-23 10:28:04.000000000 -0700
51664@@ -0,0 +1,139 @@51641@@ -0,0 +1,139 @@
51665+//51642+//
51666+// io_control.hpp51643+// io_control.hpp
@@ -51804,7 +51781,7 @@
51804Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/kqueue_reactor.hpp51781Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/kqueue_reactor.hpp
51805===================================================================51782===================================================================
51806--- /dev/null 1970-01-01 00:00:00.000000000 +000051783--- /dev/null 1970-01-01 00:00:00.000000000 +0000
51807+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/kqueue_reactor.hpp 2009-10-21 20:44:48.000000000 +100051784+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/kqueue_reactor.hpp 2009-10-23 10:28:04.000000000 -0700
51808@@ -0,0 +1,714 @@51785@@ -0,0 +1,714 @@
51809+//51786+//
51810+// kqueue_reactor.hpp51787+// kqueue_reactor.hpp
@@ -52523,7 +52500,7 @@
52523Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/kqueue_reactor_fwd.hpp52500Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/kqueue_reactor_fwd.hpp
52524===================================================================52501===================================================================
52525--- /dev/null 1970-01-01 00:00:00.000000000 +000052502--- /dev/null 1970-01-01 00:00:00.000000000 +0000
52526+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/kqueue_reactor_fwd.hpp 2009-10-21 20:44:48.000000000 +100052503+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/kqueue_reactor_fwd.hpp 2009-10-23 10:28:04.000000000 -0700
52527@@ -0,0 +1,43 @@52504@@ -0,0 +1,43 @@
52528+//52505+//
52529+// kqueue_reactor_fwd.hpp52506+// kqueue_reactor_fwd.hpp
@@ -52571,7 +52548,7 @@
52571Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/local_free_on_block_exit.hpp52548Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/local_free_on_block_exit.hpp
52572===================================================================52549===================================================================
52573--- /dev/null 1970-01-01 00:00:00.000000000 +000052550--- /dev/null 1970-01-01 00:00:00.000000000 +0000
52574+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/local_free_on_block_exit.hpp 2009-10-21 20:44:48.000000000 +100052551+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/local_free_on_block_exit.hpp 2009-10-23 10:28:04.000000000 -0700
52575@@ -0,0 +1,61 @@52552@@ -0,0 +1,61 @@
52576+//52553+//
52577+// local_free_on_block_exit.hpp52554+// local_free_on_block_exit.hpp
@@ -52637,7 +52614,7 @@
52637Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/mutex.hpp52614Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/mutex.hpp
52638===================================================================52615===================================================================
52639--- /dev/null 1970-01-01 00:00:00.000000000 +000052616--- /dev/null 1970-01-01 00:00:00.000000000 +0000
52640+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/mutex.hpp 2009-10-21 20:44:48.000000000 +100052617+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/mutex.hpp 2009-10-23 10:28:04.000000000 -0700
52641@@ -0,0 +1,52 @@52618@@ -0,0 +1,52 @@
52642+//52619+//
52643+// mutex.hpp52620+// mutex.hpp
@@ -52694,7 +52671,7 @@
52694Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/noncopyable.hpp52671Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/noncopyable.hpp
52695===================================================================52672===================================================================
52696--- /dev/null 1970-01-01 00:00:00.000000000 +000052673--- /dev/null 1970-01-01 00:00:00.000000000 +0000
52697+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/noncopyable.hpp 2009-10-21 20:44:48.000000000 +100052674+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/noncopyable.hpp 2009-10-23 10:28:04.000000000 -0700
52698@@ -0,0 +1,57 @@52675@@ -0,0 +1,57 @@
52699+//52676+//
52700+// noncopyable.hpp52677+// noncopyable.hpp
@@ -52756,7 +52733,7 @@
52756Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/null_event.hpp52733Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/null_event.hpp
52757===================================================================52734===================================================================
52758--- /dev/null 1970-01-01 00:00:00.000000000 +000052735--- /dev/null 1970-01-01 00:00:00.000000000 +0000
52759+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/null_event.hpp 2009-10-21 20:44:48.000000000 +100052736+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/null_event.hpp 2009-10-23 10:28:04.000000000 -0700
52760@@ -0,0 +1,73 @@52737@@ -0,0 +1,73 @@
52761+//52738+//
52762+// null_event.hpp52739+// null_event.hpp
@@ -52834,7 +52811,7 @@
52834Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/null_mutex.hpp52811Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/null_mutex.hpp
52835===================================================================52812===================================================================
52836--- /dev/null 1970-01-01 00:00:00.000000000 +000052813--- /dev/null 1970-01-01 00:00:00.000000000 +0000
52837+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/null_mutex.hpp 2009-10-21 20:44:48.000000000 +100052814+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/null_mutex.hpp 2009-10-23 10:28:04.000000000 -0700
52838@@ -0,0 +1,68 @@52815@@ -0,0 +1,68 @@
52839+//52816+//
52840+// null_mutex.hpp52817+// null_mutex.hpp
@@ -52907,7 +52884,7 @@
52907Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/null_signal_blocker.hpp52884Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/null_signal_blocker.hpp
52908===================================================================52885===================================================================
52909--- /dev/null 1970-01-01 00:00:00.000000000 +000052886--- /dev/null 1970-01-01 00:00:00.000000000 +0000
52910+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/null_signal_blocker.hpp 2009-10-21 20:44:48.000000000 +100052887+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/null_signal_blocker.hpp 2009-10-23 10:28:04.000000000 -0700
52911@@ -0,0 +1,65 @@52888@@ -0,0 +1,65 @@
52912+//52889+//
52913+// null_signal_blocker.hpp52890+// null_signal_blocker.hpp
@@ -52977,7 +52954,7 @@
52977Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/null_thread.hpp52954Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/null_thread.hpp
52978===================================================================52955===================================================================
52979--- /dev/null 1970-01-01 00:00:00.000000000 +000052956--- /dev/null 1970-01-01 00:00:00.000000000 +0000
52980+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/null_thread.hpp 2009-10-21 20:44:48.000000000 +100052957+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/null_thread.hpp 2009-10-23 10:28:04.000000000 -0700
52981@@ -0,0 +1,70 @@52958@@ -0,0 +1,70 @@
52982+//52959+//
52983+// null_thread.hpp52960+// null_thread.hpp
@@ -53052,7 +53029,7 @@
53052Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/null_tss_ptr.hpp53029Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/null_tss_ptr.hpp
53053===================================================================53030===================================================================
53054--- /dev/null 1970-01-01 00:00:00.000000000 +000053031--- /dev/null 1970-01-01 00:00:00.000000000 +0000
53055+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/null_tss_ptr.hpp 2009-10-21 20:44:48.000000000 +100053032+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/null_tss_ptr.hpp 2009-10-23 10:28:04.000000000 -0700
53056@@ -0,0 +1,72 @@53033@@ -0,0 +1,72 @@
53057+//53034+//
53058+// null_tss_ptr.hpp53035+// null_tss_ptr.hpp
@@ -53129,7 +53106,7 @@
53129Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/old_win_sdk_compat.hpp53106Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/old_win_sdk_compat.hpp
53130===================================================================53107===================================================================
53131--- /dev/null 1970-01-01 00:00:00.000000000 +000053108--- /dev/null 1970-01-01 00:00:00.000000000 +0000
53132+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/old_win_sdk_compat.hpp 2009-10-21 20:44:48.000000000 +100053109+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/old_win_sdk_compat.hpp 2009-10-23 10:28:04.000000000 -0700
53133@@ -0,0 +1,342 @@53110@@ -0,0 +1,342 @@
53134+//53111+//
53135+// old_win_sdk_compat.hpp53112+// old_win_sdk_compat.hpp
@@ -53476,7 +53453,7 @@
53476Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/pipe_select_interrupter.hpp53453Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/pipe_select_interrupter.hpp
53477===================================================================53454===================================================================
53478--- /dev/null 1970-01-01 00:00:00.000000000 +000053455--- /dev/null 1970-01-01 00:00:00.000000000 +0000
53479+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/pipe_select_interrupter.hpp 2009-10-21 20:44:48.000000000 +100053456+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/pipe_select_interrupter.hpp 2009-10-23 10:28:04.000000000 -0700
53480@@ -0,0 +1,117 @@53457@@ -0,0 +1,117 @@
53481+//53458+//
53482+// pipe_select_interrupter.hpp53459+// pipe_select_interrupter.hpp
@@ -53598,7 +53575,7 @@
53598Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/pop_options.hpp53575Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/pop_options.hpp
53599===================================================================53576===================================================================
53600--- /dev/null 1970-01-01 00:00:00.000000000 +000053577--- /dev/null 1970-01-01 00:00:00.000000000 +0000
53601+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/pop_options.hpp 2009-10-21 20:44:48.000000000 +100053578+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/pop_options.hpp 2009-10-23 10:28:04.000000000 -0700
53602@@ -0,0 +1,88 @@53579@@ -0,0 +1,88 @@
53603+//53580+//
53604+// pop_options.hpp53581+// pop_options.hpp
@@ -53691,7 +53668,7 @@
53691Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/posix_event.hpp53668Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/posix_event.hpp
53692===================================================================53669===================================================================
53693--- /dev/null 1970-01-01 00:00:00.000000000 +000053670--- /dev/null 1970-01-01 00:00:00.000000000 +0000
53694+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/posix_event.hpp 2009-10-21 20:44:48.000000000 +100053671+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/posix_event.hpp 2009-10-23 10:28:04.000000000 -0700
53695@@ -0,0 +1,106 @@53672@@ -0,0 +1,106 @@
53696+//53673+//
53697+// posix_event.hpp53674+// posix_event.hpp
@@ -53802,7 +53779,7 @@
53802Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/posix_fd_set_adapter.hpp53779Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/posix_fd_set_adapter.hpp
53803===================================================================53780===================================================================
53804--- /dev/null 1970-01-01 00:00:00.000000000 +000053781--- /dev/null 1970-01-01 00:00:00.000000000 +0000
53805+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/posix_fd_set_adapter.hpp 2009-10-21 20:44:48.000000000 +100053782+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/posix_fd_set_adapter.hpp 2009-10-23 10:28:04.000000000 -0700
53806@@ -0,0 +1,83 @@53783@@ -0,0 +1,83 @@
53807+//53784+//
53808+// posix_fd_set_adapter.hpp53785+// posix_fd_set_adapter.hpp
@@ -53890,7 +53867,7 @@
53890Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/posix_mutex.hpp53867Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/posix_mutex.hpp
53891===================================================================53868===================================================================
53892--- /dev/null 1970-01-01 00:00:00.000000000 +000053869--- /dev/null 1970-01-01 00:00:00.000000000 +0000
53893+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/posix_mutex.hpp 2009-10-21 20:44:48.000000000 +100053870+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/posix_mutex.hpp 2009-10-23 10:28:04.000000000 -0700
53894@@ -0,0 +1,109 @@53871@@ -0,0 +1,109 @@
53895+//53872+//
53896+// posix_mutex.hpp53873+// posix_mutex.hpp
@@ -54004,7 +53981,7 @@
54004Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/posix_signal_blocker.hpp53981Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/posix_signal_blocker.hpp
54005===================================================================53982===================================================================
54006--- /dev/null 1970-01-01 00:00:00.000000000 +000053983--- /dev/null 1970-01-01 00:00:00.000000000 +0000
54007+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/posix_signal_blocker.hpp 2009-10-21 20:44:48.000000000 +100053984+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/posix_signal_blocker.hpp 2009-10-23 10:28:04.000000000 -0700
54008@@ -0,0 +1,92 @@53985@@ -0,0 +1,92 @@
54009+//53986+//
54010+// posix_signal_blocker.hpp53987+// posix_signal_blocker.hpp
@@ -54101,7 +54078,7 @@
54101Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/posix_thread.hpp54078Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/posix_thread.hpp
54102===================================================================54079===================================================================
54103--- /dev/null 1970-01-01 00:00:00.000000000 +000054080--- /dev/null 1970-01-01 00:00:00.000000000 +0000
54104+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/posix_thread.hpp 2009-10-21 20:44:48.000000000 +100054081+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/posix_thread.hpp 2009-10-23 10:28:04.000000000 -0700
54105@@ -0,0 +1,131 @@54082@@ -0,0 +1,131 @@
54106+//54083+//
54107+// posix_thread.hpp54084+// posix_thread.hpp
@@ -54237,7 +54214,7 @@
54237Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/posix_tss_ptr.hpp54214Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/posix_tss_ptr.hpp
54238===================================================================54215===================================================================
54239--- /dev/null 1970-01-01 00:00:00.000000000 +000054216--- /dev/null 1970-01-01 00:00:00.000000000 +0000
54240+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/posix_tss_ptr.hpp 2009-10-21 20:44:48.000000000 +100054217+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/posix_tss_ptr.hpp 2009-10-23 10:28:04.000000000 -0700
54241@@ -0,0 +1,90 @@54218@@ -0,0 +1,90 @@
54242+//54219+//
54243+// posix_tss_ptr.hpp54220+// posix_tss_ptr.hpp
@@ -54332,7 +54309,7 @@
54332Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/push_options.hpp54309Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/push_options.hpp
54333===================================================================54310===================================================================
54334--- /dev/null 1970-01-01 00:00:00.000000000 +000054311--- /dev/null 1970-01-01 00:00:00.000000000 +0000
54335+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/push_options.hpp 2009-10-21 20:44:48.000000000 +100054312+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/push_options.hpp 2009-10-23 10:28:04.000000000 -0700
54336@@ -0,0 +1,114 @@54313@@ -0,0 +1,114 @@
54337+//54314+//
54338+// push_options.hpp54315+// push_options.hpp
@@ -54451,7 +54428,7 @@
54451Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/reactive_descriptor_service.hpp54428Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/reactive_descriptor_service.hpp
54452===================================================================54429===================================================================
54453--- /dev/null 1970-01-01 00:00:00.000000000 +000054430--- /dev/null 1970-01-01 00:00:00.000000000 +0000
54454+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/reactive_descriptor_service.hpp 2009-10-21 20:44:48.000000000 +100054431+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/reactive_descriptor_service.hpp 2009-10-23 10:28:04.000000000 -0700
54455@@ -0,0 +1,712 @@54432@@ -0,0 +1,712 @@
54456+//54433+//
54457+// reactive_descriptor_service.hpp54434+// reactive_descriptor_service.hpp
@@ -55168,7 +55145,7 @@
55168Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/reactive_serial_port_service.hpp55145Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/reactive_serial_port_service.hpp
55169===================================================================55146===================================================================
55170--- /dev/null 1970-01-01 00:00:00.000000000 +000055147--- /dev/null 1970-01-01 00:00:00.000000000 +0000
55171+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/reactive_serial_port_service.hpp 2009-10-21 20:44:48.000000000 +100055148+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/reactive_serial_port_service.hpp 2009-10-23 10:28:04.000000000 -0700
55172@@ -0,0 +1,270 @@55149@@ -0,0 +1,270 @@
55173+//55150+//
55174+// reactive_serial_port_service.hpp55151+// reactive_serial_port_service.hpp
@@ -55443,7 +55420,7 @@
55443Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/reactive_socket_service.hpp55420Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/reactive_socket_service.hpp
55444===================================================================55421===================================================================
55445--- /dev/null 1970-01-01 00:00:00.000000000 +000055422--- /dev/null 1970-01-01 00:00:00.000000000 +0000
55446+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/reactive_socket_service.hpp 2009-10-21 20:44:48.000000000 +100055423+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/reactive_socket_service.hpp 2009-10-23 10:28:04.000000000 -0700
55447@@ -0,0 +1,1788 @@55424@@ -0,0 +1,1788 @@
55448+//55425+//
55449+// reactive_socket_service.hpp55426+// reactive_socket_service.hpp
@@ -57236,7 +57213,7 @@
57236Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/reactor_op_queue.hpp57213Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/reactor_op_queue.hpp
57237===================================================================57214===================================================================
57238--- /dev/null 1970-01-01 00:00:00.000000000 +000057215--- /dev/null 1970-01-01 00:00:00.000000000 +0000
57239+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/reactor_op_queue.hpp 2009-10-21 20:44:48.000000000 +100057216+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/reactor_op_queue.hpp 2009-10-23 10:28:04.000000000 -0700
57240@@ -0,0 +1,456 @@57217@@ -0,0 +1,456 @@
57241+//57218+//
57242+// reactor_op_queue.hpp57219+// reactor_op_queue.hpp
@@ -57697,7 +57674,7 @@
57697Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/resolver_service.hpp57674Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/resolver_service.hpp
57698===================================================================57675===================================================================
57699--- /dev/null 1970-01-01 00:00:00.000000000 +000057676--- /dev/null 1970-01-01 00:00:00.000000000 +0000
57700+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/resolver_service.hpp 2009-10-21 20:44:48.000000000 +100057677+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/resolver_service.hpp 2009-10-23 10:28:04.000000000 -0700
57701@@ -0,0 +1,359 @@57678@@ -0,0 +1,359 @@
57702+//57679+//
57703+// resolver_service.hpp57680+// resolver_service.hpp
@@ -58061,7 +58038,7 @@
58061Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/scoped_lock.hpp58038Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/scoped_lock.hpp
58062===================================================================58039===================================================================
58063--- /dev/null 1970-01-01 00:00:00.000000000 +000058040--- /dev/null 1970-01-01 00:00:00.000000000 +0000
58064+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/scoped_lock.hpp 2009-10-21 20:44:48.000000000 +100058041+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/scoped_lock.hpp 2009-10-23 10:28:04.000000000 -0700
58065@@ -0,0 +1,93 @@58042@@ -0,0 +1,93 @@
58066+//58043+//
58067+// scoped_lock.hpp58044+// scoped_lock.hpp
@@ -58159,7 +58136,7 @@
58159Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/select_interrupter.hpp58136Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/select_interrupter.hpp
58160===================================================================58137===================================================================
58161--- /dev/null 1970-01-01 00:00:00.000000000 +000058138--- /dev/null 1970-01-01 00:00:00.000000000 +0000
58162+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/select_interrupter.hpp 2009-10-21 20:44:48.000000000 +100058139+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/select_interrupter.hpp 2009-10-23 10:28:04.000000000 -0700
58163@@ -0,0 +1,46 @@58140@@ -0,0 +1,46 @@
58164+//58141+//
58165+// select_interrupter.hpp58142+// select_interrupter.hpp
@@ -58210,7 +58187,7 @@
58210Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/select_reactor.hpp58187Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/select_reactor.hpp
58211===================================================================58188===================================================================
58212--- /dev/null 1970-01-01 00:00:00.000000000 +000058189--- /dev/null 1970-01-01 00:00:00.000000000 +0000
58213+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/select_reactor.hpp 2009-10-21 20:44:48.000000000 +100058190+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/select_reactor.hpp 2009-10-23 10:28:04.000000000 -0700
58214@@ -0,0 +1,546 @@58191@@ -0,0 +1,546 @@
58215+//58192+//
58216+// select_reactor.hpp58193+// select_reactor.hpp
@@ -58761,7 +58738,7 @@
58761Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/select_reactor_fwd.hpp58738Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/select_reactor_fwd.hpp
58762===================================================================58739===================================================================
58763--- /dev/null 1970-01-01 00:00:00.000000000 +000058740--- /dev/null 1970-01-01 00:00:00.000000000 +0000
58764+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/select_reactor_fwd.hpp 2009-10-21 20:44:48.000000000 +100058741+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/select_reactor_fwd.hpp 2009-10-23 10:28:04.000000000 -0700
58765@@ -0,0 +1,33 @@58742@@ -0,0 +1,33 @@
58766+//58743+//
58767+// select_reactor_fwd.hpp58744+// select_reactor_fwd.hpp
@@ -58799,7 +58776,7 @@
58799Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/service_base.hpp58776Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/service_base.hpp
58800===================================================================58777===================================================================
58801--- /dev/null 1970-01-01 00:00:00.000000000 +000058778--- /dev/null 1970-01-01 00:00:00.000000000 +0000
58802+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/service_base.hpp 2009-10-21 20:44:48.000000000 +100058779+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/service_base.hpp 2009-10-23 10:28:04.000000000 -0700
58803@@ -0,0 +1,51 @@58780@@ -0,0 +1,51 @@
58804+//58781+//
58805+// service_base.hpp58782+// service_base.hpp
@@ -58855,7 +58832,7 @@
58855Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/service_id.hpp58832Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/service_id.hpp
58856===================================================================58833===================================================================
58857--- /dev/null 1970-01-01 00:00:00.000000000 +000058834--- /dev/null 1970-01-01 00:00:00.000000000 +0000
58858+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/service_id.hpp 2009-10-21 20:44:48.000000000 +100058835+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/service_id.hpp 2009-10-23 10:28:04.000000000 -0700
58859@@ -0,0 +1,39 @@58836@@ -0,0 +1,39 @@
58860+//58837+//
58861+// service_id.hpp58838+// service_id.hpp
@@ -58899,7 +58876,7 @@
58899Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/service_registry.hpp58876Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/service_registry.hpp
58900===================================================================58877===================================================================
58901--- /dev/null 1970-01-01 00:00:00.000000000 +000058878--- /dev/null 1970-01-01 00:00:00.000000000 +0000
58902+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/service_registry.hpp 2009-10-21 20:44:48.000000000 +100058879+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/service_registry.hpp 2009-10-23 10:28:04.000000000 -0700
58903@@ -0,0 +1,228 @@58880@@ -0,0 +1,228 @@
58904+//58881+//
58905+// service_registry.hpp58882+// service_registry.hpp
@@ -59132,7 +59109,7 @@
59132Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/service_registry_fwd.hpp59109Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/service_registry_fwd.hpp
59133===================================================================59110===================================================================
59134--- /dev/null 1970-01-01 00:00:00.000000000 +000059111--- /dev/null 1970-01-01 00:00:00.000000000 +0000
59135+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/service_registry_fwd.hpp 2009-10-21 20:44:48.000000000 +100059112+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/service_registry_fwd.hpp 2009-10-23 10:28:04.000000000 -0700
59136@@ -0,0 +1,32 @@59113@@ -0,0 +1,32 @@
59137+//59114+//
59138+// service_registry_fwd.hpp59115+// service_registry_fwd.hpp
@@ -59169,7 +59146,7 @@
59169Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/signal_blocker.hpp59146Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/signal_blocker.hpp
59170===================================================================59147===================================================================
59171--- /dev/null 1970-01-01 00:00:00.000000000 +000059148--- /dev/null 1970-01-01 00:00:00.000000000 +0000
59172+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/signal_blocker.hpp 2009-10-21 20:44:48.000000000 +100059149+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/signal_blocker.hpp 2009-10-23 10:28:04.000000000 -0700
59173@@ -0,0 +1,52 @@59150@@ -0,0 +1,52 @@
59174+//59151+//
59175+// signal_blocker.hpp59152+// signal_blocker.hpp
@@ -59226,7 +59203,7 @@
59226Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/signal_init.hpp59203Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/signal_init.hpp
59227===================================================================59204===================================================================
59228--- /dev/null 1970-01-01 00:00:00.000000000 +000059205--- /dev/null 1970-01-01 00:00:00.000000000 +0000
59229+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/signal_init.hpp 2009-10-21 20:44:48.000000000 +100059206+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/signal_init.hpp 2009-10-23 10:28:04.000000000 -0700
59230@@ -0,0 +1,53 @@59207@@ -0,0 +1,53 @@
59231+//59208+//
59232+// signal_init.hpp59209+// signal_init.hpp
@@ -59284,7 +59261,7 @@
59284Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/socket_holder.hpp59261Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/socket_holder.hpp
59285===================================================================59262===================================================================
59286--- /dev/null 1970-01-01 00:00:00.000000000 +000059263--- /dev/null 1970-01-01 00:00:00.000000000 +0000
59287+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/socket_holder.hpp 2009-10-21 20:44:48.000000000 +100059264+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/socket_holder.hpp 2009-10-23 10:28:04.000000000 -0700
59288@@ -0,0 +1,97 @@59265@@ -0,0 +1,97 @@
59289+//59266+//
59290+// socket_holder.hpp59267+// socket_holder.hpp
@@ -59386,7 +59363,7 @@
59386Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/socket_ops.hpp59363Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/socket_ops.hpp
59387===================================================================59364===================================================================
59388--- /dev/null 1970-01-01 00:00:00.000000000 +000059365--- /dev/null 1970-01-01 00:00:00.000000000 +0000
59389+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/socket_ops.hpp 2009-10-21 20:44:48.000000000 +100059366+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/socket_ops.hpp 2009-10-23 10:28:04.000000000 -0700
59390@@ -0,0 +1,1913 @@59367@@ -0,0 +1,1913 @@
59391+//59368+//
59392+// socket_ops.hpp59369+// socket_ops.hpp
@@ -61304,7 +61281,7 @@
61304Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/socket_option.hpp61281Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/socket_option.hpp
61305===================================================================61282===================================================================
61306--- /dev/null 1970-01-01 00:00:00.000000000 +000061283--- /dev/null 1970-01-01 00:00:00.000000000 +0000
61307+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/socket_option.hpp 2009-10-21 20:44:48.000000000 +100061284+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/socket_option.hpp 2009-10-23 10:28:04.000000000 -0700
61308@@ -0,0 +1,311 @@61285@@ -0,0 +1,311 @@
61309+//61286+//
61310+// socket_option.hpp61287+// socket_option.hpp
@@ -61620,7 +61597,7 @@
61620Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/socket_select_interrupter.hpp61597Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/socket_select_interrupter.hpp
61621===================================================================61598===================================================================
61622--- /dev/null 1970-01-01 00:00:00.000000000 +000061599--- /dev/null 1970-01-01 00:00:00.000000000 +0000
61623+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/socket_select_interrupter.hpp 2009-10-21 20:44:48.000000000 +100061600+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/socket_select_interrupter.hpp 2009-10-23 10:28:04.000000000 -0700
61624@@ -0,0 +1,189 @@61601@@ -0,0 +1,189 @@
61625+//61602+//
61626+// socket_select_interrupter.hpp61603+// socket_select_interrupter.hpp
@@ -61814,7 +61791,7 @@
61814Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/socket_types.hpp61791Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/socket_types.hpp
61815===================================================================61792===================================================================
61816--- /dev/null 1970-01-01 00:00:00.000000000 +000061793--- /dev/null 1970-01-01 00:00:00.000000000 +0000
61817+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/socket_types.hpp 2009-10-21 20:44:48.000000000 +100061794+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/socket_types.hpp 2009-10-23 10:28:04.000000000 -0700
61818@@ -0,0 +1,212 @@61795@@ -0,0 +1,212 @@
61819+//61796+//
61820+// socket_types.hpp61797+// socket_types.hpp
@@ -62031,7 +62008,7 @@
62031Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/strand_service.hpp62008Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/strand_service.hpp
62032===================================================================62009===================================================================
62033--- /dev/null 1970-01-01 00:00:00.000000000 +000062010--- /dev/null 1970-01-01 00:00:00.000000000 +0000
62034+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/strand_service.hpp 2009-10-21 20:44:48.000000000 +100062011+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/strand_service.hpp 2009-10-23 10:28:04.000000000 -0700
62035@@ -0,0 +1,532 @@62012@@ -0,0 +1,532 @@
62036+//62013+//
62037+// strand_service.hpp62014+// strand_service.hpp
@@ -62568,7 +62545,7 @@
62568Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/task_io_service.hpp62545Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/task_io_service.hpp
62569===================================================================62546===================================================================
62570--- /dev/null 1970-01-01 00:00:00.000000000 +000062547--- /dev/null 1970-01-01 00:00:00.000000000 +0000
62571+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/task_io_service.hpp 2009-10-21 20:44:48.000000000 +100062548+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/task_io_service.hpp 2009-10-23 10:28:04.000000000 -0700
62572@@ -0,0 +1,438 @@62549@@ -0,0 +1,438 @@
62573+//62550+//
62574+// task_io_service.hpp62551+// task_io_service.hpp
@@ -63011,7 +62988,7 @@
63011Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/task_io_service_2lock.hpp62988Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/task_io_service_2lock.hpp
63012===================================================================62989===================================================================
63013--- /dev/null 1970-01-01 00:00:00.000000000 +000062990--- /dev/null 1970-01-01 00:00:00.000000000 +0000
63014+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/task_io_service_2lock.hpp 2009-10-21 20:44:49.000000000 +100062991+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/task_io_service_2lock.hpp 2009-10-23 10:28:04.000000000 -0700
63015@@ -0,0 +1,475 @@62992@@ -0,0 +1,475 @@
63016+//62993+//
63017+// task_io_service_2lock.hpp62994+// task_io_service_2lock.hpp
@@ -63491,7 +63468,7 @@
63491Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/task_io_service_fwd.hpp63468Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/task_io_service_fwd.hpp
63492===================================================================63469===================================================================
63493--- /dev/null 1970-01-01 00:00:00.000000000 +000063470--- /dev/null 1970-01-01 00:00:00.000000000 +0000
63494+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/task_io_service_fwd.hpp 2009-10-21 20:44:49.000000000 +100063471+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/task_io_service_fwd.hpp 2009-10-23 10:28:04.000000000 -0700
63495@@ -0,0 +1,33 @@63472@@ -0,0 +1,33 @@
63496+//63473+//
63497+// task_io_service_fwd.hpp63474+// task_io_service_fwd.hpp
@@ -63529,7 +63506,7 @@
63529Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/thread.hpp63506Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/thread.hpp
63530===================================================================63507===================================================================
63531--- /dev/null 1970-01-01 00:00:00.000000000 +000063508--- /dev/null 1970-01-01 00:00:00.000000000 +0000
63532+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/thread.hpp 2009-10-21 20:44:49.000000000 +100063509+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/thread.hpp 2009-10-23 10:28:04.000000000 -0700
63533@@ -0,0 +1,60 @@63510@@ -0,0 +1,60 @@
63534+//63511+//
63535+// thread.hpp63512+// thread.hpp
@@ -63594,7 +63571,7 @@
63594Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/throw_error.hpp63571Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/throw_error.hpp
63595===================================================================63572===================================================================
63596--- /dev/null 1970-01-01 00:00:00.000000000 +000063573--- /dev/null 1970-01-01 00:00:00.000000000 +0000
63597+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/throw_error.hpp 2009-10-21 20:44:49.000000000 +100063574+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/throw_error.hpp 2009-10-23 10:28:04.000000000 -0700
63598@@ -0,0 +1,46 @@63575@@ -0,0 +1,46 @@
63599+//63576+//
63600+// throw_error.hpp63577+// throw_error.hpp
@@ -63645,7 +63622,7 @@
63645Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/timer_queue.hpp63622Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/timer_queue.hpp
63646===================================================================63623===================================================================
63647--- /dev/null 1970-01-01 00:00:00.000000000 +000063624--- /dev/null 1970-01-01 00:00:00.000000000 +0000
63648+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/timer_queue.hpp 2009-10-21 20:44:49.000000000 +100063625+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/timer_queue.hpp 2009-10-23 10:28:04.000000000 -0700
63649@@ -0,0 +1,438 @@63626@@ -0,0 +1,438 @@
63650+//63627+//
63651+// timer_queue.hpp63628+// timer_queue.hpp
@@ -64088,7 +64065,7 @@
64088Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/timer_queue_base.hpp64065Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/timer_queue_base.hpp
64089===================================================================64066===================================================================
64090--- /dev/null 1970-01-01 00:00:00.000000000 +000064067--- /dev/null 1970-01-01 00:00:00.000000000 +0000
64091+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/timer_queue_base.hpp 2009-10-21 20:44:49.000000000 +100064068+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/timer_queue_base.hpp 2009-10-23 10:28:04.000000000 -0700
64092@@ -0,0 +1,64 @@64069@@ -0,0 +1,64 @@
64093+//64070+//
64094+// timer_queue_base.hpp64071+// timer_queue_base.hpp
@@ -64157,7 +64134,7 @@
64157Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/tss_ptr.hpp64134Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/tss_ptr.hpp
64158===================================================================64135===================================================================
64159--- /dev/null 1970-01-01 00:00:00.000000000 +000064136--- /dev/null 1970-01-01 00:00:00.000000000 +0000
64160+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/tss_ptr.hpp 2009-10-21 20:44:49.000000000 +100064137+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/tss_ptr.hpp 2009-10-23 10:28:04.000000000 -0700
64161@@ -0,0 +1,67 @@64138@@ -0,0 +1,67 @@
64162+//64139+//
64163+// tss_ptr.hpp64140+// tss_ptr.hpp
@@ -64229,7 +64206,7 @@
64229Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_event.hpp64206Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_event.hpp
64230===================================================================64207===================================================================
64231--- /dev/null 1970-01-01 00:00:00.000000000 +000064208--- /dev/null 1970-01-01 00:00:00.000000000 +0000
64232+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_event.hpp 2009-10-21 20:44:49.000000000 +100064209+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_event.hpp 2009-10-23 10:28:04.000000000 -0700
64233@@ -0,0 +1,105 @@64210@@ -0,0 +1,105 @@
64234+//64211+//
64235+// win_event.hpp64212+// win_event.hpp
@@ -64339,7 +64316,7 @@
64339Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_fd_set_adapter.hpp64316Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_fd_set_adapter.hpp
64340===================================================================64317===================================================================
64341--- /dev/null 1970-01-01 00:00:00.000000000 +000064318--- /dev/null 1970-01-01 00:00:00.000000000 +0000
64342+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_fd_set_adapter.hpp 2009-10-21 20:44:49.000000000 +100064319+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_fd_set_adapter.hpp 2009-10-23 10:28:04.000000000 -0700
64343@@ -0,0 +1,90 @@64320@@ -0,0 +1,90 @@
64344+//64321+//
64345+// win_fd_set_adapter.hpp64322+// win_fd_set_adapter.hpp
@@ -64434,7 +64411,7 @@
64434Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_iocp_handle_service.hpp64411Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_iocp_handle_service.hpp
64435===================================================================64412===================================================================
64436--- /dev/null 1970-01-01 00:00:00.000000000 +000064413--- /dev/null 1970-01-01 00:00:00.000000000 +0000
64437+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_iocp_handle_service.hpp 2009-10-21 20:44:49.000000000 +100064414+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_iocp_handle_service.hpp 2009-10-23 10:28:04.000000000 -0700
64438@@ -0,0 +1,834 @@64415@@ -0,0 +1,834 @@
64439+//64416+//
64440+// win_iocp_handle_service.hpp64417+// win_iocp_handle_service.hpp
@@ -65273,7 +65250,7 @@
65273Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_iocp_io_service.hpp65250Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_iocp_io_service.hpp
65274===================================================================65251===================================================================
65275--- /dev/null 1970-01-01 00:00:00.000000000 +000065252--- /dev/null 1970-01-01 00:00:00.000000000 +0000
65276+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_iocp_io_service.hpp 2009-10-21 20:44:49.000000000 +100065253+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_iocp_io_service.hpp 2009-10-23 10:28:04.000000000 -0700
65277@@ -0,0 +1,738 @@65254@@ -0,0 +1,738 @@
65278+//65255+//
65279+// win_iocp_io_service.hpp65256+// win_iocp_io_service.hpp
@@ -66016,7 +65993,7 @@
66016Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_iocp_io_service_fwd.hpp65993Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_iocp_io_service_fwd.hpp
66017===================================================================65994===================================================================
66018--- /dev/null 1970-01-01 00:00:00.000000000 +000065995--- /dev/null 1970-01-01 00:00:00.000000000 +0000
66019+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_iocp_io_service_fwd.hpp 2009-10-21 20:44:49.000000000 +100065996+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_iocp_io_service_fwd.hpp 2009-10-23 10:28:04.000000000 -0700
66020@@ -0,0 +1,53 @@65997@@ -0,0 +1,53 @@
66021+//65998+//
66022+// win_iocp_io_service_fwd.hpp65999+// win_iocp_io_service_fwd.hpp
@@ -66074,7 +66051,7 @@
66074Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_iocp_overlapped_ptr.hpp66051Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_iocp_overlapped_ptr.hpp
66075===================================================================66052===================================================================
66076--- /dev/null 1970-01-01 00:00:00.000000000 +000066053--- /dev/null 1970-01-01 00:00:00.000000000 +0000
66077+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_iocp_overlapped_ptr.hpp 2009-10-21 20:44:49.000000000 +100066054+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_iocp_overlapped_ptr.hpp 2009-10-23 10:28:04.000000000 -0700
66078@@ -0,0 +1,210 @@66055@@ -0,0 +1,210 @@
66079+//66056+//
66080+// win_iocp_overlapped_ptr.hpp66057+// win_iocp_overlapped_ptr.hpp
@@ -66289,7 +66266,7 @@
66289Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_iocp_serial_port_service.hpp66266Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_iocp_serial_port_service.hpp
66290===================================================================66267===================================================================
66291--- /dev/null 1970-01-01 00:00:00.000000000 +000066268--- /dev/null 1970-01-01 00:00:00.000000000 +0000
66292+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_iocp_serial_port_service.hpp 2009-10-21 20:44:49.000000000 +100066269+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_iocp_serial_port_service.hpp 2009-10-23 10:28:04.000000000 -0700
66293@@ -0,0 +1,294 @@66270@@ -0,0 +1,294 @@
66294+//66271+//
66295+// win_iocp_serial_port_service.hpp66272+// win_iocp_serial_port_service.hpp
@@ -66588,7 +66565,7 @@
66588Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_iocp_socket_service.hpp66565Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_iocp_socket_service.hpp
66589===================================================================66566===================================================================
66590--- /dev/null 1970-01-01 00:00:00.000000000 +000066567--- /dev/null 1970-01-01 00:00:00.000000000 +0000
66591+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_iocp_socket_service.hpp 2009-10-21 20:44:49.000000000 +100066568+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_iocp_socket_service.hpp 2009-10-23 10:28:04.000000000 -0700
66592@@ -0,0 +1,2417 @@66569@@ -0,0 +1,2417 @@
66593+//66570+//
66594+// win_iocp_socket_service.hpp66571+// win_iocp_socket_service.hpp
@@ -69010,7 +68987,7 @@
69010Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_mutex.hpp68987Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_mutex.hpp
69011===================================================================68988===================================================================
69012--- /dev/null 1970-01-01 00:00:00.000000000 +000068989--- /dev/null 1970-01-01 00:00:00.000000000 +0000
69013+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_mutex.hpp 2009-10-21 20:44:49.000000000 +100068990+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_mutex.hpp 2009-10-23 10:28:04.000000000 -0700
69014@@ -0,0 +1,151 @@68991@@ -0,0 +1,151 @@
69015+//68992+//
69016+// win_mutex.hpp68993+// win_mutex.hpp
@@ -69166,7 +69143,7 @@
69166Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_signal_blocker.hpp69143Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_signal_blocker.hpp
69167===================================================================69144===================================================================
69168--- /dev/null 1970-01-01 00:00:00.000000000 +000069145--- /dev/null 1970-01-01 00:00:00.000000000 +0000
69169+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_signal_blocker.hpp 2009-10-21 20:44:49.000000000 +100069146+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_signal_blocker.hpp 2009-10-23 10:28:04.000000000 -0700
69170@@ -0,0 +1,69 @@69147@@ -0,0 +1,69 @@
69171+//69148+//
69172+// win_signal_blocker.hpp69149+// win_signal_blocker.hpp
@@ -69240,7 +69217,7 @@
69240Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_thread.hpp69217Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_thread.hpp
69241===================================================================69218===================================================================
69242--- /dev/null 1970-01-01 00:00:00.000000000 +000069219--- /dev/null 1970-01-01 00:00:00.000000000 +0000
69243+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_thread.hpp 2009-10-21 20:44:49.000000000 +100069220+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_thread.hpp 2009-10-23 10:28:04.000000000 -0700
69244@@ -0,0 +1,234 @@69221@@ -0,0 +1,234 @@
69245+//69222+//
69246+// win_thread.hpp69223+// win_thread.hpp
@@ -69479,7 +69456,7 @@
69479Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_tss_ptr.hpp69456Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_tss_ptr.hpp
69480===================================================================69457===================================================================
69481--- /dev/null 1970-01-01 00:00:00.000000000 +000069458--- /dev/null 1970-01-01 00:00:00.000000000 +0000
69482+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_tss_ptr.hpp 2009-10-21 20:44:49.000000000 +100069459+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/win_tss_ptr.hpp 2009-10-23 10:28:04.000000000 -0700
69483@@ -0,0 +1,97 @@69460@@ -0,0 +1,97 @@
69484+//69461+//
69485+// win_tss_ptr.hpp69462+// win_tss_ptr.hpp
@@ -69581,7 +69558,7 @@
69581Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/wince_thread.hpp69558Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/wince_thread.hpp
69582===================================================================69559===================================================================
69583--- /dev/null 1970-01-01 00:00:00.000000000 +000069560--- /dev/null 1970-01-01 00:00:00.000000000 +0000
69584+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/wince_thread.hpp 2009-10-21 20:44:49.000000000 +100069561+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/wince_thread.hpp 2009-10-23 10:28:04.000000000 -0700
69585@@ -0,0 +1,126 @@69562@@ -0,0 +1,126 @@
69586+//69563+//
69587+// wince_thread.hpp69564+// wince_thread.hpp
@@ -69712,7 +69689,7 @@
69712Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/winsock_init.hpp69689Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/winsock_init.hpp
69713===================================================================69690===================================================================
69714--- /dev/null 1970-01-01 00:00:00.000000000 +000069691--- /dev/null 1970-01-01 00:00:00.000000000 +0000
69715+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/winsock_init.hpp 2009-10-21 20:44:49.000000000 +100069692+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/winsock_init.hpp 2009-10-23 10:28:04.000000000 -0700
69716@@ -0,0 +1,122 @@69693@@ -0,0 +1,122 @@
69717+//69694+//
69718+// winsock_init.hpp69695+// winsock_init.hpp
@@ -69839,7 +69816,7 @@
69839Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/wrapped_handler.hpp69816Index: mysql-5.0.86/sql/oqgraph/boost/asio/detail/wrapped_handler.hpp
69840===================================================================69817===================================================================
69841--- /dev/null 1970-01-01 00:00:00.000000000 +000069818--- /dev/null 1970-01-01 00:00:00.000000000 +0000
69842+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/wrapped_handler.hpp 2009-10-21 20:44:49.000000000 +100069819+++ mysql-5.0.86/sql/oqgraph/boost/asio/detail/wrapped_handler.hpp 2009-10-23 10:28:04.000000000 -0700
69843@@ -0,0 +1,211 @@69820@@ -0,0 +1,211 @@
69844+//69821+//
69845+// wrapped_handler.hpp69822+// wrapped_handler.hpp
@@ -70055,7 +70032,7 @@
70055Index: mysql-5.0.86/sql/oqgraph/boost/asio/error.hpp70032Index: mysql-5.0.86/sql/oqgraph/boost/asio/error.hpp
70056===================================================================70033===================================================================
70057--- /dev/null 1970-01-01 00:00:00.000000000 +000070034--- /dev/null 1970-01-01 00:00:00.000000000 +0000
70058+++ mysql-5.0.86/sql/oqgraph/boost/asio/error.hpp 2009-10-21 20:44:49.000000000 +100070035+++ mysql-5.0.86/sql/oqgraph/boost/asio/error.hpp 2009-10-23 10:28:04.000000000 -0700
70059@@ -0,0 +1,442 @@70036@@ -0,0 +1,442 @@
70060+//70037+//
70061+// error.hpp70038+// error.hpp
@@ -70502,7 +70479,7 @@
70502Index: mysql-5.0.86/sql/oqgraph/boost/asio/handler_alloc_hook.hpp70479Index: mysql-5.0.86/sql/oqgraph/boost/asio/handler_alloc_hook.hpp
70503===================================================================70480===================================================================
70504--- /dev/null 1970-01-01 00:00:00.000000000 +000070481--- /dev/null 1970-01-01 00:00:00.000000000 +0000
70505+++ mysql-5.0.86/sql/oqgraph/boost/asio/handler_alloc_hook.hpp 2009-10-21 20:44:49.000000000 +100070482+++ mysql-5.0.86/sql/oqgraph/boost/asio/handler_alloc_hook.hpp 2009-10-23 10:28:04.000000000 -0700
70506@@ -0,0 +1,90 @@70483@@ -0,0 +1,90 @@
70507+//70484+//
70508+// handler_alloc_hook.hpp70485+// handler_alloc_hook.hpp
@@ -70597,7 +70574,7 @@
70597Index: mysql-5.0.86/sql/oqgraph/boost/asio/handler_invoke_hook.hpp70574Index: mysql-5.0.86/sql/oqgraph/boost/asio/handler_invoke_hook.hpp
70598===================================================================70575===================================================================
70599--- /dev/null 1970-01-01 00:00:00.000000000 +000070576--- /dev/null 1970-01-01 00:00:00.000000000 +0000
70600+++ mysql-5.0.86/sql/oqgraph/boost/asio/handler_invoke_hook.hpp 2009-10-21 20:44:49.000000000 +100070577+++ mysql-5.0.86/sql/oqgraph/boost/asio/handler_invoke_hook.hpp 2009-10-23 10:28:04.000000000 -0700
70601@@ -0,0 +1,71 @@70578@@ -0,0 +1,71 @@
70602+//70579+//
70603+// handler_invoke_hook.hpp70580+// handler_invoke_hook.hpp
@@ -70673,7 +70650,7 @@
70673Index: mysql-5.0.86/sql/oqgraph/boost/asio/impl/io_service.ipp70650Index: mysql-5.0.86/sql/oqgraph/boost/asio/impl/io_service.ipp
70674===================================================================70651===================================================================
70675--- /dev/null 1970-01-01 00:00:00.000000000 +000070652--- /dev/null 1970-01-01 00:00:00.000000000 +0000
70676+++ mysql-5.0.86/sql/oqgraph/boost/asio/impl/io_service.ipp 2009-10-21 20:44:49.000000000 +100070653+++ mysql-5.0.86/sql/oqgraph/boost/asio/impl/io_service.ipp 2009-10-23 10:28:04.000000000 -0700
70677@@ -0,0 +1,226 @@70654@@ -0,0 +1,226 @@
70678+//70655+//
70679+// io_service.ipp70656+// io_service.ipp
@@ -70904,7 +70881,7 @@
70904Index: mysql-5.0.86/sql/oqgraph/boost/asio/impl/read.ipp70881Index: mysql-5.0.86/sql/oqgraph/boost/asio/impl/read.ipp
70905===================================================================70882===================================================================
70906--- /dev/null 1970-01-01 00:00:00.000000000 +000070883--- /dev/null 1970-01-01 00:00:00.000000000 +0000
70907+++ mysql-5.0.86/sql/oqgraph/boost/asio/impl/read.ipp 2009-10-21 20:44:49.000000000 +100070884+++ mysql-5.0.86/sql/oqgraph/boost/asio/impl/read.ipp 2009-10-23 10:28:04.000000000 -0700
70908@@ -0,0 +1,349 @@70885@@ -0,0 +1,349 @@
70909+//70886+//
70910+// read.ipp70887+// read.ipp
@@ -71258,7 +71235,7 @@
71258Index: mysql-5.0.86/sql/oqgraph/boost/asio/impl/read_at.ipp71235Index: mysql-5.0.86/sql/oqgraph/boost/asio/impl/read_at.ipp
71259===================================================================71236===================================================================
71260--- /dev/null 1970-01-01 00:00:00.000000000 +000071237--- /dev/null 1970-01-01 00:00:00.000000000 +0000
71261+++ mysql-5.0.86/sql/oqgraph/boost/asio/impl/read_at.ipp 2009-10-21 20:44:49.000000000 +100071238+++ mysql-5.0.86/sql/oqgraph/boost/asio/impl/read_at.ipp 2009-10-23 10:28:04.000000000 -0700
71262@@ -0,0 +1,367 @@71239@@ -0,0 +1,367 @@
71263+//71240+//
71264+// read_at.ipp71241+// read_at.ipp
@@ -71630,7 +71607,7 @@
71630Index: mysql-5.0.86/sql/oqgraph/boost/asio/impl/read_until.ipp71607Index: mysql-5.0.86/sql/oqgraph/boost/asio/impl/read_until.ipp
71631===================================================================71608===================================================================
71632--- /dev/null 1970-01-01 00:00:00.000000000 +000071609--- /dev/null 1970-01-01 00:00:00.000000000 +0000
71633+++ mysql-5.0.86/sql/oqgraph/boost/asio/impl/read_until.ipp 2009-10-21 20:44:49.000000000 +100071610+++ mysql-5.0.86/sql/oqgraph/boost/asio/impl/read_until.ipp 2009-10-23 10:28:04.000000000 -0700
71634@@ -0,0 +1,989 @@71611@@ -0,0 +1,989 @@
71635+//71612+//
71636+// read_until.ipp71613+// read_until.ipp
@@ -72624,7 +72601,7 @@
72624Index: mysql-5.0.86/sql/oqgraph/boost/asio/impl/serial_port_base.ipp72601Index: mysql-5.0.86/sql/oqgraph/boost/asio/impl/serial_port_base.ipp
72625===================================================================72602===================================================================
72626--- /dev/null 1970-01-01 00:00:00.000000000 +000072603--- /dev/null 1970-01-01 00:00:00.000000000 +0000
72627+++ mysql-5.0.86/sql/oqgraph/boost/asio/impl/serial_port_base.ipp 2009-10-21 20:44:49.000000000 +100072604+++ mysql-5.0.86/sql/oqgraph/boost/asio/impl/serial_port_base.ipp 2009-10-23 10:28:04.000000000 -0700
72628@@ -0,0 +1,543 @@72605@@ -0,0 +1,543 @@
72629+//72606+//
72630+// serial_port_base.ipp72607+// serial_port_base.ipp
@@ -73172,7 +73149,7 @@
73172Index: mysql-5.0.86/sql/oqgraph/boost/asio/impl/write.ipp73149Index: mysql-5.0.86/sql/oqgraph/boost/asio/impl/write.ipp
73173===================================================================73150===================================================================
73174--- /dev/null 1970-01-01 00:00:00.000000000 +000073151--- /dev/null 1970-01-01 00:00:00.000000000 +0000
73175+++ mysql-5.0.86/sql/oqgraph/boost/asio/impl/write.ipp 2009-10-21 20:44:49.000000000 +100073152+++ mysql-5.0.86/sql/oqgraph/boost/asio/impl/write.ipp 2009-10-23 10:28:04.000000000 -0700
73176@@ -0,0 +1,296 @@73153@@ -0,0 +1,296 @@
73177+//73154+//
73178+// write.ipp73155+// write.ipp
@@ -73473,7 +73450,7 @@
73473Index: mysql-5.0.86/sql/oqgraph/boost/asio/impl/write_at.ipp73450Index: mysql-5.0.86/sql/oqgraph/boost/asio/impl/write_at.ipp
73474===================================================================73451===================================================================
73475--- /dev/null 1970-01-01 00:00:00.000000000 +000073452--- /dev/null 1970-01-01 00:00:00.000000000 +0000
73476+++ mysql-5.0.86/sql/oqgraph/boost/asio/impl/write_at.ipp 2009-10-21 20:44:49.000000000 +100073453+++ mysql-5.0.86/sql/oqgraph/boost/asio/impl/write_at.ipp 2009-10-23 10:28:04.000000000 -0700
73477@@ -0,0 +1,313 @@73454@@ -0,0 +1,313 @@
73478+//73455+//
73479+// write_at.ipp73456+// write_at.ipp
@@ -73791,7 +73768,7 @@
73791Index: mysql-5.0.86/sql/oqgraph/boost/asio/io_service.hpp73768Index: mysql-5.0.86/sql/oqgraph/boost/asio/io_service.hpp
73792===================================================================73769===================================================================
73793--- /dev/null 1970-01-01 00:00:00.000000000 +000073770--- /dev/null 1970-01-01 00:00:00.000000000 +0000
73794+++ mysql-5.0.86/sql/oqgraph/boost/asio/io_service.hpp 2009-10-21 20:44:49.000000000 +100073771+++ mysql-5.0.86/sql/oqgraph/boost/asio/io_service.hpp 2009-10-23 10:28:04.000000000 -0700
73795@@ -0,0 +1,554 @@73772@@ -0,0 +1,554 @@
73796+//73773+//
73797+// io_service.hpp73774+// io_service.hpp
@@ -74350,7 +74327,7 @@
74350Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/address.hpp74327Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/address.hpp
74351===================================================================74328===================================================================
74352--- /dev/null 1970-01-01 00:00:00.000000000 +000074329--- /dev/null 1970-01-01 00:00:00.000000000 +0000
74353+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/address.hpp 2009-10-21 20:44:49.000000000 +100074330+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/address.hpp 2009-10-23 10:28:04.000000000 -0700
74354@@ -0,0 +1,279 @@74331@@ -0,0 +1,279 @@
74355+//74332+//
74356+// address.hpp74333+// address.hpp
@@ -74634,7 +74611,7 @@
74634Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/address_v4.hpp74611Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/address_v4.hpp
74635===================================================================74612===================================================================
74636--- /dev/null 1970-01-01 00:00:00.000000000 +000074613--- /dev/null 1970-01-01 00:00:00.000000000 +0000
74637+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/address_v4.hpp 2009-10-21 20:44:49.000000000 +100074614+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/address_v4.hpp 2009-10-23 10:28:04.000000000 -0700
74638@@ -0,0 +1,309 @@74615@@ -0,0 +1,309 @@
74639+//74616+//
74640+// address_v4.hpp74617+// address_v4.hpp
@@ -74948,7 +74925,7 @@
74948Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/address_v6.hpp74925Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/address_v6.hpp
74949===================================================================74926===================================================================
74950--- /dev/null 1970-01-01 00:00:00.000000000 +000074927--- /dev/null 1970-01-01 00:00:00.000000000 +0000
74951+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/address_v6.hpp 2009-10-21 20:44:49.000000000 +100074928+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/address_v6.hpp 2009-10-23 10:28:04.000000000 -0700
74952@@ -0,0 +1,423 @@74929@@ -0,0 +1,423 @@
74953+//74930+//
74954+// address_v6.hpp74931+// address_v6.hpp
@@ -75376,7 +75353,7 @@
75376Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/basic_endpoint.hpp75353Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/basic_endpoint.hpp
75377===================================================================75354===================================================================
75378--- /dev/null 1970-01-01 00:00:00.000000000 +000075355--- /dev/null 1970-01-01 00:00:00.000000000 +0000
75379+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/basic_endpoint.hpp 2009-10-21 20:44:49.000000000 +100075356+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/basic_endpoint.hpp 2009-10-23 10:28:04.000000000 -0700
75380@@ -0,0 +1,377 @@75357@@ -0,0 +1,377 @@
75381+//75358+//
75382+// basic_endpoint.hpp75359+// basic_endpoint.hpp
@@ -75758,7 +75735,7 @@
75758Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/basic_resolver.hpp75735Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/basic_resolver.hpp
75759===================================================================75736===================================================================
75760--- /dev/null 1970-01-01 00:00:00.000000000 +000075737--- /dev/null 1970-01-01 00:00:00.000000000 +0000
75761+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/basic_resolver.hpp 2009-10-21 20:44:49.000000000 +100075738+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/basic_resolver.hpp 2009-10-23 10:28:04.000000000 -0700
75762@@ -0,0 +1,248 @@75739@@ -0,0 +1,248 @@
75763+//75740+//
75764+// basic_resolver.hpp75741+// basic_resolver.hpp
@@ -76011,7 +75988,7 @@
76011Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/basic_resolver_entry.hpp75988Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/basic_resolver_entry.hpp
76012===================================================================75989===================================================================
76013--- /dev/null 1970-01-01 00:00:00.000000000 +000075990--- /dev/null 1970-01-01 00:00:00.000000000 +0000
76014+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/basic_resolver_entry.hpp 2009-10-21 20:44:49.000000000 +100075991+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/basic_resolver_entry.hpp 2009-10-23 10:28:04.000000000 -0700
76015@@ -0,0 +1,97 @@75992@@ -0,0 +1,97 @@
76016+//75993+//
76017+// basic_resolver_entry.hpp75994+// basic_resolver_entry.hpp
@@ -76113,7 +76090,7 @@
76113Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/basic_resolver_iterator.hpp76090Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/basic_resolver_iterator.hpp
76114===================================================================76091===================================================================
76115--- /dev/null 1970-01-01 00:00:00.000000000 +000076092--- /dev/null 1970-01-01 00:00:00.000000000 +0000
76116+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/basic_resolver_iterator.hpp 2009-10-21 20:44:49.000000000 +100076093+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/basic_resolver_iterator.hpp 2009-10-23 10:28:05.000000000 -0700
76117@@ -0,0 +1,156 @@76094@@ -0,0 +1,156 @@
76118+//76095+//
76119+// basic_resolver_iterator.hpp76096+// basic_resolver_iterator.hpp
@@ -76274,7 +76251,7 @@
76274Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/basic_resolver_query.hpp76251Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/basic_resolver_query.hpp
76275===================================================================76252===================================================================
76276--- /dev/null 1970-01-01 00:00:00.000000000 +000076253--- /dev/null 1970-01-01 00:00:00.000000000 +0000
76277+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/basic_resolver_query.hpp 2009-10-21 20:44:49.000000000 +100076254+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/basic_resolver_query.hpp 2009-10-23 10:28:05.000000000 -0700
76278@@ -0,0 +1,151 @@76255@@ -0,0 +1,151 @@
76279+//76256+//
76280+// basic_resolver_query.hpp76257+// basic_resolver_query.hpp
@@ -76430,7 +76407,7 @@
76430Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/detail/socket_option.hpp76407Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/detail/socket_option.hpp
76431===================================================================76408===================================================================
76432--- /dev/null 1970-01-01 00:00:00.000000000 +000076409--- /dev/null 1970-01-01 00:00:00.000000000 +0000
76433+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/detail/socket_option.hpp 2009-10-21 20:44:49.000000000 +100076410+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/detail/socket_option.hpp 2009-10-23 10:28:05.000000000 -0700
76434@@ -0,0 +1,580 @@76411@@ -0,0 +1,580 @@
76435+//76412+//
76436+// socket_option.hpp76413+// socket_option.hpp
@@ -77015,7 +76992,7 @@
77015Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/host_name.hpp76992Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/host_name.hpp
77016===================================================================76993===================================================================
77017--- /dev/null 1970-01-01 00:00:00.000000000 +000076994--- /dev/null 1970-01-01 00:00:00.000000000 +0000
77018+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/host_name.hpp 2009-10-21 20:44:49.000000000 +100076995+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/host_name.hpp 2009-10-23 10:28:05.000000000 -0700
77019@@ -0,0 +1,64 @@76996@@ -0,0 +1,64 @@
77020+//76997+//
77021+// host_name.hpp76998+// host_name.hpp
@@ -77084,7 +77061,7 @@
77084Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/icmp.hpp77061Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/icmp.hpp
77085===================================================================77062===================================================================
77086--- /dev/null 1970-01-01 00:00:00.000000000 +000077063--- /dev/null 1970-01-01 00:00:00.000000000 +0000
77087+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/icmp.hpp 2009-10-21 20:44:49.000000000 +100077064+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/icmp.hpp 2009-10-23 10:28:05.000000000 -0700
77088@@ -0,0 +1,120 @@77065@@ -0,0 +1,120 @@
77089+//77066+//
77090+// icmp.hpp77067+// icmp.hpp
@@ -77209,7 +77186,7 @@
77209Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/multicast.hpp77186Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/multicast.hpp
77210===================================================================77187===================================================================
77211--- /dev/null 1970-01-01 00:00:00.000000000 +000077188--- /dev/null 1970-01-01 00:00:00.000000000 +0000
77212+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/multicast.hpp 2009-10-21 20:44:49.000000000 +100077189+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/multicast.hpp 2009-10-23 10:28:05.000000000 -0700
77213@@ -0,0 +1,183 @@77190@@ -0,0 +1,183 @@
77214+//77191+//
77215+// multicast.hpp77192+// multicast.hpp
@@ -77397,7 +77374,7 @@
77397Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/resolver_query_base.hpp77374Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/resolver_query_base.hpp
77398===================================================================77375===================================================================
77399--- /dev/null 1970-01-01 00:00:00.000000000 +000077376--- /dev/null 1970-01-01 00:00:00.000000000 +0000
77400+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/resolver_query_base.hpp 2009-10-21 20:44:49.000000000 +100077377+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/resolver_query_base.hpp 2009-10-23 10:28:05.000000000 -0700
77401@@ -0,0 +1,111 @@77378@@ -0,0 +1,111 @@
77402+//77379+//
77403+// resolver_query_base.hpp77380+// resolver_query_base.hpp
@@ -77513,7 +77490,7 @@
77513Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/resolver_service.hpp77490Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/resolver_service.hpp
77514===================================================================77491===================================================================
77515--- /dev/null 1970-01-01 00:00:00.000000000 +000077492--- /dev/null 1970-01-01 00:00:00.000000000 +0000
77516+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/resolver_service.hpp 2009-10-21 20:44:49.000000000 +100077493+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/resolver_service.hpp 2009-10-23 10:28:05.000000000 -0700
77517@@ -0,0 +1,142 @@77494@@ -0,0 +1,142 @@
77518+//77495+//
77519+// resolver_service.hpp77496+// resolver_service.hpp
@@ -77660,7 +77637,7 @@
77660Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/tcp.hpp77637Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/tcp.hpp
77661===================================================================77638===================================================================
77662--- /dev/null 1970-01-01 00:00:00.000000000 +000077639--- /dev/null 1970-01-01 00:00:00.000000000 +0000
77663+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/tcp.hpp 2009-10-21 20:44:49.000000000 +100077640+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/tcp.hpp 2009-10-23 10:28:05.000000000 -0700
77664@@ -0,0 +1,160 @@77641@@ -0,0 +1,160 @@
77665+//77642+//
77666+// tcp.hpp77643+// tcp.hpp
@@ -77825,7 +77802,7 @@
77825Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/udp.hpp77802Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/udp.hpp
77826===================================================================77803===================================================================
77827--- /dev/null 1970-01-01 00:00:00.000000000 +000077804--- /dev/null 1970-01-01 00:00:00.000000000 +0000
77828+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/udp.hpp 2009-10-21 20:44:49.000000000 +100077805+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/udp.hpp 2009-10-23 10:28:05.000000000 -0700
77829@@ -0,0 +1,118 @@77806@@ -0,0 +1,118 @@
77830+//77807+//
77831+// udp.hpp77808+// udp.hpp
@@ -77948,7 +77925,7 @@
77948Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/unicast.hpp77925Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/unicast.hpp
77949===================================================================77926===================================================================
77950--- /dev/null 1970-01-01 00:00:00.000000000 +000077927--- /dev/null 1970-01-01 00:00:00.000000000 +0000
77951+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/unicast.hpp 2009-10-21 20:44:49.000000000 +100077928+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/unicast.hpp 2009-10-23 10:28:05.000000000 -0700
77952@@ -0,0 +1,72 @@77929@@ -0,0 +1,72 @@
77953+//77930+//
77954+// unicast.hpp77931+// unicast.hpp
@@ -78025,7 +78002,7 @@
78025Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/v6_only.hpp78002Index: mysql-5.0.86/sql/oqgraph/boost/asio/ip/v6_only.hpp
78026===================================================================78003===================================================================
78027--- /dev/null 1970-01-01 00:00:00.000000000 +000078004--- /dev/null 1970-01-01 00:00:00.000000000 +0000
78028+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/v6_only.hpp 2009-10-21 20:44:49.000000000 +100078005+++ mysql-5.0.86/sql/oqgraph/boost/asio/ip/v6_only.hpp 2009-10-23 10:28:05.000000000 -0700
78029@@ -0,0 +1,70 @@78006@@ -0,0 +1,70 @@
78030+//78007+//
78031+// v6_only.hpp78008+// v6_only.hpp
@@ -78100,7 +78077,7 @@
78100Index: mysql-5.0.86/sql/oqgraph/boost/asio/is_read_buffered.hpp78077Index: mysql-5.0.86/sql/oqgraph/boost/asio/is_read_buffered.hpp
78101===================================================================78078===================================================================
78102--- /dev/null 1970-01-01 00:00:00.000000000 +000078079--- /dev/null 1970-01-01 00:00:00.000000000 +0000
78103+++ mysql-5.0.86/sql/oqgraph/boost/asio/is_read_buffered.hpp 2009-10-21 20:44:49.000000000 +100078080+++ mysql-5.0.86/sql/oqgraph/boost/asio/is_read_buffered.hpp 2009-10-23 10:28:05.000000000 -0700
78104@@ -0,0 +1,64 @@78081@@ -0,0 +1,64 @@
78105+//78082+//
78106+// is_read_buffered.hpp78083+// is_read_buffered.hpp
@@ -78169,7 +78146,7 @@
78169Index: mysql-5.0.86/sql/oqgraph/boost/asio/is_write_buffered.hpp78146Index: mysql-5.0.86/sql/oqgraph/boost/asio/is_write_buffered.hpp
78170===================================================================78147===================================================================
78171--- /dev/null 1970-01-01 00:00:00.000000000 +000078148--- /dev/null 1970-01-01 00:00:00.000000000 +0000
78172+++ mysql-5.0.86/sql/oqgraph/boost/asio/is_write_buffered.hpp 2009-10-21 20:44:49.000000000 +100078149+++ mysql-5.0.86/sql/oqgraph/boost/asio/is_write_buffered.hpp 2009-10-23 10:28:05.000000000 -0700
78173@@ -0,0 +1,64 @@78150@@ -0,0 +1,64 @@
78174+//78151+//
78175+// is_write_buffered.hpp78152+// is_write_buffered.hpp
@@ -78238,7 +78215,7 @@
78238Index: mysql-5.0.86/sql/oqgraph/boost/asio/local/basic_endpoint.hpp78215Index: mysql-5.0.86/sql/oqgraph/boost/asio/local/basic_endpoint.hpp
78239===================================================================78216===================================================================
78240--- /dev/null 1970-01-01 00:00:00.000000000 +000078217--- /dev/null 1970-01-01 00:00:00.000000000 +0000
78241+++ mysql-5.0.86/sql/oqgraph/boost/asio/local/basic_endpoint.hpp 2009-10-21 20:44:49.000000000 +100078218+++ mysql-5.0.86/sql/oqgraph/boost/asio/local/basic_endpoint.hpp 2009-10-23 10:28:05.000000000 -0700
78242@@ -0,0 +1,267 @@78219@@ -0,0 +1,267 @@
78243+//78220+//
78244+// basic_endpoint.hpp78221+// basic_endpoint.hpp
@@ -78510,7 +78487,7 @@
78510Index: mysql-5.0.86/sql/oqgraph/boost/asio/local/connect_pair.hpp78487Index: mysql-5.0.86/sql/oqgraph/boost/asio/local/connect_pair.hpp
78511===================================================================78488===================================================================
78512--- /dev/null 1970-01-01 00:00:00.000000000 +000078489--- /dev/null 1970-01-01 00:00:00.000000000 +0000
78513+++ mysql-5.0.86/sql/oqgraph/boost/asio/local/connect_pair.hpp 2009-10-21 20:44:49.000000000 +100078490+++ mysql-5.0.86/sql/oqgraph/boost/asio/local/connect_pair.hpp 2009-10-23 10:28:05.000000000 -0700
78514@@ -0,0 +1,102 @@78491@@ -0,0 +1,102 @@
78515+//78492+//
78516+// connect_pair.hpp78493+// connect_pair.hpp
@@ -78617,7 +78594,7 @@
78617Index: mysql-5.0.86/sql/oqgraph/boost/asio/local/datagram_protocol.hpp78594Index: mysql-5.0.86/sql/oqgraph/boost/asio/local/datagram_protocol.hpp
78618===================================================================78595===================================================================
78619--- /dev/null 1970-01-01 00:00:00.000000000 +000078596--- /dev/null 1970-01-01 00:00:00.000000000 +0000
78620+++ mysql-5.0.86/sql/oqgraph/boost/asio/local/datagram_protocol.hpp 2009-10-21 20:44:49.000000000 +100078597+++ mysql-5.0.86/sql/oqgraph/boost/asio/local/datagram_protocol.hpp 2009-10-23 10:28:05.000000000 -0700
78621@@ -0,0 +1,80 @@78598@@ -0,0 +1,80 @@
78622+//78599+//
78623+// datagram_protocol.hpp78600+// datagram_protocol.hpp
@@ -78702,7 +78679,7 @@
78702Index: mysql-5.0.86/sql/oqgraph/boost/asio/local/stream_protocol.hpp78679Index: mysql-5.0.86/sql/oqgraph/boost/asio/local/stream_protocol.hpp
78703===================================================================78680===================================================================
78704--- /dev/null 1970-01-01 00:00:00.000000000 +000078681--- /dev/null 1970-01-01 00:00:00.000000000 +0000
78705+++ mysql-5.0.86/sql/oqgraph/boost/asio/local/stream_protocol.hpp 2009-10-21 20:44:49.000000000 +100078682+++ mysql-5.0.86/sql/oqgraph/boost/asio/local/stream_protocol.hpp 2009-10-23 10:28:05.000000000 -0700
78706@@ -0,0 +1,88 @@78683@@ -0,0 +1,88 @@
78707+//78684+//
78708+// stream_protocol.hpp78685+// stream_protocol.hpp
@@ -78795,7 +78772,7 @@
78795Index: mysql-5.0.86/sql/oqgraph/boost/asio/placeholders.hpp78772Index: mysql-5.0.86/sql/oqgraph/boost/asio/placeholders.hpp
78796===================================================================78773===================================================================
78797--- /dev/null 1970-01-01 00:00:00.000000000 +000078774--- /dev/null 1970-01-01 00:00:00.000000000 +0000
78798+++ mysql-5.0.86/sql/oqgraph/boost/asio/placeholders.hpp 2009-10-21 20:44:49.000000000 +100078775+++ mysql-5.0.86/sql/oqgraph/boost/asio/placeholders.hpp 2009-10-23 10:28:05.000000000 -0700
78799@@ -0,0 +1,109 @@78776@@ -0,0 +1,109 @@
78800+//78777+//
78801+// placeholders.hpp78778+// placeholders.hpp
@@ -78909,7 +78886,7 @@
78909Index: mysql-5.0.86/sql/oqgraph/boost/asio/posix/basic_descriptor.hpp78886Index: mysql-5.0.86/sql/oqgraph/boost/asio/posix/basic_descriptor.hpp
78910===================================================================78887===================================================================
78911--- /dev/null 1970-01-01 00:00:00.000000000 +000078888--- /dev/null 1970-01-01 00:00:00.000000000 +0000
78912+++ mysql-5.0.86/sql/oqgraph/boost/asio/posix/basic_descriptor.hpp 2009-10-21 20:44:49.000000000 +100078889+++ mysql-5.0.86/sql/oqgraph/boost/asio/posix/basic_descriptor.hpp 2009-10-23 10:28:05.000000000 -0700
78913@@ -0,0 +1,296 @@78890@@ -0,0 +1,296 @@
78914+//78891+//
78915+// basic_descriptor.hpp78892+// basic_descriptor.hpp
@@ -79210,7 +79187,7 @@
79210Index: mysql-5.0.86/sql/oqgraph/boost/asio/posix/basic_stream_descriptor.hpp79187Index: mysql-5.0.86/sql/oqgraph/boost/asio/posix/basic_stream_descriptor.hpp
79211===================================================================79188===================================================================
79212--- /dev/null 1970-01-01 00:00:00.000000000 +000079189--- /dev/null 1970-01-01 00:00:00.000000000 +0000
79213+++ mysql-5.0.86/sql/oqgraph/boost/asio/posix/basic_stream_descriptor.hpp 2009-10-21 20:44:49.000000000 +100079190+++ mysql-5.0.86/sql/oqgraph/boost/asio/posix/basic_stream_descriptor.hpp 2009-10-23 10:28:05.000000000 -0700
79214@@ -0,0 +1,306 @@79191@@ -0,0 +1,306 @@
79215+//79192+//
79216+// basic_stream_descriptor.hpp79193+// basic_stream_descriptor.hpp
@@ -79521,7 +79498,7 @@
79521Index: mysql-5.0.86/sql/oqgraph/boost/asio/posix/descriptor_base.hpp79498Index: mysql-5.0.86/sql/oqgraph/boost/asio/posix/descriptor_base.hpp
79522===================================================================79499===================================================================
79523--- /dev/null 1970-01-01 00:00:00.000000000 +000079500--- /dev/null 1970-01-01 00:00:00.000000000 +0000
79524+++ mysql-5.0.86/sql/oqgraph/boost/asio/posix/descriptor_base.hpp 2009-10-21 20:44:49.000000000 +100079501+++ mysql-5.0.86/sql/oqgraph/boost/asio/posix/descriptor_base.hpp 2009-10-23 10:28:05.000000000 -0700
79525@@ -0,0 +1,95 @@79502@@ -0,0 +1,95 @@
79526+//79503+//
79527+// descriptor_base.hpp79504+// descriptor_base.hpp
@@ -79621,7 +79598,7 @@
79621Index: mysql-5.0.86/sql/oqgraph/boost/asio/posix/stream_descriptor.hpp79598Index: mysql-5.0.86/sql/oqgraph/boost/asio/posix/stream_descriptor.hpp
79622===================================================================79599===================================================================
79623--- /dev/null 1970-01-01 00:00:00.000000000 +000079600--- /dev/null 1970-01-01 00:00:00.000000000 +0000
79624+++ mysql-5.0.86/sql/oqgraph/boost/asio/posix/stream_descriptor.hpp 2009-10-21 20:44:49.000000000 +100079601+++ mysql-5.0.86/sql/oqgraph/boost/asio/posix/stream_descriptor.hpp 2009-10-23 10:28:05.000000000 -0700
79625@@ -0,0 +1,41 @@79602@@ -0,0 +1,41 @@
79626+//79603+//
79627+// stream_descriptor.hpp79604+// stream_descriptor.hpp
@@ -79667,7 +79644,7 @@
79667Index: mysql-5.0.86/sql/oqgraph/boost/asio/posix/stream_descriptor_service.hpp79644Index: mysql-5.0.86/sql/oqgraph/boost/asio/posix/stream_descriptor_service.hpp
79668===================================================================79645===================================================================
79669--- /dev/null 1970-01-01 00:00:00.000000000 +000079646--- /dev/null 1970-01-01 00:00:00.000000000 +0000
79670+++ mysql-5.0.86/sql/oqgraph/boost/asio/posix/stream_descriptor_service.hpp 2009-10-21 20:44:49.000000000 +100079647+++ mysql-5.0.86/sql/oqgraph/boost/asio/posix/stream_descriptor_service.hpp 2009-10-23 10:28:05.000000000 -0700
79671@@ -0,0 +1,202 @@79648@@ -0,0 +1,202 @@
79672+//79649+//
79673+// stream_descriptor_service.hpp79650+// stream_descriptor_service.hpp
@@ -79874,7 +79851,7 @@
79874Index: mysql-5.0.86/sql/oqgraph/boost/asio/raw_socket_service.hpp79851Index: mysql-5.0.86/sql/oqgraph/boost/asio/raw_socket_service.hpp
79875===================================================================79852===================================================================
79876--- /dev/null 1970-01-01 00:00:00.000000000 +000079853--- /dev/null 1970-01-01 00:00:00.000000000 +0000
79877+++ mysql-5.0.86/sql/oqgraph/boost/asio/raw_socket_service.hpp 2009-10-21 20:44:49.000000000 +100079854+++ mysql-5.0.86/sql/oqgraph/boost/asio/raw_socket_service.hpp 2009-10-23 10:28:05.000000000 -0700
79878@@ -0,0 +1,325 @@79855@@ -0,0 +1,325 @@
79879+//79856+//
79880+// raw_socket_service.hpp79857+// raw_socket_service.hpp
@@ -80204,7 +80181,7 @@
80204Index: mysql-5.0.86/sql/oqgraph/boost/asio/read.hpp80181Index: mysql-5.0.86/sql/oqgraph/boost/asio/read.hpp
80205===================================================================80182===================================================================
80206--- /dev/null 1970-01-01 00:00:00.000000000 +000080183--- /dev/null 1970-01-01 00:00:00.000000000 +0000
80207+++ mysql-5.0.86/sql/oqgraph/boost/asio/read.hpp 2009-10-21 20:44:49.000000000 +100080184+++ mysql-5.0.86/sql/oqgraph/boost/asio/read.hpp 2009-10-23 10:28:05.000000000 -0700
80208@@ -0,0 +1,528 @@80185@@ -0,0 +1,528 @@
80209+//80186+//
80210+// read.hpp80187+// read.hpp
@@ -80737,7 +80714,7 @@
80737Index: mysql-5.0.86/sql/oqgraph/boost/asio/read_at.hpp80714Index: mysql-5.0.86/sql/oqgraph/boost/asio/read_at.hpp
80738===================================================================80715===================================================================
80739--- /dev/null 1970-01-01 00:00:00.000000000 +000080716--- /dev/null 1970-01-01 00:00:00.000000000 +0000
80740+++ mysql-5.0.86/sql/oqgraph/boost/asio/read_at.hpp 2009-10-21 20:44:49.000000000 +100080717+++ mysql-5.0.86/sql/oqgraph/boost/asio/read_at.hpp 2009-10-23 10:28:05.000000000 -0700
80741@@ -0,0 +1,570 @@80718@@ -0,0 +1,570 @@
80742+//80719+//
80743+// read_at.hpp80720+// read_at.hpp
@@ -81312,7 +81289,7 @@
81312Index: mysql-5.0.86/sql/oqgraph/boost/asio/read_until.hpp81289Index: mysql-5.0.86/sql/oqgraph/boost/asio/read_until.hpp
81313===================================================================81290===================================================================
81314--- /dev/null 1970-01-01 00:00:00.000000000 +000081291--- /dev/null 1970-01-01 00:00:00.000000000 +0000
81315+++ mysql-5.0.86/sql/oqgraph/boost/asio/read_until.hpp 2009-10-21 20:44:49.000000000 +100081292+++ mysql-5.0.86/sql/oqgraph/boost/asio/read_until.hpp 2009-10-23 10:28:05.000000000 -0700
81316@@ -0,0 +1,841 @@81293@@ -0,0 +1,841 @@
81317+//81294+//
81318+// read_until.hpp81295+// read_until.hpp
@@ -82158,7 +82135,7 @@
82158Index: mysql-5.0.86/sql/oqgraph/boost/asio/serial_port.hpp82135Index: mysql-5.0.86/sql/oqgraph/boost/asio/serial_port.hpp
82159===================================================================82136===================================================================
82160--- /dev/null 1970-01-01 00:00:00.000000000 +000082137--- /dev/null 1970-01-01 00:00:00.000000000 +0000
82161+++ mysql-5.0.86/sql/oqgraph/boost/asio/serial_port.hpp 2009-10-21 20:44:49.000000000 +100082138+++ mysql-5.0.86/sql/oqgraph/boost/asio/serial_port.hpp 2009-10-23 10:28:05.000000000 -0700
82162@@ -0,0 +1,40 @@82139@@ -0,0 +1,40 @@
82163+//82140+//
82164+// serial_port.hpp82141+// serial_port.hpp
@@ -82203,7 +82180,7 @@
82203Index: mysql-5.0.86/sql/oqgraph/boost/asio/serial_port_base.hpp82180Index: mysql-5.0.86/sql/oqgraph/boost/asio/serial_port_base.hpp
82204===================================================================82181===================================================================
82205--- /dev/null 1970-01-01 00:00:00.000000000 +000082182--- /dev/null 1970-01-01 00:00:00.000000000 +0000
82206+++ mysql-5.0.86/sql/oqgraph/boost/asio/serial_port_base.hpp 2009-10-21 20:44:49.000000000 +100082183+++ mysql-5.0.86/sql/oqgraph/boost/asio/serial_port_base.hpp 2009-10-23 10:28:05.000000000 -0700
82207@@ -0,0 +1,175 @@82184@@ -0,0 +1,175 @@
82208+//82185+//
82209+// serial_port_base.hpp82186+// serial_port_base.hpp
@@ -82383,7 +82360,7 @@
82383Index: mysql-5.0.86/sql/oqgraph/boost/asio/serial_port_service.hpp82360Index: mysql-5.0.86/sql/oqgraph/boost/asio/serial_port_service.hpp
82384===================================================================82361===================================================================
82385--- /dev/null 1970-01-01 00:00:00.000000000 +000082362--- /dev/null 1970-01-01 00:00:00.000000000 +0000
82386+++ mysql-5.0.86/sql/oqgraph/boost/asio/serial_port_service.hpp 2009-10-21 20:44:49.000000000 +100082363+++ mysql-5.0.86/sql/oqgraph/boost/asio/serial_port_service.hpp 2009-10-23 10:28:05.000000000 -0700
82387@@ -0,0 +1,218 @@82364@@ -0,0 +1,218 @@
82388+//82365+//
82389+// serial_port_service.hpp82366+// serial_port_service.hpp
@@ -82606,7 +82583,7 @@
82606Index: mysql-5.0.86/sql/oqgraph/boost/asio/socket_acceptor_service.hpp82583Index: mysql-5.0.86/sql/oqgraph/boost/asio/socket_acceptor_service.hpp
82607===================================================================82584===================================================================
82608--- /dev/null 1970-01-01 00:00:00.000000000 +000082585--- /dev/null 1970-01-01 00:00:00.000000000 +0000
82609+++ mysql-5.0.86/sql/oqgraph/boost/asio/socket_acceptor_service.hpp 2009-10-21 20:44:49.000000000 +100082586+++ mysql-5.0.86/sql/oqgraph/boost/asio/socket_acceptor_service.hpp 2009-10-23 10:28:05.000000000 -0700
82610@@ -0,0 +1,227 @@82587@@ -0,0 +1,227 @@
82611+//82588+//
82612+// socket_acceptor_service.hpp82589+// socket_acceptor_service.hpp
@@ -82838,7 +82815,7 @@
82838Index: mysql-5.0.86/sql/oqgraph/boost/asio/socket_base.hpp82815Index: mysql-5.0.86/sql/oqgraph/boost/asio/socket_base.hpp
82839===================================================================82816===================================================================
82840--- /dev/null 1970-01-01 00:00:00.000000000 +000082817--- /dev/null 1970-01-01 00:00:00.000000000 +0000
82841+++ mysql-5.0.86/sql/oqgraph/boost/asio/socket_base.hpp 2009-10-21 20:44:49.000000000 +100082818+++ mysql-5.0.86/sql/oqgraph/boost/asio/socket_base.hpp 2009-10-23 10:28:05.000000000 -0700
82842@@ -0,0 +1,517 @@82819@@ -0,0 +1,517 @@
82843+//82820+//
82844+// socket_base.hpp82821+// socket_base.hpp
@@ -83360,7 +83337,7 @@
83360Index: mysql-5.0.86/sql/oqgraph/boost/asio/ssl.hpp83337Index: mysql-5.0.86/sql/oqgraph/boost/asio/ssl.hpp
83361===================================================================83338===================================================================
83362--- /dev/null 1970-01-01 00:00:00.000000000 +000083339--- /dev/null 1970-01-01 00:00:00.000000000 +0000
83363+++ mysql-5.0.86/sql/oqgraph/boost/asio/ssl.hpp 2009-10-21 20:44:49.000000000 +100083340+++ mysql-5.0.86/sql/oqgraph/boost/asio/ssl.hpp 2009-10-23 10:28:05.000000000 -0700
83364@@ -0,0 +1,26 @@83341@@ -0,0 +1,26 @@
83365+//83342+//
83366+// ssl.hpp83343+// ssl.hpp
@@ -83391,7 +83368,7 @@
83391Index: mysql-5.0.86/sql/oqgraph/boost/asio/ssl/basic_context.hpp83368Index: mysql-5.0.86/sql/oqgraph/boost/asio/ssl/basic_context.hpp
83392===================================================================83369===================================================================
83393--- /dev/null 1970-01-01 00:00:00.000000000 +000083370--- /dev/null 1970-01-01 00:00:00.000000000 +0000
83394+++ mysql-5.0.86/sql/oqgraph/boost/asio/ssl/basic_context.hpp 2009-10-21 20:44:49.000000000 +100083371+++ mysql-5.0.86/sql/oqgraph/boost/asio/ssl/basic_context.hpp 2009-10-23 10:28:05.000000000 -0700
83395@@ -0,0 +1,436 @@83372@@ -0,0 +1,436 @@
83396+//83373+//
83397+// basic_context.hpp83374+// basic_context.hpp
@@ -83832,7 +83809,7 @@
83832Index: mysql-5.0.86/sql/oqgraph/boost/asio/ssl/context.hpp83809Index: mysql-5.0.86/sql/oqgraph/boost/asio/ssl/context.hpp
83833===================================================================83810===================================================================
83834--- /dev/null 1970-01-01 00:00:00.000000000 +000083811--- /dev/null 1970-01-01 00:00:00.000000000 +0000
83835+++ mysql-5.0.86/sql/oqgraph/boost/asio/ssl/context.hpp 2009-10-21 20:44:49.000000000 +100083812+++ mysql-5.0.86/sql/oqgraph/boost/asio/ssl/context.hpp 2009-10-23 10:28:05.000000000 -0700
83836@@ -0,0 +1,37 @@83813@@ -0,0 +1,37 @@
83837+//83814+//
83838+// context.hpp83815+// context.hpp
@@ -83874,7 +83851,7 @@
83874Index: mysql-5.0.86/sql/oqgraph/boost/asio/ssl/context_base.hpp83851Index: mysql-5.0.86/sql/oqgraph/boost/asio/ssl/context_base.hpp
83875===================================================================83852===================================================================
83876--- /dev/null 1970-01-01 00:00:00.000000000 +000083853--- /dev/null 1970-01-01 00:00:00.000000000 +0000
83877+++ mysql-5.0.86/sql/oqgraph/boost/asio/ssl/context_base.hpp 2009-10-21 20:44:49.000000000 +100083854+++ mysql-5.0.86/sql/oqgraph/boost/asio/ssl/context_base.hpp 2009-10-23 10:28:05.000000000 -0700
83878@@ -0,0 +1,166 @@83855@@ -0,0 +1,166 @@
83879+//83856+//
83880+// context_base.hpp83857+// context_base.hpp
@@ -84045,7 +84022,7 @@
84045Index: mysql-5.0.86/sql/oqgraph/boost/asio/ssl/context_service.hpp84022Index: mysql-5.0.86/sql/oqgraph/boost/asio/ssl/context_service.hpp
84046===================================================================84023===================================================================
84047--- /dev/null 1970-01-01 00:00:00.000000000 +000084024--- /dev/null 1970-01-01 00:00:00.000000000 +0000
84048+++ mysql-5.0.86/sql/oqgraph/boost/asio/ssl/context_service.hpp 2009-10-21 20:44:49.000000000 +100084025+++ mysql-5.0.86/sql/oqgraph/boost/asio/ssl/context_service.hpp 2009-10-23 10:28:05.000000000 -0700
84049@@ -0,0 +1,177 @@84026@@ -0,0 +1,177 @@
84050+//84027+//
84051+// context_service.hpp84028+// context_service.hpp
@@ -84227,7 +84204,7 @@
84227Index: mysql-5.0.86/sql/oqgraph/boost/asio/ssl/detail/openssl_context_service.hpp84204Index: mysql-5.0.86/sql/oqgraph/boost/asio/ssl/detail/openssl_context_service.hpp
84228===================================================================84205===================================================================
84229--- /dev/null 1970-01-01 00:00:00.000000000 +000084206--- /dev/null 1970-01-01 00:00:00.000000000 +0000
84230+++ mysql-5.0.86/sql/oqgraph/boost/asio/ssl/detail/openssl_context_service.hpp 2009-10-21 20:44:49.000000000 +100084207+++ mysql-5.0.86/sql/oqgraph/boost/asio/ssl/detail/openssl_context_service.hpp 2009-10-23 10:28:05.000000000 -0700
84231@@ -0,0 +1,381 @@84208@@ -0,0 +1,381 @@
84232+//84209+//
84233+// openssl_context_service.hpp84210+// openssl_context_service.hpp
@@ -84613,7 +84590,7 @@
84613Index: mysql-5.0.86/sql/oqgraph/boost/asio/ssl/detail/openssl_init.hpp84590Index: mysql-5.0.86/sql/oqgraph/boost/asio/ssl/detail/openssl_init.hpp
84614===================================================================84591===================================================================
84615--- /dev/null 1970-01-01 00:00:00.000000000 +000084592--- /dev/null 1970-01-01 00:00:00.000000000 +0000
84616+++ mysql-5.0.86/sql/oqgraph/boost/asio/ssl/detail/openssl_init.hpp 2009-10-21 20:44:49.000000000 +100084593+++ mysql-5.0.86/sql/oqgraph/boost/asio/ssl/detail/openssl_init.hpp 2009-10-23 10:28:05.000000000 -0700
84617@@ -0,0 +1,152 @@84594@@ -0,0 +1,152 @@
84618+//84595+//
84619+// openssl_init.hpp84596+// openssl_init.hpp
@@ -84770,7 +84747,7 @@
84770Index: mysql-5.0.86/sql/oqgraph/boost/asio/ssl/detail/openssl_operation.hpp84747Index: mysql-5.0.86/sql/oqgraph/boost/asio/ssl/detail/openssl_operation.hpp
84771===================================================================84748===================================================================
84772--- /dev/null 1970-01-01 00:00:00.000000000 +000084749--- /dev/null 1970-01-01 00:00:00.000000000 +0000
84773+++ mysql-5.0.86/sql/oqgraph/boost/asio/ssl/detail/openssl_operation.hpp 2009-10-21 20:44:49.000000000 +100084750+++ mysql-5.0.86/sql/oqgraph/boost/asio/ssl/detail/openssl_operation.hpp 2009-10-23 10:28:05.000000000 -0700
84774@@ -0,0 +1,522 @@84751@@ -0,0 +1,522 @@
84775+//84752+//
84776+// openssl_operation.hpp84753+// openssl_operation.hpp
@@ -85297,7 +85274,7 @@
85297Index: mysql-5.0.86/sql/oqgraph/boost/asio/ssl/detail/openssl_stream_service.hpp85274Index: mysql-5.0.86/sql/oqgraph/boost/asio/ssl/detail/openssl_stream_service.hpp
85298===================================================================85275===================================================================
85299--- /dev/null 1970-01-01 00:00:00.000000000 +000085276--- /dev/null 1970-01-01 00:00:00.000000000 +0000
85300+++ mysql-5.0.86/sql/oqgraph/boost/asio/ssl/detail/openssl_stream_service.hpp 2009-10-21 20:44:49.000000000 +100085277+++ mysql-5.0.86/sql/oqgraph/boost/asio/ssl/detail/openssl_stream_service.hpp 2009-10-23 10:28:05.000000000 -0700
85301@@ -0,0 +1,534 @@85278@@ -0,0 +1,534 @@
85302+//85279+//
85303+// stream_service.hpp85280+// stream_service.hpp
@@ -85836,7 +85813,7 @@
85836Index: mysql-5.0.86/sql/oqgraph/boost/asio/ssl/detail/openssl_types.hpp85813Index: mysql-5.0.86/sql/oqgraph/boost/asio/ssl/detail/openssl_types.hpp
85837===================================================================85814===================================================================
85838--- /dev/null 1970-01-01 00:00:00.000000000 +000085815--- /dev/null 1970-01-01 00:00:00.000000000 +0000
85839+++ mysql-5.0.86/sql/oqgraph/boost/asio/ssl/detail/openssl_types.hpp 2009-10-21 20:44:49.000000000 +100085816+++ mysql-5.0.86/sql/oqgraph/boost/asio/ssl/detail/openssl_types.hpp 2009-10-23 10:28:05.000000000 -0700
85840@@ -0,0 +1,31 @@85817@@ -0,0 +1,31 @@
85841+//85818+//
85842+// openssl_types.hpp85819+// openssl_types.hpp
@@ -85872,7 +85849,7 @@
85872Index: mysql-5.0.86/sql/oqgraph/boost/asio/ssl/stream.hpp85849Index: mysql-5.0.86/sql/oqgraph/boost/asio/ssl/stream.hpp
85873===================================================================85850===================================================================
85874--- /dev/null 1970-01-01 00:00:00.000000000 +000085851--- /dev/null 1970-01-01 00:00:00.000000000 +0000
85875+++ mysql-5.0.86/sql/oqgraph/boost/asio/ssl/stream.hpp 2009-10-21 20:44:49.000000000 +100085852+++ mysql-5.0.86/sql/oqgraph/boost/asio/ssl/stream.hpp 2009-10-23 10:28:05.000000000 -0700
85876@@ -0,0 +1,518 @@85853@@ -0,0 +1,518 @@
85877+//85854+//
85878+// stream.hpp85855+// stream.hpp
@@ -86395,7 +86372,7 @@
86395Index: mysql-5.0.86/sql/oqgraph/boost/asio/ssl/stream_base.hpp86372Index: mysql-5.0.86/sql/oqgraph/boost/asio/ssl/stream_base.hpp
86396===================================================================86373===================================================================
86397--- /dev/null 1970-01-01 00:00:00.000000000 +000086374--- /dev/null 1970-01-01 00:00:00.000000000 +0000
86398+++ mysql-5.0.86/sql/oqgraph/boost/asio/ssl/stream_base.hpp 2009-10-21 20:44:49.000000000 +100086375+++ mysql-5.0.86/sql/oqgraph/boost/asio/ssl/stream_base.hpp 2009-10-23 10:28:05.000000000 -0700
86399@@ -0,0 +1,62 @@86376@@ -0,0 +1,62 @@
86400+//86377+//
86401+// stream_base.hpp86378+// stream_base.hpp
@@ -86462,7 +86439,7 @@
86462Index: mysql-5.0.86/sql/oqgraph/boost/asio/ssl/stream_service.hpp86439Index: mysql-5.0.86/sql/oqgraph/boost/asio/ssl/stream_service.hpp
86463===================================================================86440===================================================================
86464--- /dev/null 1970-01-01 00:00:00.000000000 +000086441--- /dev/null 1970-01-01 00:00:00.000000000 +0000
86465+++ mysql-5.0.86/sql/oqgraph/boost/asio/ssl/stream_service.hpp 2009-10-21 20:44:49.000000000 +100086442+++ mysql-5.0.86/sql/oqgraph/boost/asio/ssl/stream_service.hpp 2009-10-23 10:28:05.000000000 -0700
86466@@ -0,0 +1,188 @@86443@@ -0,0 +1,188 @@
86467+//86444+//
86468+// stream_service.hpp86445+// stream_service.hpp
@@ -86655,7 +86632,7 @@
86655Index: mysql-5.0.86/sql/oqgraph/boost/asio/strand.hpp86632Index: mysql-5.0.86/sql/oqgraph/boost/asio/strand.hpp
86656===================================================================86633===================================================================
86657--- /dev/null 1970-01-01 00:00:00.000000000 +000086634--- /dev/null 1970-01-01 00:00:00.000000000 +0000
86658+++ mysql-5.0.86/sql/oqgraph/boost/asio/strand.hpp 2009-10-21 20:44:49.000000000 +100086635+++ mysql-5.0.86/sql/oqgraph/boost/asio/strand.hpp 2009-10-23 10:28:05.000000000 -0700
86659@@ -0,0 +1,188 @@86636@@ -0,0 +1,188 @@
86660+//86637+//
86661+// strand.hpp86638+// strand.hpp
@@ -86848,7 +86825,7 @@
86848Index: mysql-5.0.86/sql/oqgraph/boost/asio/stream_socket_service.hpp86825Index: mysql-5.0.86/sql/oqgraph/boost/asio/stream_socket_service.hpp
86849===================================================================86826===================================================================
86850--- /dev/null 1970-01-01 00:00:00.000000000 +000086827--- /dev/null 1970-01-01 00:00:00.000000000 +0000
86851+++ mysql-5.0.86/sql/oqgraph/boost/asio/stream_socket_service.hpp 2009-10-21 20:44:49.000000000 +100086828+++ mysql-5.0.86/sql/oqgraph/boost/asio/stream_socket_service.hpp 2009-10-23 10:28:05.000000000 -0700
86852@@ -0,0 +1,288 @@86829@@ -0,0 +1,288 @@
86853+//86830+//
86854+// stream_socket_service.hpp86831+// stream_socket_service.hpp
@@ -87141,7 +87118,7 @@
87141Index: mysql-5.0.86/sql/oqgraph/boost/asio/streambuf.hpp87118Index: mysql-5.0.86/sql/oqgraph/boost/asio/streambuf.hpp
87142===================================================================87119===================================================================
87143--- /dev/null 1970-01-01 00:00:00.000000000 +000087120--- /dev/null 1970-01-01 00:00:00.000000000 +0000
87144+++ mysql-5.0.86/sql/oqgraph/boost/asio/streambuf.hpp 2009-10-21 20:44:49.000000000 +100087121+++ mysql-5.0.86/sql/oqgraph/boost/asio/streambuf.hpp 2009-10-23 10:28:05.000000000 -0700
87145@@ -0,0 +1,33 @@87122@@ -0,0 +1,33 @@
87146+//87123+//
87147+// streambuf.hpp87124+// streambuf.hpp
@@ -87179,7 +87156,7 @@
87179Index: mysql-5.0.86/sql/oqgraph/boost/asio/time_traits.hpp87156Index: mysql-5.0.86/sql/oqgraph/boost/asio/time_traits.hpp
87180===================================================================87157===================================================================
87181--- /dev/null 1970-01-01 00:00:00.000000000 +000087158--- /dev/null 1970-01-01 00:00:00.000000000 +0000
87182+++ mysql-5.0.86/sql/oqgraph/boost/asio/time_traits.hpp 2009-10-21 20:44:49.000000000 +100087159+++ mysql-5.0.86/sql/oqgraph/boost/asio/time_traits.hpp 2009-10-23 10:28:05.000000000 -0700
87183@@ -0,0 +1,80 @@87160@@ -0,0 +1,80 @@
87184+//87161+//
87185+// time_traits.hpp87162+// time_traits.hpp
@@ -87264,7 +87241,7 @@
87264Index: mysql-5.0.86/sql/oqgraph/boost/asio/version.hpp87241Index: mysql-5.0.86/sql/oqgraph/boost/asio/version.hpp
87265===================================================================87242===================================================================
87266--- /dev/null 1970-01-01 00:00:00.000000000 +000087243--- /dev/null 1970-01-01 00:00:00.000000000 +0000
87267+++ mysql-5.0.86/sql/oqgraph/boost/asio/version.hpp 2009-10-21 20:44:49.000000000 +100087244+++ mysql-5.0.86/sql/oqgraph/boost/asio/version.hpp 2009-10-23 10:28:05.000000000 -0700
87268@@ -0,0 +1,23 @@87245@@ -0,0 +1,23 @@
87269+//87246+//
87270+// version.hpp87247+// version.hpp
@@ -87292,7 +87269,7 @@
87292Index: mysql-5.0.86/sql/oqgraph/boost/asio/windows/basic_handle.hpp87269Index: mysql-5.0.86/sql/oqgraph/boost/asio/windows/basic_handle.hpp
87293===================================================================87270===================================================================
87294--- /dev/null 1970-01-01 00:00:00.000000000 +000087271--- /dev/null 1970-01-01 00:00:00.000000000 +0000
87295+++ mysql-5.0.86/sql/oqgraph/boost/asio/windows/basic_handle.hpp 2009-10-21 20:44:49.000000000 +100087272+++ mysql-5.0.86/sql/oqgraph/boost/asio/windows/basic_handle.hpp 2009-10-23 10:28:05.000000000 -0700
87296@@ -0,0 +1,227 @@87273@@ -0,0 +1,227 @@
87297+//87274+//
87298+// basic_handle.hpp87275+// basic_handle.hpp
@@ -87524,7 +87501,7 @@
87524Index: mysql-5.0.86/sql/oqgraph/boost/asio/windows/basic_random_access_handle.hpp87501Index: mysql-5.0.86/sql/oqgraph/boost/asio/windows/basic_random_access_handle.hpp
87525===================================================================87502===================================================================
87526--- /dev/null 1970-01-01 00:00:00.000000000 +000087503--- /dev/null 1970-01-01 00:00:00.000000000 +0000
87527+++ mysql-5.0.86/sql/oqgraph/boost/asio/windows/basic_random_access_handle.hpp 2009-10-21 20:44:49.000000000 +100087504+++ mysql-5.0.86/sql/oqgraph/boost/asio/windows/basic_random_access_handle.hpp 2009-10-23 10:28:05.000000000 -0700
87528@@ -0,0 +1,322 @@87505@@ -0,0 +1,322 @@
87529+//87506+//
87530+// basic_random_access_handle.hpp87507+// basic_random_access_handle.hpp
@@ -87851,7 +87828,7 @@
87851Index: mysql-5.0.86/sql/oqgraph/boost/asio/windows/basic_stream_handle.hpp87828Index: mysql-5.0.86/sql/oqgraph/boost/asio/windows/basic_stream_handle.hpp
87852===================================================================87829===================================================================
87853--- /dev/null 1970-01-01 00:00:00.000000000 +000087830--- /dev/null 1970-01-01 00:00:00.000000000 +0000
87854+++ mysql-5.0.86/sql/oqgraph/boost/asio/windows/basic_stream_handle.hpp 2009-10-21 20:44:49.000000000 +100087831+++ mysql-5.0.86/sql/oqgraph/boost/asio/windows/basic_stream_handle.hpp 2009-10-23 10:28:05.000000000 -0700
87855@@ -0,0 +1,304 @@87832@@ -0,0 +1,304 @@
87856+//87833+//
87857+// basic_stream_handle.hpp87834+// basic_stream_handle.hpp
@@ -88160,7 +88137,7 @@
88160Index: mysql-5.0.86/sql/oqgraph/boost/asio/windows/overlapped_ptr.hpp88137Index: mysql-5.0.86/sql/oqgraph/boost/asio/windows/overlapped_ptr.hpp
88161===================================================================88138===================================================================
88162--- /dev/null 1970-01-01 00:00:00.000000000 +000088139--- /dev/null 1970-01-01 00:00:00.000000000 +0000
88163+++ mysql-5.0.86/sql/oqgraph/boost/asio/windows/overlapped_ptr.hpp 2009-10-21 20:44:49.000000000 +100088140+++ mysql-5.0.86/sql/oqgraph/boost/asio/windows/overlapped_ptr.hpp 2009-10-23 10:28:05.000000000 -0700
88164@@ -0,0 +1,120 @@88141@@ -0,0 +1,120 @@
88165+//88142+//
88166+// overlapped_ptr.hpp88143+// overlapped_ptr.hpp
@@ -88285,7 +88262,7 @@
88285Index: mysql-5.0.86/sql/oqgraph/boost/asio/windows/random_access_handle.hpp88262Index: mysql-5.0.86/sql/oqgraph/boost/asio/windows/random_access_handle.hpp
88286===================================================================88263===================================================================
88287--- /dev/null 1970-01-01 00:00:00.000000000 +000088264--- /dev/null 1970-01-01 00:00:00.000000000 +0000
88288+++ mysql-5.0.86/sql/oqgraph/boost/asio/windows/random_access_handle.hpp 2009-10-21 20:44:49.000000000 +100088265+++ mysql-5.0.86/sql/oqgraph/boost/asio/windows/random_access_handle.hpp 2009-10-23 10:28:05.000000000 -0700
88289@@ -0,0 +1,41 @@88266@@ -0,0 +1,41 @@
88290+//88267+//
88291+// random_access_handle.hpp88268+// random_access_handle.hpp
@@ -88331,7 +88308,7 @@
88331Index: mysql-5.0.86/sql/oqgraph/boost/asio/windows/random_access_handle_service.hpp88308Index: mysql-5.0.86/sql/oqgraph/boost/asio/windows/random_access_handle_service.hpp
88332===================================================================88309===================================================================
88333--- /dev/null 1970-01-01 00:00:00.000000000 +000088310--- /dev/null 1970-01-01 00:00:00.000000000 +0000
88334+++ mysql-5.0.86/sql/oqgraph/boost/asio/windows/random_access_handle_service.hpp 2009-10-21 20:44:49.000000000 +100088311+++ mysql-5.0.86/sql/oqgraph/boost/asio/windows/random_access_handle_service.hpp 2009-10-23 10:28:05.000000000 -0700
88335@@ -0,0 +1,181 @@88312@@ -0,0 +1,181 @@
88336+//88313+//
88337+// random_access_handle_service.hpp88314+// random_access_handle_service.hpp
@@ -88517,7 +88494,7 @@
88517Index: mysql-5.0.86/sql/oqgraph/boost/asio/windows/stream_handle.hpp88494Index: mysql-5.0.86/sql/oqgraph/boost/asio/windows/stream_handle.hpp
88518===================================================================88495===================================================================
88519--- /dev/null 1970-01-01 00:00:00.000000000 +000088496--- /dev/null 1970-01-01 00:00:00.000000000 +0000
88520+++ mysql-5.0.86/sql/oqgraph/boost/asio/windows/stream_handle.hpp 2009-10-21 20:44:49.000000000 +100088497+++ mysql-5.0.86/sql/oqgraph/boost/asio/windows/stream_handle.hpp 2009-10-23 10:28:05.000000000 -0700
88521@@ -0,0 +1,41 @@88498@@ -0,0 +1,41 @@
88522+//88499+//
88523+// stream_handle.hpp88500+// stream_handle.hpp
@@ -88563,7 +88540,7 @@
88563Index: mysql-5.0.86/sql/oqgraph/boost/asio/windows/stream_handle_service.hpp88540Index: mysql-5.0.86/sql/oqgraph/boost/asio/windows/stream_handle_service.hpp
88564===================================================================88541===================================================================
88565--- /dev/null 1970-01-01 00:00:00.000000000 +000088542--- /dev/null 1970-01-01 00:00:00.000000000 +0000
88566+++ mysql-5.0.86/sql/oqgraph/boost/asio/windows/stream_handle_service.hpp 2009-10-21 20:44:49.000000000 +100088543+++ mysql-5.0.86/sql/oqgraph/boost/asio/windows/stream_handle_service.hpp 2009-10-23 10:28:05.000000000 -0700
88567@@ -0,0 +1,179 @@88544@@ -0,0 +1,179 @@
88568+//88545+//
88569+// stream_handle_service.hpp88546+// stream_handle_service.hpp
@@ -88747,7 +88724,7 @@
88747Index: mysql-5.0.86/sql/oqgraph/boost/asio/write.hpp88724Index: mysql-5.0.86/sql/oqgraph/boost/asio/write.hpp
88748===================================================================88725===================================================================
88749--- /dev/null 1970-01-01 00:00:00.000000000 +000088726--- /dev/null 1970-01-01 00:00:00.000000000 +0000
88750+++ mysql-5.0.86/sql/oqgraph/boost/asio/write.hpp 2009-10-21 20:44:49.000000000 +100088727+++ mysql-5.0.86/sql/oqgraph/boost/asio/write.hpp 2009-10-23 10:28:05.000000000 -0700
88751@@ -0,0 +1,522 @@88728@@ -0,0 +1,522 @@
88752+//88729+//
88753+// write.hpp88730+// write.hpp
@@ -89274,7 +89251,7 @@
89274Index: mysql-5.0.86/sql/oqgraph/boost/asio/write_at.hpp89251Index: mysql-5.0.86/sql/oqgraph/boost/asio/write_at.hpp
89275===================================================================89252===================================================================
89276--- /dev/null 1970-01-01 00:00:00.000000000 +000089253--- /dev/null 1970-01-01 00:00:00.000000000 +0000
89277+++ mysql-5.0.86/sql/oqgraph/boost/asio/write_at.hpp 2009-10-21 20:44:49.000000000 +100089254+++ mysql-5.0.86/sql/oqgraph/boost/asio/write_at.hpp 2009-10-23 10:28:05.000000000 -0700
89278@@ -0,0 +1,557 @@89255@@ -0,0 +1,557 @@
89279+//89256+//
89280+// write_at.hpp89257+// write_at.hpp
@@ -89836,7 +89813,7 @@
89836Index: mysql-5.0.86/sql/oqgraph/boost/assert.hpp89813Index: mysql-5.0.86/sql/oqgraph/boost/assert.hpp
89837===================================================================89814===================================================================
89838--- /dev/null 1970-01-01 00:00:00.000000000 +000089815--- /dev/null 1970-01-01 00:00:00.000000000 +0000
89839+++ mysql-5.0.86/sql/oqgraph/boost/assert.hpp 2009-10-21 20:44:49.000000000 +100089816+++ mysql-5.0.86/sql/oqgraph/boost/assert.hpp 2009-10-23 10:28:05.000000000 -0700
89840@@ -0,0 +1,50 @@89817@@ -0,0 +1,50 @@
89841+//89818+//
89842+// boost/assert.hpp - BOOST_ASSERT(expr)89819+// boost/assert.hpp - BOOST_ASSERT(expr)
@@ -89891,7 +89868,7 @@
89891Index: mysql-5.0.86/sql/oqgraph/boost/assign.hpp89868Index: mysql-5.0.86/sql/oqgraph/boost/assign.hpp
89892===================================================================89869===================================================================
89893--- /dev/null 1970-01-01 00:00:00.000000000 +000089870--- /dev/null 1970-01-01 00:00:00.000000000 +0000
89894+++ mysql-5.0.86/sql/oqgraph/boost/assign.hpp 2009-10-21 20:44:49.000000000 +100089871+++ mysql-5.0.86/sql/oqgraph/boost/assign.hpp 2009-10-23 10:28:05.000000000 -0700
89895@@ -0,0 +1,24 @@89872@@ -0,0 +1,24 @@
89896+// Boost.Assign library89873+// Boost.Assign library
89897+//89874+//
@@ -89920,7 +89897,7 @@
89920Index: mysql-5.0.86/sql/oqgraph/boost/assign/assignment_exception.hpp89897Index: mysql-5.0.86/sql/oqgraph/boost/assign/assignment_exception.hpp
89921===================================================================89898===================================================================
89922--- /dev/null 1970-01-01 00:00:00.000000000 +000089899--- /dev/null 1970-01-01 00:00:00.000000000 +0000
89923+++ mysql-5.0.86/sql/oqgraph/boost/assign/assignment_exception.hpp 2009-10-21 20:44:49.000000000 +100089900+++ mysql-5.0.86/sql/oqgraph/boost/assign/assignment_exception.hpp 2009-10-23 10:28:05.000000000 -0700
89924@@ -0,0 +1,43 @@89901@@ -0,0 +1,43 @@
89925+// Boost.Assign library89902+// Boost.Assign library
89926+//89903+//
@@ -89968,7 +89945,7 @@
89968Index: mysql-5.0.86/sql/oqgraph/boost/assign/list_inserter.hpp89945Index: mysql-5.0.86/sql/oqgraph/boost/assign/list_inserter.hpp
89969===================================================================89946===================================================================
89970--- /dev/null 1970-01-01 00:00:00.000000000 +000089947--- /dev/null 1970-01-01 00:00:00.000000000 +0000
89971+++ mysql-5.0.86/sql/oqgraph/boost/assign/list_inserter.hpp 2009-10-21 20:44:49.000000000 +100089948+++ mysql-5.0.86/sql/oqgraph/boost/assign/list_inserter.hpp 2009-10-23 10:28:05.000000000 -0700
89972@@ -0,0 +1,400 @@89949@@ -0,0 +1,400 @@
89973+// Boost.Assign library89950+// Boost.Assign library
89974+//89951+//
@@ -90373,7 +90350,7 @@
90373Index: mysql-5.0.86/sql/oqgraph/boost/assign/list_of.hpp90350Index: mysql-5.0.86/sql/oqgraph/boost/assign/list_of.hpp
90374===================================================================90351===================================================================
90375--- /dev/null 1970-01-01 00:00:00.000000000 +000090352--- /dev/null 1970-01-01 00:00:00.000000000 +0000
90376+++ mysql-5.0.86/sql/oqgraph/boost/assign/list_of.hpp 2009-10-21 20:44:49.000000000 +100090353+++ mysql-5.0.86/sql/oqgraph/boost/assign/list_of.hpp 2009-10-23 10:28:05.000000000 -0700
90377@@ -0,0 +1,681 @@90354@@ -0,0 +1,681 @@
90378+// Boost.Assign library90355+// Boost.Assign library
90379+//90356+//
@@ -91059,7 +91036,7 @@
91059Index: mysql-5.0.86/sql/oqgraph/boost/assign/ptr_list_inserter.hpp91036Index: mysql-5.0.86/sql/oqgraph/boost/assign/ptr_list_inserter.hpp
91060===================================================================91037===================================================================
91061--- /dev/null 1970-01-01 00:00:00.000000000 +000091038--- /dev/null 1970-01-01 00:00:00.000000000 +0000
91062+++ mysql-5.0.86/sql/oqgraph/boost/assign/ptr_list_inserter.hpp 2009-10-21 20:44:49.000000000 +100091039+++ mysql-5.0.86/sql/oqgraph/boost/assign/ptr_list_inserter.hpp 2009-10-23 10:28:05.000000000 -0700
91063@@ -0,0 +1,164 @@91040@@ -0,0 +1,164 @@
91064+// Boost.Assign library91041+// Boost.Assign library
91065+//91042+//
@@ -91228,7 +91205,7 @@
91228Index: mysql-5.0.86/sql/oqgraph/boost/assign/ptr_list_of.hpp91205Index: mysql-5.0.86/sql/oqgraph/boost/assign/ptr_list_of.hpp
91229===================================================================91206===================================================================
91230--- /dev/null 1970-01-01 00:00:00.000000000 +000091207--- /dev/null 1970-01-01 00:00:00.000000000 +0000
91231+++ mysql-5.0.86/sql/oqgraph/boost/assign/ptr_list_of.hpp 2009-10-21 20:44:49.000000000 +100091208+++ mysql-5.0.86/sql/oqgraph/boost/assign/ptr_list_of.hpp 2009-10-23 10:28:05.000000000 -0700
91232@@ -0,0 +1,191 @@91209@@ -0,0 +1,191 @@
91233+// Boost.Assign library91210+// Boost.Assign library
91234+//91211+//
@@ -91424,7 +91401,7 @@
91424Index: mysql-5.0.86/sql/oqgraph/boost/assign/ptr_map_inserter.hpp91401Index: mysql-5.0.86/sql/oqgraph/boost/assign/ptr_map_inserter.hpp
91425===================================================================91402===================================================================
91426--- /dev/null 1970-01-01 00:00:00.000000000 +000091403--- /dev/null 1970-01-01 00:00:00.000000000 +0000
91427+++ mysql-5.0.86/sql/oqgraph/boost/assign/ptr_map_inserter.hpp 2009-10-21 20:44:49.000000000 +100091404+++ mysql-5.0.86/sql/oqgraph/boost/assign/ptr_map_inserter.hpp 2009-10-23 10:28:05.000000000 -0700
91428@@ -0,0 +1,103 @@91405@@ -0,0 +1,103 @@
91429+// Boost.Assign library91406+// Boost.Assign library
91430+//91407+//
@@ -91532,7 +91509,7 @@
91532Index: mysql-5.0.86/sql/oqgraph/boost/assign/std.hpp91509Index: mysql-5.0.86/sql/oqgraph/boost/assign/std.hpp
91533===================================================================91510===================================================================
91534--- /dev/null 1970-01-01 00:00:00.000000000 +000091511--- /dev/null 1970-01-01 00:00:00.000000000 +0000
91535+++ mysql-5.0.86/sql/oqgraph/boost/assign/std.hpp 2009-10-21 20:44:49.000000000 +100091512+++ mysql-5.0.86/sql/oqgraph/boost/assign/std.hpp 2009-10-23 10:28:05.000000000 -0700
91536@@ -0,0 +1,27 @@91513@@ -0,0 +1,27 @@
91537+// Boost.Assign library91514+// Boost.Assign library
91538+//91515+//
@@ -91564,7 +91541,7 @@
91564Index: mysql-5.0.86/sql/oqgraph/boost/assign/std/deque.hpp91541Index: mysql-5.0.86/sql/oqgraph/boost/assign/std/deque.hpp
91565===================================================================91542===================================================================
91566--- /dev/null 1970-01-01 00:00:00.000000000 +000091543--- /dev/null 1970-01-01 00:00:00.000000000 +0000
91567+++ mysql-5.0.86/sql/oqgraph/boost/assign/std/deque.hpp 2009-10-21 20:44:49.000000000 +100091544+++ mysql-5.0.86/sql/oqgraph/boost/assign/std/deque.hpp 2009-10-23 10:28:05.000000000 -0700
91568@@ -0,0 +1,38 @@91545@@ -0,0 +1,38 @@
91569+// Boost.Assign library91546+// Boost.Assign library
91570+//91547+//
@@ -91607,7 +91584,7 @@
91607Index: mysql-5.0.86/sql/oqgraph/boost/assign/std/list.hpp91584Index: mysql-5.0.86/sql/oqgraph/boost/assign/std/list.hpp
91608===================================================================91585===================================================================
91609--- /dev/null 1970-01-01 00:00:00.000000000 +000091586--- /dev/null 1970-01-01 00:00:00.000000000 +0000
91610+++ mysql-5.0.86/sql/oqgraph/boost/assign/std/list.hpp 2009-10-21 20:44:49.000000000 +100091587+++ mysql-5.0.86/sql/oqgraph/boost/assign/std/list.hpp 2009-10-23 10:28:05.000000000 -0700
91611@@ -0,0 +1,38 @@91588@@ -0,0 +1,38 @@
91612+// Boost.Assign library91589+// Boost.Assign library
91613+//91590+//
@@ -91650,7 +91627,7 @@
91650Index: mysql-5.0.86/sql/oqgraph/boost/assign/std/map.hpp91627Index: mysql-5.0.86/sql/oqgraph/boost/assign/std/map.hpp
91651===================================================================91628===================================================================
91652--- /dev/null 1970-01-01 00:00:00.000000000 +000091629--- /dev/null 1970-01-01 00:00:00.000000000 +0000
91653+++ mysql-5.0.86/sql/oqgraph/boost/assign/std/map.hpp 2009-10-21 20:44:49.000000000 +100091630+++ mysql-5.0.86/sql/oqgraph/boost/assign/std/map.hpp 2009-10-23 10:28:05.000000000 -0700
91654@@ -0,0 +1,45 @@91631@@ -0,0 +1,45 @@
91655+// Boost.Assign library91632+// Boost.Assign library
91656+//91633+//
@@ -91700,7 +91677,7 @@
91700Index: mysql-5.0.86/sql/oqgraph/boost/assign/std/queue.hpp91677Index: mysql-5.0.86/sql/oqgraph/boost/assign/std/queue.hpp
91701===================================================================91678===================================================================
91702--- /dev/null 1970-01-01 00:00:00.000000000 +000091679--- /dev/null 1970-01-01 00:00:00.000000000 +0000
91703+++ mysql-5.0.86/sql/oqgraph/boost/assign/std/queue.hpp 2009-10-21 20:44:49.000000000 +100091680+++ mysql-5.0.86/sql/oqgraph/boost/assign/std/queue.hpp 2009-10-23 10:28:05.000000000 -0700
91704@@ -0,0 +1,45 @@91681@@ -0,0 +1,45 @@
91705+// Boost.Assign library91682+// Boost.Assign library
91706+//91683+//
@@ -91750,7 +91727,7 @@
91750Index: mysql-5.0.86/sql/oqgraph/boost/assign/std/set.hpp91727Index: mysql-5.0.86/sql/oqgraph/boost/assign/std/set.hpp
91751===================================================================91728===================================================================
91752--- /dev/null 1970-01-01 00:00:00.000000000 +000091729--- /dev/null 1970-01-01 00:00:00.000000000 +0000
91753+++ mysql-5.0.86/sql/oqgraph/boost/assign/std/set.hpp 2009-10-21 20:44:49.000000000 +100091730+++ mysql-5.0.86/sql/oqgraph/boost/assign/std/set.hpp 2009-10-23 10:28:05.000000000 -0700
91754@@ -0,0 +1,44 @@91731@@ -0,0 +1,44 @@
91755+// Boost.Assign library91732+// Boost.Assign library
91756+//91733+//
@@ -91799,7 +91776,7 @@
91799Index: mysql-5.0.86/sql/oqgraph/boost/assign/std/slist.hpp91776Index: mysql-5.0.86/sql/oqgraph/boost/assign/std/slist.hpp
91800===================================================================91777===================================================================
91801--- /dev/null 1970-01-01 00:00:00.000000000 +000091778--- /dev/null 1970-01-01 00:00:00.000000000 +0000
91802+++ mysql-5.0.86/sql/oqgraph/boost/assign/std/slist.hpp 2009-10-21 20:44:49.000000000 +100091779+++ mysql-5.0.86/sql/oqgraph/boost/assign/std/slist.hpp 2009-10-23 10:28:05.000000000 -0700
91803@@ -0,0 +1,45 @@91780@@ -0,0 +1,45 @@
91804+// Boost.Assign library91781+// Boost.Assign library
91805+//91782+//
@@ -91849,7 +91826,7 @@
91849Index: mysql-5.0.86/sql/oqgraph/boost/assign/std/stack.hpp91826Index: mysql-5.0.86/sql/oqgraph/boost/assign/std/stack.hpp
91850===================================================================91827===================================================================
91851--- /dev/null 1970-01-01 00:00:00.000000000 +000091828--- /dev/null 1970-01-01 00:00:00.000000000 +0000
91852+++ mysql-5.0.86/sql/oqgraph/boost/assign/std/stack.hpp 2009-10-21 20:44:49.000000000 +100091829+++ mysql-5.0.86/sql/oqgraph/boost/assign/std/stack.hpp 2009-10-23 10:28:05.000000000 -0700
91853@@ -0,0 +1,37 @@91830@@ -0,0 +1,37 @@
91854+// Boost.Assign library91831+// Boost.Assign library
91855+//91832+//
@@ -91891,7 +91868,7 @@
91891Index: mysql-5.0.86/sql/oqgraph/boost/assign/std/vector.hpp91868Index: mysql-5.0.86/sql/oqgraph/boost/assign/std/vector.hpp
91892===================================================================91869===================================================================
91893--- /dev/null 1970-01-01 00:00:00.000000000 +000091870--- /dev/null 1970-01-01 00:00:00.000000000 +0000
91894+++ mysql-5.0.86/sql/oqgraph/boost/assign/std/vector.hpp 2009-10-21 20:44:49.000000000 +100091871+++ mysql-5.0.86/sql/oqgraph/boost/assign/std/vector.hpp 2009-10-23 10:28:05.000000000 -0700
91895@@ -0,0 +1,37 @@91872@@ -0,0 +1,37 @@
91896+// Boost.Assign library91873+// Boost.Assign library
91897+//91874+//
@@ -91933,7 +91910,7 @@
91933Index: mysql-5.0.86/sql/oqgraph/boost/bimap.hpp91910Index: mysql-5.0.86/sql/oqgraph/boost/bimap.hpp
91934===================================================================91911===================================================================
91935--- /dev/null 1970-01-01 00:00:00.000000000 +000091912--- /dev/null 1970-01-01 00:00:00.000000000 +0000
91936+++ mysql-5.0.86/sql/oqgraph/boost/bimap.hpp 2009-10-21 20:44:49.000000000 +100091913+++ mysql-5.0.86/sql/oqgraph/boost/bimap.hpp 2009-10-23 10:28:05.000000000 -0700
91937@@ -0,0 +1,19 @@91914@@ -0,0 +1,19 @@
91938+// Boost.Bimap91915+// Boost.Bimap
91939+//91916+//
@@ -91957,7 +91934,7 @@
91957Index: mysql-5.0.86/sql/oqgraph/boost/bimap/bimap.hpp91934Index: mysql-5.0.86/sql/oqgraph/boost/bimap/bimap.hpp
91958===================================================================91935===================================================================
91959--- /dev/null 1970-01-01 00:00:00.000000000 +000091936--- /dev/null 1970-01-01 00:00:00.000000000 +0000
91960+++ mysql-5.0.86/sql/oqgraph/boost/bimap/bimap.hpp 2009-10-21 20:44:49.000000000 +100091937+++ mysql-5.0.86/sql/oqgraph/boost/bimap/bimap.hpp 2009-10-23 10:28:05.000000000 -0700
91961@@ -0,0 +1,430 @@91938@@ -0,0 +1,430 @@
91962+// Boost.Bimap91939+// Boost.Bimap
91963+//91940+//
@@ -92392,7 +92369,7 @@
92392Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/associative_container_adaptor.hpp92369Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/associative_container_adaptor.hpp
92393===================================================================92370===================================================================
92394--- /dev/null 1970-01-01 00:00:00.000000000 +000092371--- /dev/null 1970-01-01 00:00:00.000000000 +0000
92395+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/associative_container_adaptor.hpp 2009-10-21 20:44:49.000000000 +100092372+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/associative_container_adaptor.hpp 2009-10-23 10:28:06.000000000 -0700
92396@@ -0,0 +1,287 @@92373@@ -0,0 +1,287 @@
92397+// Boost.Bimap92374+// Boost.Bimap
92398+//92375+//
@@ -92684,7 +92661,7 @@
92684Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/container_adaptor.hpp92661Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/container_adaptor.hpp
92685===================================================================92662===================================================================
92686--- /dev/null 1970-01-01 00:00:00.000000000 +000092663--- /dev/null 1970-01-01 00:00:00.000000000 +0000
92687+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/container_adaptor.hpp 2009-10-21 20:44:49.000000000 +100092664+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/container_adaptor.hpp 2009-10-23 10:28:06.000000000 -0700
92688@@ -0,0 +1,291 @@92665@@ -0,0 +1,291 @@
92689+// Boost.Bimap92666+// Boost.Bimap
92690+//92667+//
@@ -92980,7 +92957,7 @@
92980Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/detail/comparison_adaptor.hpp92957Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/detail/comparison_adaptor.hpp
92981===================================================================92958===================================================================
92982--- /dev/null 1970-01-01 00:00:00.000000000 +000092959--- /dev/null 1970-01-01 00:00:00.000000000 +0000
92983+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/detail/comparison_adaptor.hpp 2009-10-21 20:44:49.000000000 +100092960+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/detail/comparison_adaptor.hpp 2009-10-23 10:28:06.000000000 -0700
92984@@ -0,0 +1,101 @@92961@@ -0,0 +1,101 @@
92985+// Boost.Bimap92962+// Boost.Bimap
92986+//92963+//
@@ -93086,7 +93063,7 @@
93086Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/detail/functor_bag.hpp93063Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/detail/functor_bag.hpp
93087===================================================================93064===================================================================
93088--- /dev/null 1970-01-01 00:00:00.000000000 +000093065--- /dev/null 1970-01-01 00:00:00.000000000 +0000
93089+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/detail/functor_bag.hpp 2009-10-21 20:44:49.000000000 +100093066+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/detail/functor_bag.hpp 2009-10-23 10:28:06.000000000 -0700
93090@@ -0,0 +1,100 @@93067@@ -0,0 +1,100 @@
93091+// Boost.Bimap93068+// Boost.Bimap
93092+//93069+//
@@ -93191,7 +93168,7 @@
93191Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/detail/identity_converters.hpp93168Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/detail/identity_converters.hpp
93192===================================================================93169===================================================================
93193--- /dev/null 1970-01-01 00:00:00.000000000 +000093170--- /dev/null 1970-01-01 00:00:00.000000000 +0000
93194+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/detail/identity_converters.hpp 2009-10-21 20:44:49.000000000 +100093171+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/detail/identity_converters.hpp 2009-10-23 10:28:06.000000000 -0700
93195@@ -0,0 +1,191 @@93172@@ -0,0 +1,191 @@
93196+// Boost.Bimap93173+// Boost.Bimap
93197+//93174+//
@@ -93387,7 +93364,7 @@
93387Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/detail/key_extractor.hpp93364Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/detail/key_extractor.hpp
93388===================================================================93365===================================================================
93389--- /dev/null 1970-01-01 00:00:00.000000000 +000093366--- /dev/null 1970-01-01 00:00:00.000000000 +0000
93390+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/detail/key_extractor.hpp 2009-10-21 20:44:49.000000000 +100093367+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/detail/key_extractor.hpp 2009-10-23 10:28:06.000000000 -0700
93391@@ -0,0 +1,45 @@93368@@ -0,0 +1,45 @@
93392+// Boost.Bimap93369+// Boost.Bimap
93393+//93370+//
@@ -93437,7 +93414,7 @@
93437Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/detail/non_unique_container_helper.hpp93414Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/detail/non_unique_container_helper.hpp
93438===================================================================93415===================================================================
93439--- /dev/null 1970-01-01 00:00:00.000000000 +000093416--- /dev/null 1970-01-01 00:00:00.000000000 +0000
93440+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/detail/non_unique_container_helper.hpp 2009-10-21 20:44:49.000000000 +100093417+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/detail/non_unique_container_helper.hpp 2009-10-23 10:28:06.000000000 -0700
93441@@ -0,0 +1,62 @@93418@@ -0,0 +1,62 @@
93442+// Boost.Bimap93419+// Boost.Bimap
93443+//93420+//
@@ -93504,7 +93481,7 @@
93504Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/list_adaptor.hpp93481Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/list_adaptor.hpp
93505===================================================================93482===================================================================
93506--- /dev/null 1970-01-01 00:00:00.000000000 +000093483--- /dev/null 1970-01-01 00:00:00.000000000 +0000
93507+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/list_adaptor.hpp 2009-10-21 20:44:49.000000000 +100093484+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/list_adaptor.hpp 2009-10-23 10:28:06.000000000 -0700
93508@@ -0,0 +1,249 @@93485@@ -0,0 +1,249 @@
93509+// Boost.Bimap93486+// Boost.Bimap
93510+//93487+//
@@ -93758,7 +93735,7 @@
93758Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/list_map_adaptor.hpp93735Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/list_map_adaptor.hpp
93759===================================================================93736===================================================================
93760--- /dev/null 1970-01-01 00:00:00.000000000 +000093737--- /dev/null 1970-01-01 00:00:00.000000000 +0000
93761+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/list_map_adaptor.hpp 2009-10-21 20:44:49.000000000 +100093738+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/list_map_adaptor.hpp 2009-10-23 10:28:06.000000000 -0700
93762@@ -0,0 +1,282 @@93739@@ -0,0 +1,282 @@
93763+ // Boost.Bimap93740+ // Boost.Bimap
93764+//93741+//
@@ -94045,7 +94022,7 @@
94045Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/map_adaptor.hpp94022Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/map_adaptor.hpp
94046===================================================================94023===================================================================
94047--- /dev/null 1970-01-01 00:00:00.000000000 +000094024--- /dev/null 1970-01-01 00:00:00.000000000 +0000
94048+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/map_adaptor.hpp 2009-10-21 20:44:49.000000000 +100094025+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/map_adaptor.hpp 2009-10-23 10:28:06.000000000 -0700
94049@@ -0,0 +1,131 @@94026@@ -0,0 +1,131 @@
94050+// Boost.Bimap94027+// Boost.Bimap
94051+//94028+//
@@ -94181,7 +94158,7 @@
94181Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/multimap_adaptor.hpp94158Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/multimap_adaptor.hpp
94182===================================================================94159===================================================================
94183--- /dev/null 1970-01-01 00:00:00.000000000 +000094160--- /dev/null 1970-01-01 00:00:00.000000000 +0000
94184+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/multimap_adaptor.hpp 2009-10-21 20:44:49.000000000 +100094161+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/multimap_adaptor.hpp 2009-10-23 10:28:06.000000000 -0700
94185@@ -0,0 +1,109 @@94162@@ -0,0 +1,109 @@
94186+// Boost.Bimap94163+// Boost.Bimap
94187+//94164+//
@@ -94295,7 +94272,7 @@
94295Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/multiset_adaptor.hpp94272Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/multiset_adaptor.hpp
94296===================================================================94273===================================================================
94297--- /dev/null 1970-01-01 00:00:00.000000000 +000094274--- /dev/null 1970-01-01 00:00:00.000000000 +0000
94298+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/multiset_adaptor.hpp 2009-10-21 20:44:49.000000000 +100094275+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/multiset_adaptor.hpp 2009-10-23 10:28:06.000000000 -0700
94299@@ -0,0 +1,103 @@94276@@ -0,0 +1,103 @@
94300+// Boost.Bimap94277+// Boost.Bimap
94301+//94278+//
@@ -94403,7 +94380,7 @@
94403Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/ordered_associative_container_adaptor.hpp94380Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/ordered_associative_container_adaptor.hpp
94404===================================================================94381===================================================================
94405--- /dev/null 1970-01-01 00:00:00.000000000 +000094382--- /dev/null 1970-01-01 00:00:00.000000000 +0000
94406+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/ordered_associative_container_adaptor.hpp 2009-10-21 20:44:49.000000000 +100094383+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/ordered_associative_container_adaptor.hpp 2009-10-23 10:28:06.000000000 -0700
94407@@ -0,0 +1,312 @@94384@@ -0,0 +1,312 @@
94408+// Boost.Bimap94385+// Boost.Bimap
94409+//94386+//
@@ -94720,7 +94697,7 @@
94720Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/sequence_container_adaptor.hpp94697Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/sequence_container_adaptor.hpp
94721===================================================================94698===================================================================
94722--- /dev/null 1970-01-01 00:00:00.000000000 +000094699--- /dev/null 1970-01-01 00:00:00.000000000 +0000
94723+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/sequence_container_adaptor.hpp 2009-10-21 20:44:49.000000000 +100094700+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/sequence_container_adaptor.hpp 2009-10-23 10:28:06.000000000 -0700
94724@@ -0,0 +1,355 @@94701@@ -0,0 +1,355 @@
94725+// Boost.Bimap94702+// Boost.Bimap
94726+//94703+//
@@ -95080,7 +95057,7 @@
95080Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/set_adaptor.hpp95057Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/set_adaptor.hpp
95081===================================================================95058===================================================================
95082--- /dev/null 1970-01-01 00:00:00.000000000 +000095059--- /dev/null 1970-01-01 00:00:00.000000000 +0000
95083+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/set_adaptor.hpp 2009-10-21 20:44:49.000000000 +100095060+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/set_adaptor.hpp 2009-10-23 10:28:06.000000000 -0700
95084@@ -0,0 +1,100 @@95061@@ -0,0 +1,100 @@
95085+// Boost.Bimap95062+// Boost.Bimap
95086+//95063+//
@@ -95185,7 +95162,7 @@
95185Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/support/iterator_facade_converters.hpp95162Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/support/iterator_facade_converters.hpp
95186===================================================================95163===================================================================
95187--- /dev/null 1970-01-01 00:00:00.000000000 +000095164--- /dev/null 1970-01-01 00:00:00.000000000 +0000
95188+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/support/iterator_facade_converters.hpp 2009-10-21 20:44:49.000000000 +100095165+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/support/iterator_facade_converters.hpp 2009-10-23 10:28:06.000000000 -0700
95189@@ -0,0 +1,77 @@95166@@ -0,0 +1,77 @@
95190+// Boost.Bimap95167+// Boost.Bimap
95191+//95168+//
@@ -95267,7 +95244,7 @@
95267Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/unordered_associative_container_adaptor.hpp95244Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/unordered_associative_container_adaptor.hpp
95268===================================================================95245===================================================================
95269--- /dev/null 1970-01-01 00:00:00.000000000 +000095246--- /dev/null 1970-01-01 00:00:00.000000000 +0000
95270+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/unordered_associative_container_adaptor.hpp 2009-10-21 20:44:49.000000000 +100095247+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/unordered_associative_container_adaptor.hpp 2009-10-23 10:28:06.000000000 -0700
95271@@ -0,0 +1,293 @@95248@@ -0,0 +1,293 @@
95272+// Boost.Bimap95249+// Boost.Bimap
95273+//95250+//
@@ -95565,7 +95542,7 @@
95565Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/unordered_map_adaptor.hpp95542Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/unordered_map_adaptor.hpp
95566===================================================================95543===================================================================
95567--- /dev/null 1970-01-01 00:00:00.000000000 +000095544--- /dev/null 1970-01-01 00:00:00.000000000 +0000
95568+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/unordered_map_adaptor.hpp 2009-10-21 20:44:49.000000000 +100095545+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/unordered_map_adaptor.hpp 2009-10-23 10:28:06.000000000 -0700
95569@@ -0,0 +1,132 @@95546@@ -0,0 +1,132 @@
95570+// Boost.Bimap95547+// Boost.Bimap
95571+//95548+//
@@ -95702,7 +95679,7 @@
95702Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/unordered_multimap_adaptor.hpp95679Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/unordered_multimap_adaptor.hpp
95703===================================================================95680===================================================================
95704--- /dev/null 1970-01-01 00:00:00.000000000 +000095681--- /dev/null 1970-01-01 00:00:00.000000000 +0000
95705+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/unordered_multimap_adaptor.hpp 2009-10-21 20:44:49.000000000 +100095682+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/unordered_multimap_adaptor.hpp 2009-10-23 10:28:06.000000000 -0700
95706@@ -0,0 +1,110 @@95683@@ -0,0 +1,110 @@
95707+// Boost.Bimap95684+// Boost.Bimap
95708+//95685+//
@@ -95817,7 +95794,7 @@
95817Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/unordered_multiset_adaptor.hpp95794Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/unordered_multiset_adaptor.hpp
95818===================================================================95795===================================================================
95819--- /dev/null 1970-01-01 00:00:00.000000000 +000095796--- /dev/null 1970-01-01 00:00:00.000000000 +0000
95820+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/unordered_multiset_adaptor.hpp 2009-10-21 20:44:49.000000000 +100095797+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/unordered_multiset_adaptor.hpp 2009-10-23 10:28:06.000000000 -0700
95821@@ -0,0 +1,102 @@95798@@ -0,0 +1,102 @@
95822+// Boost.Bimap95799+// Boost.Bimap
95823+//95800+//
@@ -95924,7 +95901,7 @@
95924Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/unordered_set_adaptor.hpp95901Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/unordered_set_adaptor.hpp
95925===================================================================95902===================================================================
95926--- /dev/null 1970-01-01 00:00:00.000000000 +000095903--- /dev/null 1970-01-01 00:00:00.000000000 +0000
95927+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/unordered_set_adaptor.hpp 2009-10-21 20:44:49.000000000 +100095904+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/unordered_set_adaptor.hpp 2009-10-23 10:28:06.000000000 -0700
95928@@ -0,0 +1,98 @@95905@@ -0,0 +1,98 @@
95929+// Boost.Bimap95906+// Boost.Bimap
95930+//95907+//
@@ -96027,7 +96004,7 @@
96027Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/vector_adaptor.hpp96004Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/vector_adaptor.hpp
96028===================================================================96005===================================================================
96029--- /dev/null 1970-01-01 00:00:00.000000000 +000096006--- /dev/null 1970-01-01 00:00:00.000000000 +0000
96030+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/vector_adaptor.hpp 2009-10-21 20:44:49.000000000 +100096007+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/vector_adaptor.hpp 2009-10-23 10:28:06.000000000 -0700
96031@@ -0,0 +1,142 @@96008@@ -0,0 +1,142 @@
96032+// Boost.Bimap96009+// Boost.Bimap
96033+//96010+//
@@ -96174,7 +96151,7 @@
96174Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/vector_map_adaptor.hpp96151Index: mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/vector_map_adaptor.hpp
96175===================================================================96152===================================================================
96176--- /dev/null 1970-01-01 00:00:00.000000000 +000096153--- /dev/null 1970-01-01 00:00:00.000000000 +0000
96177+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/vector_map_adaptor.hpp 2009-10-21 20:44:49.000000000 +100096154+++ mysql-5.0.86/sql/oqgraph/boost/bimap/container_adaptor/vector_map_adaptor.hpp 2009-10-23 10:28:06.000000000 -0700
96178@@ -0,0 +1,103 @@96155@@ -0,0 +1,103 @@
96179+// Boost.Bimap96156+// Boost.Bimap
96180+//96157+//
@@ -96282,7 +96259,7 @@
96282Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/bimap_core.hpp96259Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/bimap_core.hpp
96283===================================================================96260===================================================================
96284--- /dev/null 1970-01-01 00:00:00.000000000 +000096261--- /dev/null 1970-01-01 00:00:00.000000000 +0000
96285+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/bimap_core.hpp 2009-10-21 20:44:49.000000000 +100096262+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/bimap_core.hpp 2009-10-23 10:28:06.000000000 -0700
96286@@ -0,0 +1,520 @@96263@@ -0,0 +1,520 @@
96287+// Boost.Bimap96264+// Boost.Bimap
96288+//96265+//
@@ -96807,7 +96784,7 @@
96807Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/concept_tags.hpp96784Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/concept_tags.hpp
96808===================================================================96785===================================================================
96809--- /dev/null 1970-01-01 00:00:00.000000000 +000096786--- /dev/null 1970-01-01 00:00:00.000000000 +0000
96810+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/concept_tags.hpp 2009-10-21 20:44:49.000000000 +100096787+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/concept_tags.hpp 2009-10-23 10:28:06.000000000 -0700
96811@@ -0,0 +1,97 @@96788@@ -0,0 +1,97 @@
96812+// Boost.Bimap96789+// Boost.Bimap
96813+//96790+//
@@ -96909,7 +96886,7 @@
96909Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/debug/static_error.hpp96886Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/debug/static_error.hpp
96910===================================================================96887===================================================================
96911--- /dev/null 1970-01-01 00:00:00.000000000 +000096888--- /dev/null 1970-01-01 00:00:00.000000000 +0000
96912+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/debug/static_error.hpp 2009-10-21 20:44:49.000000000 +100096889+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/debug/static_error.hpp 2009-10-23 10:28:06.000000000 -0700
96913@@ -0,0 +1,36 @@96890@@ -0,0 +1,36 @@
96914+// Boost.Bimap96891+// Boost.Bimap
96915+//96892+//
@@ -96950,7 +96927,7 @@
96950Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/generate_index_binder.hpp96927Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/generate_index_binder.hpp
96951===================================================================96928===================================================================
96952--- /dev/null 1970-01-01 00:00:00.000000000 +000096929--- /dev/null 1970-01-01 00:00:00.000000000 +0000
96953+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/generate_index_binder.hpp 2009-10-21 20:44:49.000000000 +100096930+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/generate_index_binder.hpp 2009-10-23 10:28:06.000000000 -0700
96954@@ -0,0 +1,125 @@96931@@ -0,0 +1,125 @@
96955+// Boost.Bimap96932+// Boost.Bimap
96956+//96933+//
@@ -97080,7 +97057,7 @@
97080Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/generate_relation_binder.hpp97057Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/generate_relation_binder.hpp
97081===================================================================97058===================================================================
97082--- /dev/null 1970-01-01 00:00:00.000000000 +000097059--- /dev/null 1970-01-01 00:00:00.000000000 +0000
97083+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/generate_relation_binder.hpp 2009-10-21 20:44:49.000000000 +100097060+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/generate_relation_binder.hpp 2009-10-23 10:28:06.000000000 -0700
97084@@ -0,0 +1,88 @@97061@@ -0,0 +1,88 @@
97085+// Boost.Bimap97062+// Boost.Bimap
97086+//97063+//
@@ -97173,7 +97150,7 @@
97173Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/generate_view_binder.hpp97150Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/generate_view_binder.hpp
97174===================================================================97151===================================================================
97175--- /dev/null 1970-01-01 00:00:00.000000000 +000097152--- /dev/null 1970-01-01 00:00:00.000000000 +0000
97176+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/generate_view_binder.hpp 2009-10-21 20:44:49.000000000 +100097153+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/generate_view_binder.hpp 2009-10-23 10:28:06.000000000 -0700
97177@@ -0,0 +1,58 @@97154@@ -0,0 +1,58 @@
97178+// Boost.Bimap97155+// Boost.Bimap
97179+//97156+//
@@ -97236,7 +97213,7 @@
97236Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/is_set_type_of.hpp97213Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/is_set_type_of.hpp
97237===================================================================97214===================================================================
97238--- /dev/null 1970-01-01 00:00:00.000000000 +000097215--- /dev/null 1970-01-01 00:00:00.000000000 +0000
97239+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/is_set_type_of.hpp 2009-10-21 20:44:49.000000000 +100097216+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/is_set_type_of.hpp 2009-10-23 10:28:06.000000000 -0700
97240@@ -0,0 +1,66 @@97217@@ -0,0 +1,66 @@
97241+// Boost.Bimap97218+// Boost.Bimap
97242+//97219+//
@@ -97307,7 +97284,7 @@
97307Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/manage_additional_parameters.hpp97284Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/manage_additional_parameters.hpp
97308===================================================================97285===================================================================
97309--- /dev/null 1970-01-01 00:00:00.000000000 +000097286--- /dev/null 1970-01-01 00:00:00.000000000 +0000
97310+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/manage_additional_parameters.hpp 2009-10-21 20:44:49.000000000 +100097287+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/manage_additional_parameters.hpp 2009-10-23 10:28:06.000000000 -0700
97311@@ -0,0 +1,243 @@97288@@ -0,0 +1,243 @@
97312+// Boost.Bimap97289+// Boost.Bimap
97313+//97290+//
@@ -97555,7 +97532,7 @@
97555Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/manage_bimap_key.hpp97532Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/manage_bimap_key.hpp
97556===================================================================97533===================================================================
97557--- /dev/null 1970-01-01 00:00:00.000000000 +000097534--- /dev/null 1970-01-01 00:00:00.000000000 +0000
97558+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/manage_bimap_key.hpp 2009-10-21 20:44:49.000000000 +100097535+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/manage_bimap_key.hpp 2009-10-23 10:28:06.000000000 -0700
97559@@ -0,0 +1,84 @@97536@@ -0,0 +1,84 @@
97560+// Boost.Bimap97537+// Boost.Bimap
97561+//97538+//
@@ -97644,7 +97621,7 @@
97644Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/map_view_base.hpp97621Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/map_view_base.hpp
97645===================================================================97622===================================================================
97646--- /dev/null 1970-01-01 00:00:00.000000000 +000097623--- /dev/null 1970-01-01 00:00:00.000000000 +0000
97647+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/map_view_base.hpp 2009-10-21 20:44:49.000000000 +100097624+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/map_view_base.hpp 2009-10-23 10:28:06.000000000 -0700
97648@@ -0,0 +1,552 @@97625@@ -0,0 +1,552 @@
97649+// Boost.Bimap97626+// Boost.Bimap
97650+//97627+//
@@ -98201,7 +98178,7 @@
98201Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/map_view_iterator.hpp98178Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/map_view_iterator.hpp
98202===================================================================98179===================================================================
98203--- /dev/null 1970-01-01 00:00:00.000000000 +000098180--- /dev/null 1970-01-01 00:00:00.000000000 +0000
98204+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/map_view_iterator.hpp 2009-10-21 20:44:49.000000000 +100098181+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/map_view_iterator.hpp 2009-10-23 10:28:06.000000000 -0700
98205@@ -0,0 +1,200 @@98182@@ -0,0 +1,200 @@
98206+// Boost.Bimap98183+// Boost.Bimap
98207+//98184+//
@@ -98406,7 +98383,7 @@
98406Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/modifier_adaptor.hpp98383Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/modifier_adaptor.hpp
98407===================================================================98384===================================================================
98408--- /dev/null 1970-01-01 00:00:00.000000000 +000098385--- /dev/null 1970-01-01 00:00:00.000000000 +0000
98409+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/modifier_adaptor.hpp 2009-10-21 20:44:49.000000000 +100098386+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/modifier_adaptor.hpp 2009-10-23 10:28:06.000000000 -0700
98410@@ -0,0 +1,89 @@98387@@ -0,0 +1,89 @@
98411+// Boost.Bimap98388+// Boost.Bimap
98412+//98389+//
@@ -98500,7 +98477,7 @@
98500Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/non_unique_views_helper.hpp98477Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/non_unique_views_helper.hpp
98501===================================================================98478===================================================================
98502--- /dev/null 1970-01-01 00:00:00.000000000 +000098479--- /dev/null 1970-01-01 00:00:00.000000000 +0000
98503+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/non_unique_views_helper.hpp 2009-10-21 20:44:49.000000000 +100098480+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/non_unique_views_helper.hpp 2009-10-23 10:28:06.000000000 -0700
98504@@ -0,0 +1,71 @@98481@@ -0,0 +1,71 @@
98505+// Boost.Bimap98482+// Boost.Bimap
98506+//98483+//
@@ -98576,7 +98553,7 @@
98576Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/set_view_base.hpp98553Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/set_view_base.hpp
98577===================================================================98554===================================================================
98578--- /dev/null 1970-01-01 00:00:00.000000000 +000098555--- /dev/null 1970-01-01 00:00:00.000000000 +0000
98579+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/set_view_base.hpp 2009-10-21 20:44:49.000000000 +100098556+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/set_view_base.hpp 2009-10-23 10:28:06.000000000 -0700
98580@@ -0,0 +1,330 @@98557@@ -0,0 +1,330 @@
98581+// Boost.Bimap98558+// Boost.Bimap
98582+//98559+//
@@ -98911,7 +98888,7 @@
98911Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/set_view_iterator.hpp98888Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/set_view_iterator.hpp
98912===================================================================98889===================================================================
98913--- /dev/null 1970-01-01 00:00:00.000000000 +000098890--- /dev/null 1970-01-01 00:00:00.000000000 +0000
98914+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/set_view_iterator.hpp 2009-10-21 20:44:49.000000000 +100098891+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/set_view_iterator.hpp 2009-10-23 10:28:06.000000000 -0700
98915@@ -0,0 +1,193 @@98892@@ -0,0 +1,193 @@
98916+// Boost.Bimap98893+// Boost.Bimap
98917+//98894+//
@@ -99109,7 +99086,7 @@
99109Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/test/check_metadata.hpp99086Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/test/check_metadata.hpp
99110===================================================================99087===================================================================
99111--- /dev/null 1970-01-01 00:00:00.000000000 +000099088--- /dev/null 1970-01-01 00:00:00.000000000 +0000
99112+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/test/check_metadata.hpp 2009-10-21 20:44:49.000000000 +100099089+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/test/check_metadata.hpp 2009-10-23 10:28:06.000000000 -0700
99113@@ -0,0 +1,113 @@99090@@ -0,0 +1,113 @@
99114+// Boost.Bimap99091+// Boost.Bimap
99115+//99092+//
@@ -99227,7 +99204,7 @@
99227Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/user_interface_config.hpp99204Index: mysql-5.0.86/sql/oqgraph/boost/bimap/detail/user_interface_config.hpp
99228===================================================================99205===================================================================
99229--- /dev/null 1970-01-01 00:00:00.000000000 +000099206--- /dev/null 1970-01-01 00:00:00.000000000 +0000
99230+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/user_interface_config.hpp 2009-10-21 20:44:49.000000000 +100099207+++ mysql-5.0.86/sql/oqgraph/boost/bimap/detail/user_interface_config.hpp 2009-10-23 10:28:06.000000000 -0700
99231@@ -0,0 +1,24 @@99208@@ -0,0 +1,24 @@
99232+// Boost.Bimap99209+// Boost.Bimap
99233+//99210+//
@@ -99256,7 +99233,7 @@
99256Index: mysql-5.0.86/sql/oqgraph/boost/bimap/list_of.hpp99233Index: mysql-5.0.86/sql/oqgraph/boost/bimap/list_of.hpp
99257===================================================================99234===================================================================
99258--- /dev/null 1970-01-01 00:00:00.000000000 +000099235--- /dev/null 1970-01-01 00:00:00.000000000 +0000
99259+++ mysql-5.0.86/sql/oqgraph/boost/bimap/list_of.hpp 2009-10-21 20:44:49.000000000 +100099236+++ mysql-5.0.86/sql/oqgraph/boost/bimap/list_of.hpp 2009-10-23 10:28:06.000000000 -0700
99260@@ -0,0 +1,181 @@99237@@ -0,0 +1,181 @@
99261+// Boost.Bimap99238+// Boost.Bimap
99262+//99239+//
@@ -99442,7 +99419,7 @@
99442Index: mysql-5.0.86/sql/oqgraph/boost/bimap/multiset_of.hpp99419Index: mysql-5.0.86/sql/oqgraph/boost/bimap/multiset_of.hpp
99443===================================================================99420===================================================================
99444--- /dev/null 1970-01-01 00:00:00.000000000 +000099421--- /dev/null 1970-01-01 00:00:00.000000000 +0000
99445+++ mysql-5.0.86/sql/oqgraph/boost/bimap/multiset_of.hpp 2009-10-21 20:44:49.000000000 +100099422+++ mysql-5.0.86/sql/oqgraph/boost/bimap/multiset_of.hpp 2009-10-23 10:28:06.000000000 -0700
99446@@ -0,0 +1,205 @@99423@@ -0,0 +1,205 @@
99447+// Boost.Bimap99424+// Boost.Bimap
99448+//99425+//
@@ -99652,7 +99629,7 @@
99652Index: mysql-5.0.86/sql/oqgraph/boost/bimap/property_map/set_support.hpp99629Index: mysql-5.0.86/sql/oqgraph/boost/bimap/property_map/set_support.hpp
99653===================================================================99630===================================================================
99654--- /dev/null 1970-01-01 00:00:00.000000000 +000099631--- /dev/null 1970-01-01 00:00:00.000000000 +0000
99655+++ mysql-5.0.86/sql/oqgraph/boost/bimap/property_map/set_support.hpp 2009-10-21 20:44:49.000000000 +100099632+++ mysql-5.0.86/sql/oqgraph/boost/bimap/property_map/set_support.hpp 2009-10-23 10:28:06.000000000 -0700
99656@@ -0,0 +1,55 @@99633@@ -0,0 +1,55 @@
99657+// Boost.Bimap99634+// Boost.Bimap
99658+//99635+//
@@ -99712,7 +99689,7 @@
99712Index: mysql-5.0.86/sql/oqgraph/boost/bimap/property_map/unordered_set_support.hpp99689Index: mysql-5.0.86/sql/oqgraph/boost/bimap/property_map/unordered_set_support.hpp
99713===================================================================99690===================================================================
99714--- /dev/null 1970-01-01 00:00:00.000000000 +000099691--- /dev/null 1970-01-01 00:00:00.000000000 +0000
99715+++ mysql-5.0.86/sql/oqgraph/boost/bimap/property_map/unordered_set_support.hpp 2009-10-21 20:44:49.000000000 +100099692+++ mysql-5.0.86/sql/oqgraph/boost/bimap/property_map/unordered_set_support.hpp 2009-10-23 10:28:06.000000000 -0700
99716@@ -0,0 +1,55 @@99693@@ -0,0 +1,55 @@
99717+// Boost.Bimap99694+// Boost.Bimap
99718+//99695+//
@@ -99772,7 +99749,7 @@
99772Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/detail/access_builder.hpp99749Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/detail/access_builder.hpp
99773===================================================================99750===================================================================
99774--- /dev/null 1970-01-01 00:00:00.000000000 +000099751--- /dev/null 1970-01-01 00:00:00.000000000 +0000
99775+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/detail/access_builder.hpp 2009-10-21 20:44:49.000000000 +100099752+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/detail/access_builder.hpp 2009-10-23 10:28:06.000000000 -0700
99776@@ -0,0 +1,170 @@99753@@ -0,0 +1,170 @@
99777+// Boost.Bimap99754+// Boost.Bimap
99778+//99755+//
@@ -99947,7 +99924,7 @@
99947Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/detail/metadata_access_builder.hpp99924Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/detail/metadata_access_builder.hpp
99948===================================================================99925===================================================================
99949--- /dev/null 1970-01-01 00:00:00.000000000 +000099926--- /dev/null 1970-01-01 00:00:00.000000000 +0000
99950+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/detail/metadata_access_builder.hpp 2009-10-21 20:44:49.000000000 +100099927+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/detail/metadata_access_builder.hpp 2009-10-23 10:28:06.000000000 -0700
99951@@ -0,0 +1,103 @@99928@@ -0,0 +1,103 @@
99952+// Boost.Bimap99929+// Boost.Bimap
99953+//99930+//
@@ -100055,7 +100032,7 @@
100055Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/detail/mutant.hpp100032Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/detail/mutant.hpp
100056===================================================================100033===================================================================
100057--- /dev/null 1970-01-01 00:00:00.000000000 +0000100034--- /dev/null 1970-01-01 00:00:00.000000000 +0000
100058+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/detail/mutant.hpp 2009-10-21 20:44:49.000000000 +1000100035+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/detail/mutant.hpp 2009-10-23 10:28:06.000000000 -0700
100059@@ -0,0 +1,83 @@100036@@ -0,0 +1,83 @@
100060+// Boost.Bimap100037+// Boost.Bimap
100061+//100038+//
@@ -100143,7 +100120,7 @@
100143Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/detail/static_access_builder.hpp100120Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/detail/static_access_builder.hpp
100144===================================================================100121===================================================================
100145--- /dev/null 1970-01-01 00:00:00.000000000 +0000100122--- /dev/null 1970-01-01 00:00:00.000000000 +0000
100146+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/detail/static_access_builder.hpp 2009-10-21 20:44:49.000000000 +1000100123+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/detail/static_access_builder.hpp 2009-10-23 10:28:06.000000000 -0700
100147@@ -0,0 +1,105 @@100124@@ -0,0 +1,105 @@
100148+// Boost.Bimap100125+// Boost.Bimap
100149+//100126+//
@@ -100253,7 +100230,7 @@
100253Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/detail/to_mutable_relation_functor.hpp100230Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/detail/to_mutable_relation_functor.hpp
100254===================================================================100231===================================================================
100255--- /dev/null 1970-01-01 00:00:00.000000000 +0000100232--- /dev/null 1970-01-01 00:00:00.000000000 +0000
100256+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/detail/to_mutable_relation_functor.hpp 2009-10-21 20:44:49.000000000 +1000100233+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/detail/to_mutable_relation_functor.hpp 2009-10-23 10:28:06.000000000 -0700
100257@@ -0,0 +1,102 @@100234@@ -0,0 +1,102 @@
100258+// Boost.Bimap100235+// Boost.Bimap
100259+//100236+//
@@ -100360,7 +100337,7 @@
100360Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/member_at.hpp100337Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/member_at.hpp
100361===================================================================100338===================================================================
100362--- /dev/null 1970-01-01 00:00:00.000000000 +0000100339--- /dev/null 1970-01-01 00:00:00.000000000 +0000
100363+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/member_at.hpp 2009-10-21 20:44:49.000000000 +1000100340+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/member_at.hpp 2009-10-23 10:28:06.000000000 -0700
100364@@ -0,0 +1,72 @@100341@@ -0,0 +1,72 @@
100365+// Boost.Bimap100342+// Boost.Bimap
100366+//100343+//
@@ -100437,7 +100414,7 @@
100437Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/mutant_relation.hpp100414Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/mutant_relation.hpp
100438===================================================================100415===================================================================
100439--- /dev/null 1970-01-01 00:00:00.000000000 +0000100416--- /dev/null 1970-01-01 00:00:00.000000000 +0000
100440+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/mutant_relation.hpp 2009-10-21 20:44:49.000000000 +1000100417+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/mutant_relation.hpp 2009-10-23 10:28:06.000000000 -0700
100441@@ -0,0 +1,430 @@100418@@ -0,0 +1,430 @@
100442+// Boost.Bimap100419+// Boost.Bimap
100443+//100420+//
@@ -100872,7 +100849,7 @@
100872Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/pair_layout.hpp100849Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/pair_layout.hpp
100873===================================================================100850===================================================================
100874--- /dev/null 1970-01-01 00:00:00.000000000 +0000100851--- /dev/null 1970-01-01 00:00:00.000000000 +0000
100875+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/pair_layout.hpp 2009-10-21 20:44:49.000000000 +1000100852+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/pair_layout.hpp 2009-10-23 10:28:06.000000000 -0700
100876@@ -0,0 +1,72 @@100853@@ -0,0 +1,72 @@
100877+// Boost.Bimap100854+// Boost.Bimap
100878+//100855+//
@@ -100949,7 +100926,7 @@
100949Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/structured_pair.hpp100926Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/structured_pair.hpp
100950===================================================================100927===================================================================
100951--- /dev/null 1970-01-01 00:00:00.000000000 +0000100928--- /dev/null 1970-01-01 00:00:00.000000000 +0000
100952+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/structured_pair.hpp 2009-10-21 20:44:49.000000000 +1000100929+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/structured_pair.hpp 2009-10-23 10:28:06.000000000 -0700
100953@@ -0,0 +1,508 @@100930@@ -0,0 +1,508 @@
100954+// Boost.Bimap100931+// Boost.Bimap
100955+//100932+//
@@ -101462,7 +101439,7 @@
101462Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/data_extractor.hpp101439Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/data_extractor.hpp
101463===================================================================101440===================================================================
101464--- /dev/null 1970-01-01 00:00:00.000000000 +0000101441--- /dev/null 1970-01-01 00:00:00.000000000 +0000
101465+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/data_extractor.hpp 2009-10-21 20:44:49.000000000 +1000101442+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/data_extractor.hpp 2009-10-23 10:28:06.000000000 -0700
101466@@ -0,0 +1,109 @@101443@@ -0,0 +1,109 @@
101467+// Boost.Bimap101444+// Boost.Bimap
101468+//101445+//
@@ -101576,7 +101553,7 @@
101576Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/get.hpp101553Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/get.hpp
101577===================================================================101554===================================================================
101578--- /dev/null 1970-01-01 00:00:00.000000000 +0000101555--- /dev/null 1970-01-01 00:00:00.000000000 +0000
101579+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/get.hpp 2009-10-21 20:44:49.000000000 +1000101556+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/get.hpp 2009-10-23 10:28:06.000000000 -0700
101580@@ -0,0 +1,140 @@101557@@ -0,0 +1,140 @@
101581+// Boost.Bimap101558+// Boost.Bimap
101582+//101559+//
@@ -101721,7 +101698,7 @@
101721Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/get_pair_functor.hpp101698Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/get_pair_functor.hpp
101722===================================================================101699===================================================================
101723--- /dev/null 1970-01-01 00:00:00.000000000 +0000101700--- /dev/null 1970-01-01 00:00:00.000000000 +0000
101724+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/get_pair_functor.hpp 2009-10-21 20:44:49.000000000 +1000101701+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/get_pair_functor.hpp 2009-10-23 10:28:06.000000000 -0700
101725@@ -0,0 +1,85 @@101702@@ -0,0 +1,85 @@
101726+// Boost.Bimap101703+// Boost.Bimap
101727+//101704+//
@@ -101811,7 +101788,7 @@
101811Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/is_tag_of_member_at.hpp101788Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/is_tag_of_member_at.hpp
101812===================================================================101789===================================================================
101813--- /dev/null 1970-01-01 00:00:00.000000000 +0000101790--- /dev/null 1970-01-01 00:00:00.000000000 +0000
101814+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/is_tag_of_member_at.hpp 2009-10-21 20:44:49.000000000 +1000101791+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/is_tag_of_member_at.hpp 2009-10-23 10:28:06.000000000 -0700
101815@@ -0,0 +1,181 @@101792@@ -0,0 +1,181 @@
101816+// Boost.Bimap101793+// Boost.Bimap
101817+//101794+//
@@ -101997,7 +101974,7 @@
101997Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/member_with_tag.hpp101974Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/member_with_tag.hpp
101998===================================================================101975===================================================================
101999--- /dev/null 1970-01-01 00:00:00.000000000 +0000101976--- /dev/null 1970-01-01 00:00:00.000000000 +0000
102000+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/member_with_tag.hpp 2009-10-21 20:44:49.000000000 +1000101977+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/member_with_tag.hpp 2009-10-23 10:28:06.000000000 -0700
102001@@ -0,0 +1,180 @@101978@@ -0,0 +1,180 @@
102002+// Boost.Bimap101979+// Boost.Bimap
102003+//101980+//
@@ -102182,7 +102159,7 @@
102182Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/opposite_tag.hpp102159Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/opposite_tag.hpp
102183===================================================================102160===================================================================
102184--- /dev/null 1970-01-01 00:00:00.000000000 +0000102161--- /dev/null 1970-01-01 00:00:00.000000000 +0000
102185+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/opposite_tag.hpp 2009-10-21 20:44:49.000000000 +1000102162+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/opposite_tag.hpp 2009-10-23 10:28:06.000000000 -0700
102186@@ -0,0 +1,61 @@102163@@ -0,0 +1,61 @@
102187+// Boost.Bimap102164+// Boost.Bimap
102188+//102165+//
@@ -102248,7 +102225,7 @@
102248Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/pair_by.hpp102225Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/pair_by.hpp
102249===================================================================102226===================================================================
102250--- /dev/null 1970-01-01 00:00:00.000000000 +0000102227--- /dev/null 1970-01-01 00:00:00.000000000 +0000
102251+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/pair_by.hpp 2009-10-21 20:44:49.000000000 +1000102228+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/pair_by.hpp 2009-10-23 10:28:06.000000000 -0700
102252@@ -0,0 +1,120 @@102229@@ -0,0 +1,120 @@
102253+// Boost.Bimap102230+// Boost.Bimap
102254+//102231+//
@@ -102373,7 +102350,7 @@
102373Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/pair_type_by.hpp102350Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/pair_type_by.hpp
102374===================================================================102351===================================================================
102375--- /dev/null 1970-01-01 00:00:00.000000000 +0000102352--- /dev/null 1970-01-01 00:00:00.000000000 +0000
102376+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/pair_type_by.hpp 2009-10-21 20:44:49.000000000 +1000102353+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/pair_type_by.hpp 2009-10-23 10:28:06.000000000 -0700
102377@@ -0,0 +1,62 @@102354@@ -0,0 +1,62 @@
102378+// Boost.Bimap102355+// Boost.Bimap
102379+//102356+//
@@ -102440,7 +102417,7 @@
102440Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/value_type_of.hpp102417Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/value_type_of.hpp
102441===================================================================102418===================================================================
102442--- /dev/null 1970-01-01 00:00:00.000000000 +0000102419--- /dev/null 1970-01-01 00:00:00.000000000 +0000
102443+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/value_type_of.hpp 2009-10-21 20:44:49.000000000 +1000102420+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/support/value_type_of.hpp 2009-10-23 10:28:06.000000000 -0700
102444@@ -0,0 +1,91 @@102421@@ -0,0 +1,91 @@
102445+// Boost.Bimap102422+// Boost.Bimap
102446+//102423+//
@@ -102536,7 +102513,7 @@
102536Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/symmetrical_base.hpp102513Index: mysql-5.0.86/sql/oqgraph/boost/bimap/relation/symmetrical_base.hpp
102537===================================================================102514===================================================================
102538--- /dev/null 1970-01-01 00:00:00.000000000 +0000102515--- /dev/null 1970-01-01 00:00:00.000000000 +0000
102539+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/symmetrical_base.hpp 2009-10-21 20:44:49.000000000 +1000102516+++ mysql-5.0.86/sql/oqgraph/boost/bimap/relation/symmetrical_base.hpp 2009-10-23 10:28:06.000000000 -0700
102540@@ -0,0 +1,97 @@102517@@ -0,0 +1,97 @@
102541+// Boost.Bimap102518+// Boost.Bimap
102542+//102519+//
@@ -102638,7 +102615,7 @@
102638Index: mysql-5.0.86/sql/oqgraph/boost/bimap/set_of.hpp102615Index: mysql-5.0.86/sql/oqgraph/boost/bimap/set_of.hpp
102639===================================================================102616===================================================================
102640--- /dev/null 1970-01-01 00:00:00.000000000 +0000102617--- /dev/null 1970-01-01 00:00:00.000000000 +0000
102641+++ mysql-5.0.86/sql/oqgraph/boost/bimap/set_of.hpp 2009-10-21 20:44:49.000000000 +1000102618+++ mysql-5.0.86/sql/oqgraph/boost/bimap/set_of.hpp 2009-10-23 10:28:06.000000000 -0700
102642@@ -0,0 +1,206 @@102619@@ -0,0 +1,206 @@
102643+// Boost.Bimap102620+// Boost.Bimap
102644+//102621+//
@@ -102849,7 +102826,7 @@
102849Index: mysql-5.0.86/sql/oqgraph/boost/bimap/support/data_type_by.hpp102826Index: mysql-5.0.86/sql/oqgraph/boost/bimap/support/data_type_by.hpp
102850===================================================================102827===================================================================
102851--- /dev/null 1970-01-01 00:00:00.000000000 +0000102828--- /dev/null 1970-01-01 00:00:00.000000000 +0000
102852+++ mysql-5.0.86/sql/oqgraph/boost/bimap/support/data_type_by.hpp 2009-10-21 20:44:49.000000000 +1000102829+++ mysql-5.0.86/sql/oqgraph/boost/bimap/support/data_type_by.hpp 2009-10-23 10:28:06.000000000 -0700
102853@@ -0,0 +1,73 @@102830@@ -0,0 +1,73 @@
102854+// Boost.Bimap102831+// Boost.Bimap
102855+//102832+//
@@ -102927,7 +102904,7 @@
102927Index: mysql-5.0.86/sql/oqgraph/boost/bimap/support/iterator_type_by.hpp102904Index: mysql-5.0.86/sql/oqgraph/boost/bimap/support/iterator_type_by.hpp
102928===================================================================102905===================================================================
102929--- /dev/null 1970-01-01 00:00:00.000000000 +0000102906--- /dev/null 1970-01-01 00:00:00.000000000 +0000
102930+++ mysql-5.0.86/sql/oqgraph/boost/bimap/support/iterator_type_by.hpp 2009-10-21 20:44:49.000000000 +1000102907+++ mysql-5.0.86/sql/oqgraph/boost/bimap/support/iterator_type_by.hpp 2009-10-23 10:28:07.000000000 -0700
102931@@ -0,0 +1,228 @@102908@@ -0,0 +1,228 @@
102932+// Boost.Bimap102909+// Boost.Bimap
102933+//102910+//
@@ -103160,7 +103137,7 @@
103160Index: mysql-5.0.86/sql/oqgraph/boost/bimap/support/key_type_by.hpp103137Index: mysql-5.0.86/sql/oqgraph/boost/bimap/support/key_type_by.hpp
103161===================================================================103138===================================================================
103162--- /dev/null 1970-01-01 00:00:00.000000000 +0000103139--- /dev/null 1970-01-01 00:00:00.000000000 +0000
103163+++ mysql-5.0.86/sql/oqgraph/boost/bimap/support/key_type_by.hpp 2009-10-21 20:44:49.000000000 +1000103140+++ mysql-5.0.86/sql/oqgraph/boost/bimap/support/key_type_by.hpp 2009-10-23 10:28:07.000000000 -0700
103164@@ -0,0 +1,64 @@103141@@ -0,0 +1,64 @@
103165+// Boost.Bimap103142+// Boost.Bimap
103166+//103143+//
@@ -103229,7 +103206,7 @@
103229Index: mysql-5.0.86/sql/oqgraph/boost/bimap/support/lambda.hpp103206Index: mysql-5.0.86/sql/oqgraph/boost/bimap/support/lambda.hpp
103230===================================================================103207===================================================================
103231--- /dev/null 1970-01-01 00:00:00.000000000 +0000103208--- /dev/null 1970-01-01 00:00:00.000000000 +0000
103232+++ mysql-5.0.86/sql/oqgraph/boost/bimap/support/lambda.hpp 2009-10-21 20:44:49.000000000 +1000103209+++ mysql-5.0.86/sql/oqgraph/boost/bimap/support/lambda.hpp 2009-10-23 10:28:07.000000000 -0700
103233@@ -0,0 +1,46 @@103210@@ -0,0 +1,46 @@
103234+// Boost.Bimap103211+// Boost.Bimap
103235+//103212+//
@@ -103280,7 +103257,7 @@
103280Index: mysql-5.0.86/sql/oqgraph/boost/bimap/support/map_by.hpp103257Index: mysql-5.0.86/sql/oqgraph/boost/bimap/support/map_by.hpp
103281===================================================================103258===================================================================
103282--- /dev/null 1970-01-01 00:00:00.000000000 +0000103259--- /dev/null 1970-01-01 00:00:00.000000000 +0000
103283+++ mysql-5.0.86/sql/oqgraph/boost/bimap/support/map_by.hpp 2009-10-21 20:44:49.000000000 +1000103260+++ mysql-5.0.86/sql/oqgraph/boost/bimap/support/map_by.hpp 2009-10-23 10:28:07.000000000 -0700
103284@@ -0,0 +1,132 @@103261@@ -0,0 +1,132 @@
103285+// Boost.Bimap103262+// Boost.Bimap
103286+//103263+//
@@ -103417,7 +103394,7 @@
103417Index: mysql-5.0.86/sql/oqgraph/boost/bimap/support/map_type_by.hpp103394Index: mysql-5.0.86/sql/oqgraph/boost/bimap/support/map_type_by.hpp
103418===================================================================103395===================================================================
103419--- /dev/null 1970-01-01 00:00:00.000000000 +0000103396--- /dev/null 1970-01-01 00:00:00.000000000 +0000
103420+++ mysql-5.0.86/sql/oqgraph/boost/bimap/support/map_type_by.hpp 2009-10-21 20:44:49.000000000 +1000103397+++ mysql-5.0.86/sql/oqgraph/boost/bimap/support/map_type_by.hpp 2009-10-23 10:28:07.000000000 -0700
103421@@ -0,0 +1,65 @@103398@@ -0,0 +1,65 @@
103422+// Boost.Bimap103399+// Boost.Bimap
103423+//103400+//
@@ -103487,7 +103464,7 @@
103487Index: mysql-5.0.86/sql/oqgraph/boost/bimap/support/value_type_by.hpp103464Index: mysql-5.0.86/sql/oqgraph/boost/bimap/support/value_type_by.hpp
103488===================================================================103465===================================================================
103489--- /dev/null 1970-01-01 00:00:00.000000000 +0000103466--- /dev/null 1970-01-01 00:00:00.000000000 +0000
103490+++ mysql-5.0.86/sql/oqgraph/boost/bimap/support/value_type_by.hpp 2009-10-21 20:44:49.000000000 +1000103467+++ mysql-5.0.86/sql/oqgraph/boost/bimap/support/value_type_by.hpp 2009-10-23 10:28:07.000000000 -0700
103491@@ -0,0 +1,65 @@103468@@ -0,0 +1,65 @@
103492+// Boost.Bimap103469+// Boost.Bimap
103493+//103470+//
@@ -103557,7 +103534,7 @@
103557Index: mysql-5.0.86/sql/oqgraph/boost/bimap/tags/support/apply_to_value_type.hpp103534Index: mysql-5.0.86/sql/oqgraph/boost/bimap/tags/support/apply_to_value_type.hpp
103558===================================================================103535===================================================================
103559--- /dev/null 1970-01-01 00:00:00.000000000 +0000103536--- /dev/null 1970-01-01 00:00:00.000000000 +0000
103560+++ mysql-5.0.86/sql/oqgraph/boost/bimap/tags/support/apply_to_value_type.hpp 2009-10-21 20:44:49.000000000 +1000103537+++ mysql-5.0.86/sql/oqgraph/boost/bimap/tags/support/apply_to_value_type.hpp 2009-10-23 10:28:07.000000000 -0700
103561@@ -0,0 +1,70 @@103538@@ -0,0 +1,70 @@
103562+// Boost.Bimap103539+// Boost.Bimap
103563+//103540+//
@@ -103632,7 +103609,7 @@
103632Index: mysql-5.0.86/sql/oqgraph/boost/bimap/tags/support/default_tagged.hpp103609Index: mysql-5.0.86/sql/oqgraph/boost/bimap/tags/support/default_tagged.hpp
103633===================================================================103610===================================================================
103634--- /dev/null 1970-01-01 00:00:00.000000000 +0000103611--- /dev/null 1970-01-01 00:00:00.000000000 +0000
103635+++ mysql-5.0.86/sql/oqgraph/boost/bimap/tags/support/default_tagged.hpp 2009-10-21 20:44:49.000000000 +1000103612+++ mysql-5.0.86/sql/oqgraph/boost/bimap/tags/support/default_tagged.hpp 2009-10-23 10:28:07.000000000 -0700
103636@@ -0,0 +1,73 @@103613@@ -0,0 +1,73 @@
103637+// Boost.Bimap103614+// Boost.Bimap
103638+//103615+//
@@ -103710,7 +103687,7 @@
103710Index: mysql-5.0.86/sql/oqgraph/boost/bimap/tags/support/is_tagged.hpp103687Index: mysql-5.0.86/sql/oqgraph/boost/bimap/tags/support/is_tagged.hpp
103711===================================================================103688===================================================================
103712--- /dev/null 1970-01-01 00:00:00.000000000 +0000103689--- /dev/null 1970-01-01 00:00:00.000000000 +0000
103713+++ mysql-5.0.86/sql/oqgraph/boost/bimap/tags/support/is_tagged.hpp 2009-10-21 20:44:49.000000000 +1000103690+++ mysql-5.0.86/sql/oqgraph/boost/bimap/tags/support/is_tagged.hpp 2009-10-23 10:28:07.000000000 -0700
103714@@ -0,0 +1,64 @@103691@@ -0,0 +1,64 @@
103715+// Boost.Bimap103692+// Boost.Bimap
103716+//103693+//
@@ -103779,7 +103756,7 @@
103779Index: mysql-5.0.86/sql/oqgraph/boost/bimap/tags/support/overwrite_tagged.hpp103756Index: mysql-5.0.86/sql/oqgraph/boost/bimap/tags/support/overwrite_tagged.hpp
103780===================================================================103757===================================================================
103781--- /dev/null 1970-01-01 00:00:00.000000000 +0000103758--- /dev/null 1970-01-01 00:00:00.000000000 +0000
103782+++ mysql-5.0.86/sql/oqgraph/boost/bimap/tags/support/overwrite_tagged.hpp 2009-10-21 20:44:49.000000000 +1000103759+++ mysql-5.0.86/sql/oqgraph/boost/bimap/tags/support/overwrite_tagged.hpp 2009-10-23 10:28:07.000000000 -0700
103783@@ -0,0 +1,73 @@103760@@ -0,0 +1,73 @@
103784+// Boost.Bimap103761+// Boost.Bimap
103785+//103762+//
@@ -103857,7 +103834,7 @@
103857Index: mysql-5.0.86/sql/oqgraph/boost/bimap/tags/support/tag_of.hpp103834Index: mysql-5.0.86/sql/oqgraph/boost/bimap/tags/support/tag_of.hpp
103858===================================================================103835===================================================================
103859--- /dev/null 1970-01-01 00:00:00.000000000 +0000103836--- /dev/null 1970-01-01 00:00:00.000000000 +0000
103860+++ mysql-5.0.86/sql/oqgraph/boost/bimap/tags/support/tag_of.hpp 2009-10-21 20:44:49.000000000 +1000103837+++ mysql-5.0.86/sql/oqgraph/boost/bimap/tags/support/tag_of.hpp 2009-10-23 10:28:07.000000000 -0700
103861@@ -0,0 +1,75 @@103838@@ -0,0 +1,75 @@
103862+// Boost.Bimap103839+// Boost.Bimap
103863+//103840+//
@@ -103937,7 +103914,7 @@
103937Index: mysql-5.0.86/sql/oqgraph/boost/bimap/tags/support/value_type_of.hpp103914Index: mysql-5.0.86/sql/oqgraph/boost/bimap/tags/support/value_type_of.hpp
103938===================================================================103915===================================================================
103939--- /dev/null 1970-01-01 00:00:00.000000000 +0000103916--- /dev/null 1970-01-01 00:00:00.000000000 +0000
103940+++ mysql-5.0.86/sql/oqgraph/boost/bimap/tags/support/value_type_of.hpp 2009-10-21 20:44:49.000000000 +1000103917+++ mysql-5.0.86/sql/oqgraph/boost/bimap/tags/support/value_type_of.hpp 2009-10-23 10:28:07.000000000 -0700
103941@@ -0,0 +1,74 @@103918@@ -0,0 +1,74 @@
103942+// Boost.Bimap103919+// Boost.Bimap
103943+//103920+//
@@ -104016,7 +103993,7 @@
104016Index: mysql-5.0.86/sql/oqgraph/boost/bimap/tags/tagged.hpp103993Index: mysql-5.0.86/sql/oqgraph/boost/bimap/tags/tagged.hpp
104017===================================================================103994===================================================================
104018--- /dev/null 1970-01-01 00:00:00.000000000 +0000103995--- /dev/null 1970-01-01 00:00:00.000000000 +0000
104019+++ mysql-5.0.86/sql/oqgraph/boost/bimap/tags/tagged.hpp 2009-10-21 20:44:49.000000000 +1000103996+++ mysql-5.0.86/sql/oqgraph/boost/bimap/tags/tagged.hpp 2009-10-23 10:28:07.000000000 -0700
104020@@ -0,0 +1,107 @@103997@@ -0,0 +1,107 @@
104021+// Boost.Bimap103998+// Boost.Bimap
104022+//103999+//
@@ -104128,7 +104105,7 @@
104128Index: mysql-5.0.86/sql/oqgraph/boost/bimap/unconstrained_set_of.hpp104105Index: mysql-5.0.86/sql/oqgraph/boost/bimap/unconstrained_set_of.hpp
104129===================================================================104106===================================================================
104130--- /dev/null 1970-01-01 00:00:00.000000000 +0000104107--- /dev/null 1970-01-01 00:00:00.000000000 +0000
104131+++ mysql-5.0.86/sql/oqgraph/boost/bimap/unconstrained_set_of.hpp 2009-10-21 20:44:49.000000000 +1000104108+++ mysql-5.0.86/sql/oqgraph/boost/bimap/unconstrained_set_of.hpp 2009-10-23 10:28:07.000000000 -0700
104132@@ -0,0 +1,150 @@104109@@ -0,0 +1,150 @@
104133+// Boost.Bimap104110+// Boost.Bimap
104134+//104111+//
@@ -104283,7 +104260,7 @@
104283Index: mysql-5.0.86/sql/oqgraph/boost/bimap/unordered_multiset_of.hpp104260Index: mysql-5.0.86/sql/oqgraph/boost/bimap/unordered_multiset_of.hpp
104284===================================================================104261===================================================================
104285--- /dev/null 1970-01-01 00:00:00.000000000 +0000104262--- /dev/null 1970-01-01 00:00:00.000000000 +0000
104286+++ mysql-5.0.86/sql/oqgraph/boost/bimap/unordered_multiset_of.hpp 2009-10-21 20:44:49.000000000 +1000104263+++ mysql-5.0.86/sql/oqgraph/boost/bimap/unordered_multiset_of.hpp 2009-10-23 10:28:07.000000000 -0700
104287@@ -0,0 +1,233 @@104264@@ -0,0 +1,233 @@
104288+// Boost.Bimap104265+// Boost.Bimap
104289+//104266+//
@@ -104521,7 +104498,7 @@
104521Index: mysql-5.0.86/sql/oqgraph/boost/bimap/unordered_set_of.hpp104498Index: mysql-5.0.86/sql/oqgraph/boost/bimap/unordered_set_of.hpp
104522===================================================================104499===================================================================
104523--- /dev/null 1970-01-01 00:00:00.000000000 +0000104500--- /dev/null 1970-01-01 00:00:00.000000000 +0000
104524+++ mysql-5.0.86/sql/oqgraph/boost/bimap/unordered_set_of.hpp 2009-10-21 20:44:49.000000000 +1000104501+++ mysql-5.0.86/sql/oqgraph/boost/bimap/unordered_set_of.hpp 2009-10-23 10:28:07.000000000 -0700
104525@@ -0,0 +1,230 @@104502@@ -0,0 +1,230 @@
104526+// Boost.Bimap104503+// Boost.Bimap
104527+//104504+//
@@ -104756,7 +104733,7 @@
104756Index: mysql-5.0.86/sql/oqgraph/boost/bimap/vector_of.hpp104733Index: mysql-5.0.86/sql/oqgraph/boost/bimap/vector_of.hpp
104757===================================================================104734===================================================================
104758--- /dev/null 1970-01-01 00:00:00.000000000 +0000104735--- /dev/null 1970-01-01 00:00:00.000000000 +0000
104759+++ mysql-5.0.86/sql/oqgraph/boost/bimap/vector_of.hpp 2009-10-21 20:44:49.000000000 +1000104736+++ mysql-5.0.86/sql/oqgraph/boost/bimap/vector_of.hpp 2009-10-23 10:28:07.000000000 -0700
104760@@ -0,0 +1,186 @@104737@@ -0,0 +1,186 @@
104761+// Boost.Bimap104738+// Boost.Bimap
104762+//104739+//
@@ -104947,7 +104924,7 @@
104947Index: mysql-5.0.86/sql/oqgraph/boost/bimap/views/list_map_view.hpp104924Index: mysql-5.0.86/sql/oqgraph/boost/bimap/views/list_map_view.hpp
104948===================================================================104925===================================================================
104949--- /dev/null 1970-01-01 00:00:00.000000000 +0000104926--- /dev/null 1970-01-01 00:00:00.000000000 +0000
104950+++ mysql-5.0.86/sql/oqgraph/boost/bimap/views/list_map_view.hpp 2009-10-21 20:44:49.000000000 +1000104927+++ mysql-5.0.86/sql/oqgraph/boost/bimap/views/list_map_view.hpp 2009-10-23 10:28:07.000000000 -0700
104951@@ -0,0 +1,182 @@104928@@ -0,0 +1,182 @@
104952+// Boost.Bimap104929+// Boost.Bimap
104953+//104930+//
@@ -105134,7 +105111,7 @@
105134Index: mysql-5.0.86/sql/oqgraph/boost/bimap/views/list_set_view.hpp105111Index: mysql-5.0.86/sql/oqgraph/boost/bimap/views/list_set_view.hpp
105135===================================================================105112===================================================================
105136--- /dev/null 1970-01-01 00:00:00.000000000 +0000105113--- /dev/null 1970-01-01 00:00:00.000000000 +0000
105137+++ mysql-5.0.86/sql/oqgraph/boost/bimap/views/list_set_view.hpp 2009-10-21 20:44:49.000000000 +1000105114+++ mysql-5.0.86/sql/oqgraph/boost/bimap/views/list_set_view.hpp 2009-10-23 10:28:07.000000000 -0700
105138@@ -0,0 +1,108 @@105115@@ -0,0 +1,108 @@
105139+// Boost.Bimap105116+// Boost.Bimap
105140+//105117+//
@@ -105247,7 +105224,7 @@
105247Index: mysql-5.0.86/sql/oqgraph/boost/bimap/views/map_view.hpp105224Index: mysql-5.0.86/sql/oqgraph/boost/bimap/views/map_view.hpp
105248===================================================================105225===================================================================
105249--- /dev/null 1970-01-01 00:00:00.000000000 +0000105226--- /dev/null 1970-01-01 00:00:00.000000000 +0000
105250+++ mysql-5.0.86/sql/oqgraph/boost/bimap/views/map_view.hpp 2009-10-21 20:44:49.000000000 +1000105227+++ mysql-5.0.86/sql/oqgraph/boost/bimap/views/map_view.hpp 2009-10-23 10:28:07.000000000 -0700
105251@@ -0,0 +1,156 @@105228@@ -0,0 +1,156 @@
105252+// Boost.Bimap105229+// Boost.Bimap
105253+//105230+//
@@ -105408,7 +105385,7 @@
105408Index: mysql-5.0.86/sql/oqgraph/boost/bimap/views/multimap_view.hpp105385Index: mysql-5.0.86/sql/oqgraph/boost/bimap/views/multimap_view.hpp
105409===================================================================105386===================================================================
105410--- /dev/null 1970-01-01 00:00:00.000000000 +0000105387--- /dev/null 1970-01-01 00:00:00.000000000 +0000
105411+++ mysql-5.0.86/sql/oqgraph/boost/bimap/views/multimap_view.hpp 2009-10-21 20:44:49.000000000 +1000105388+++ mysql-5.0.86/sql/oqgraph/boost/bimap/views/multimap_view.hpp 2009-10-23 10:28:07.000000000 -0700
105412@@ -0,0 +1,123 @@105389@@ -0,0 +1,123 @@
105413+// Boost.Bimap105390+// Boost.Bimap
105414+//105391+//
@@ -105536,7 +105513,7 @@
105536Index: mysql-5.0.86/sql/oqgraph/boost/bimap/views/multiset_view.hpp105513Index: mysql-5.0.86/sql/oqgraph/boost/bimap/views/multiset_view.hpp
105537===================================================================105514===================================================================
105538--- /dev/null 1970-01-01 00:00:00.000000000 +0000105515--- /dev/null 1970-01-01 00:00:00.000000000 +0000
105539+++ mysql-5.0.86/sql/oqgraph/boost/bimap/views/multiset_view.hpp 2009-10-21 20:44:49.000000000 +1000105516+++ mysql-5.0.86/sql/oqgraph/boost/bimap/views/multiset_view.hpp 2009-10-23 10:28:07.000000000 -0700
105540@@ -0,0 +1,110 @@105517@@ -0,0 +1,110 @@
105541+// Boost.Bimap105518+// Boost.Bimap
105542+//105519+//
@@ -105651,7 +105628,7 @@
105651Index: mysql-5.0.86/sql/oqgraph/boost/bimap/views/set_view.hpp105628Index: mysql-5.0.86/sql/oqgraph/boost/bimap/views/set_view.hpp
105652===================================================================105629===================================================================
105653--- /dev/null 1970-01-01 00:00:00.000000000 +0000105630--- /dev/null 1970-01-01 00:00:00.000000000 +0000
105654+++ mysql-5.0.86/sql/oqgraph/boost/bimap/views/set_view.hpp 2009-10-21 20:44:49.000000000 +1000105631+++ mysql-5.0.86/sql/oqgraph/boost/bimap/views/set_view.hpp 2009-10-23 10:28:07.000000000 -0700
105655@@ -0,0 +1,106 @@105632@@ -0,0 +1,106 @@
105656+// Boost.Bimap105633+// Boost.Bimap
105657+//105634+//
@@ -105762,7 +105739,7 @@
105762Index: mysql-5.0.86/sql/oqgraph/boost/bimap/views/unconstrained_map_view.hpp105739Index: mysql-5.0.86/sql/oqgraph/boost/bimap/views/unconstrained_map_view.hpp
105763===================================================================105740===================================================================
105764--- /dev/null 1970-01-01 00:00:00.000000000 +0000105741--- /dev/null 1970-01-01 00:00:00.000000000 +0000
105765+++ mysql-5.0.86/sql/oqgraph/boost/bimap/views/unconstrained_map_view.hpp 2009-10-21 20:44:49.000000000 +1000105742+++ mysql-5.0.86/sql/oqgraph/boost/bimap/views/unconstrained_map_view.hpp 2009-10-23 10:28:07.000000000 -0700
105766@@ -0,0 +1,44 @@105743@@ -0,0 +1,44 @@
105767+// Boost.Bimap105744+// Boost.Bimap
105768+//105745+//
@@ -105811,7 +105788,7 @@
105811Index: mysql-5.0.86/sql/oqgraph/boost/bimap/views/unconstrained_set_view.hpp105788Index: mysql-5.0.86/sql/oqgraph/boost/bimap/views/unconstrained_set_view.hpp
105812===================================================================105789===================================================================
105813--- /dev/null 1970-01-01 00:00:00.000000000 +0000105790--- /dev/null 1970-01-01 00:00:00.000000000 +0000
105814+++ mysql-5.0.86/sql/oqgraph/boost/bimap/views/unconstrained_set_view.hpp 2009-10-21 20:44:49.000000000 +1000105791+++ mysql-5.0.86/sql/oqgraph/boost/bimap/views/unconstrained_set_view.hpp 2009-10-23 10:28:07.000000000 -0700
105815@@ -0,0 +1,42 @@105792@@ -0,0 +1,42 @@
105816+// Boost.Bimap105793+// Boost.Bimap
105817+//105794+//
@@ -105858,7 +105835,7 @@
105858Index: mysql-5.0.86/sql/oqgraph/boost/bimap/views/unordered_map_view.hpp105835Index: mysql-5.0.86/sql/oqgraph/boost/bimap/views/unordered_map_view.hpp
105859===================================================================105836===================================================================
105860--- /dev/null 1970-01-01 00:00:00.000000000 +0000105837--- /dev/null 1970-01-01 00:00:00.000000000 +0000
105861+++ mysql-5.0.86/sql/oqgraph/boost/bimap/views/unordered_map_view.hpp 2009-10-21 20:44:49.000000000 +1000105838+++ mysql-5.0.86/sql/oqgraph/boost/bimap/views/unordered_map_view.hpp 2009-10-23 10:28:07.000000000 -0700
105862@@ -0,0 +1,174 @@105839@@ -0,0 +1,174 @@
105863+// Boost.Bimap105840+// Boost.Bimap
105864+//105841+//
@@ -106037,7 +106014,7 @@
106037Index: mysql-5.0.86/sql/oqgraph/boost/bimap/views/unordered_multimap_view.hpp106014Index: mysql-5.0.86/sql/oqgraph/boost/bimap/views/unordered_multimap_view.hpp
106038===================================================================106015===================================================================
106039--- /dev/null 1970-01-01 00:00:00.000000000 +0000106016--- /dev/null 1970-01-01 00:00:00.000000000 +0000
106040+++ mysql-5.0.86/sql/oqgraph/boost/bimap/views/unordered_multimap_view.hpp 2009-10-21 20:44:49.000000000 +1000106017+++ mysql-5.0.86/sql/oqgraph/boost/bimap/views/unordered_multimap_view.hpp 2009-10-23 10:28:07.000000000 -0700
106041@@ -0,0 +1,136 @@106018@@ -0,0 +1,136 @@
106042+// Boost.Bimap106019+// Boost.Bimap
106043+//106020+//
@@ -106178,7 +106155,7 @@
106178Index: mysql-5.0.86/sql/oqgraph/boost/bimap/views/unordered_multiset_view.hpp106155Index: mysql-5.0.86/sql/oqgraph/boost/bimap/views/unordered_multiset_view.hpp
106179===================================================================106156===================================================================
106180--- /dev/null 1970-01-01 00:00:00.000000000 +0000106157--- /dev/null 1970-01-01 00:00:00.000000000 +0000
106181+++ mysql-5.0.86/sql/oqgraph/boost/bimap/views/unordered_multiset_view.hpp 2009-10-21 20:44:49.000000000 +1000106158+++ mysql-5.0.86/sql/oqgraph/boost/bimap/views/unordered_multiset_view.hpp 2009-10-23 10:28:07.000000000 -0700
106182@@ -0,0 +1,83 @@106159@@ -0,0 +1,83 @@
106183+// Boost.Bimap106160+// Boost.Bimap
106184+//106161+//
@@ -106266,7 +106243,7 @@
106266Index: mysql-5.0.86/sql/oqgraph/boost/bimap/views/unordered_set_view.hpp106243Index: mysql-5.0.86/sql/oqgraph/boost/bimap/views/unordered_set_view.hpp
106267===================================================================106244===================================================================
106268--- /dev/null 1970-01-01 00:00:00.000000000 +0000106245--- /dev/null 1970-01-01 00:00:00.000000000 +0000
106269+++ mysql-5.0.86/sql/oqgraph/boost/bimap/views/unordered_set_view.hpp 2009-10-21 20:44:49.000000000 +1000106246+++ mysql-5.0.86/sql/oqgraph/boost/bimap/views/unordered_set_view.hpp 2009-10-23 10:28:07.000000000 -0700
106270@@ -0,0 +1,78 @@106247@@ -0,0 +1,78 @@
106271+// Boost.Bimap106248+// Boost.Bimap
106272+//106249+//
@@ -106349,7 +106326,7 @@
106349Index: mysql-5.0.86/sql/oqgraph/boost/bimap/views/vector_map_view.hpp106326Index: mysql-5.0.86/sql/oqgraph/boost/bimap/views/vector_map_view.hpp
106350===================================================================106327===================================================================
106351--- /dev/null 1970-01-01 00:00:00.000000000 +0000106328--- /dev/null 1970-01-01 00:00:00.000000000 +0000
106352+++ mysql-5.0.86/sql/oqgraph/boost/bimap/views/vector_map_view.hpp 2009-10-21 20:44:49.000000000 +1000106329+++ mysql-5.0.86/sql/oqgraph/boost/bimap/views/vector_map_view.hpp 2009-10-23 10:28:07.000000000 -0700
106353@@ -0,0 +1,306 @@106330@@ -0,0 +1,306 @@
106354+// Boost.Bimap106331+// Boost.Bimap
106355+//106332+//
@@ -106660,7 +106637,7 @@
106660Index: mysql-5.0.86/sql/oqgraph/boost/bimap/views/vector_set_view.hpp106637Index: mysql-5.0.86/sql/oqgraph/boost/bimap/views/vector_set_view.hpp
106661===================================================================106638===================================================================
106662--- /dev/null 1970-01-01 00:00:00.000000000 +0000106639--- /dev/null 1970-01-01 00:00:00.000000000 +0000
106663+++ mysql-5.0.86/sql/oqgraph/boost/bimap/views/vector_set_view.hpp 2009-10-21 20:44:49.000000000 +1000106640+++ mysql-5.0.86/sql/oqgraph/boost/bimap/views/vector_set_view.hpp 2009-10-23 10:28:07.000000000 -0700
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches