Merge lp:~nwilliams/akiban-sql-parser/apache-license into lp:~akiban-technologies/akiban-sql-parser/trunk

Proposed by Nathan Williams
Status: Merged
Approved by: Mike McMahon
Approved revision: 302
Merged at revision: 299
Proposed branch: lp:~nwilliams/akiban-sql-parser/apache-license
Merge into: lp:~akiban-technologies/akiban-sql-parser/trunk
Prerequisite: lp:~nwilliams/akiban-sql-parser/nexus-pom
Diff against target: 9549 lines (+3511/-3760)
253 files modified
LICENSE.txt (+202/-188)
build_release.sh (+17/-16)
pom.xml (+4/-4)
src/etc/header.txt (+13/-14)
src/main/java/com/akiban/sql/IncomparableException.java (+13/-14)
src/main/java/com/akiban/sql/StandardException.java (+13/-28)
src/main/java/com/akiban/sql/compiler/BitTypeCompiler.java (+13/-14)
src/main/java/com/akiban/sql/compiler/BooleanNormalizer.java (+13/-14)
src/main/java/com/akiban/sql/compiler/BooleanTypeCompiler.java (+13/-14)
src/main/java/com/akiban/sql/compiler/CLOBTypeCompiler.java (+13/-14)
src/main/java/com/akiban/sql/compiler/CharTypeCompiler.java (+13/-14)
src/main/java/com/akiban/sql/compiler/DateTypeCompiler.java (+13/-14)
src/main/java/com/akiban/sql/compiler/IntervalTypeCompiler.java (+13/-14)
src/main/java/com/akiban/sql/compiler/LOBTypeCompiler.java (+13/-14)
src/main/java/com/akiban/sql/compiler/NumericTypeCompiler.java (+13/-14)
src/main/java/com/akiban/sql/compiler/RefTypeCompiler.java (+13/-14)
src/main/java/com/akiban/sql/compiler/TimeTypeCompiler.java (+13/-14)
src/main/java/com/akiban/sql/compiler/TimestampTypeCompiler.java (+13/-14)
src/main/java/com/akiban/sql/compiler/TypeCompiler.java (+13/-14)
src/main/java/com/akiban/sql/compiler/TypeComputer.java (+13/-14)
src/main/java/com/akiban/sql/compiler/UserDefinedTypeCompiler.java (+13/-14)
src/main/java/com/akiban/sql/compiler/XMLTypeCompiler.java (+13/-14)
src/main/java/com/akiban/sql/parser/ASTVisitor.java (+15/-16)
src/main/java/com/akiban/sql/parser/AccessMode.java (+13/-14)
src/main/java/com/akiban/sql/parser/AggregateNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/AggregateWindowFunctionNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/AllResultColumn.java (+13/-14)
src/main/java/com/akiban/sql/parser/AlterAddIndexNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/AlterDropIndexNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/AlterServerNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/AlterTableNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/AlterTableRenameColumnNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/AlterTableRenameNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/AndNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/BaseColumnNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/BaseToken.java (+13/-14)
src/main/java/com/akiban/sql/parser/BetweenOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/BinaryArithmeticOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/BinaryBitOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/BinaryComparisonOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/BinaryListOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/BinaryLogicalOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/BinaryOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/BinaryRelationalOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/BitConstantNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/BooleanConstantNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/CallStatementNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/CastNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/CharConstantNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/CloseStatementNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/CoalesceFunctionNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/ColumnDefinitionNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/ColumnReference.java (+13/-14)
src/main/java/com/akiban/sql/parser/ConcatenationOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/ConditionalNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/ConstantNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/ConstraintDefinitionNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/CopyStatementNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/CreateAliasNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/CreateIndexNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/CreateRoleNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/CreateSchemaNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/CreateSequenceNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/CreateTableNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/CreateTriggerNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/CreateViewNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/CurrentDatetimeOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/CurrentOfNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/CurrentRowLocationNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/CurrentSequenceNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/CursorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/DDLStatementNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/DMLModStatementNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/DMLStatementNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/DeallocateStatementNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/DeclareStatementNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/DefaultNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/DeleteNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/DistinctNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/DropAliasNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/DropGroupNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/DropIndexNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/DropRoleNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/DropSchemaNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/DropSequenceNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/DropTableNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/DropTriggerNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/DropViewNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/ExecuteStatementNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/ExistenceCheck.java (+13/-14)
src/main/java/com/akiban/sql/parser/ExplainStatementNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/ExplicitCollateNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/ExtractOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/FKConstraintDefinitionNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/FetchStatementNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/FromBaseTable.java (+13/-14)
src/main/java/com/akiban/sql/parser/FromList.java (+13/-14)
src/main/java/com/akiban/sql/parser/FromSubquery.java (+13/-14)
src/main/java/com/akiban/sql/parser/FromTable.java (+13/-14)
src/main/java/com/akiban/sql/parser/FromVTI.java (+13/-14)
src/main/java/com/akiban/sql/parser/GenerationClauseNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/GetCurrentConnectionNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/GrantNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/GrantRoleNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/GroupByColumn.java (+13/-14)
src/main/java/com/akiban/sql/parser/GroupByList.java (+13/-14)
src/main/java/com/akiban/sql/parser/GroupConcatNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/HalfOuterJoinNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/HasNodeVisitor.java (+15/-16)
src/main/java/com/akiban/sql/parser/InListOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/IndexColumn.java (+13/-14)
src/main/java/com/akiban/sql/parser/IndexColumnList.java (+13/-14)
src/main/java/com/akiban/sql/parser/IndexConstraintDefinitionNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/IndexDefinition.java (+13/-14)
src/main/java/com/akiban/sql/parser/IndexHintList.java (+13/-14)
src/main/java/com/akiban/sql/parser/IndexHintNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/InsertNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/IntersectOrExceptNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/IsNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/IsNullNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/IsolationLevel.java (+13/-14)
src/main/java/com/akiban/sql/parser/JavaToSQLValueNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/JavaValueNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/JoinNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/LeftRightFuncOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/LengthOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/LikeEscapeOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/LockTableNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/MethodCallNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/MiscellaneousStatementNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/ModifyColumnNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/NOPStatementNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/NewInvocationNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/NextSequenceNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/NodeFactory.java (+15/-16)
src/main/java/com/akiban/sql/parser/NodeFactoryImpl.java (+15/-16)
src/main/java/com/akiban/sql/parser/NodeNames.java (+15/-16)
src/main/java/com/akiban/sql/parser/NodeTypes.java (+15/-16)
src/main/java/com/akiban/sql/parser/NonStaticMethodCallNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/NotNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/NumericConstantNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/OctetLengthOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/OrNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/OrderByColumn.java (+13/-14)
src/main/java/com/akiban/sql/parser/OrderByList.java (+13/-14)
src/main/java/com/akiban/sql/parser/OrderedColumn.java (+13/-14)
src/main/java/com/akiban/sql/parser/OrderedColumnList.java (+13/-14)
src/main/java/com/akiban/sql/parser/ParameterNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/PrepareStatementNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/PrivilegeNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/QueryTreeNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/QueryTreeNodeList.java (+13/-14)
src/main/java/com/akiban/sql/parser/RenameNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/ResultColumn.java (+13/-14)
src/main/java/com/akiban/sql/parser/ResultColumnList.java (+13/-14)
src/main/java/com/akiban/sql/parser/ResultSetNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/RevokeNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/RevokeRoleNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/RoutineDesignator.java (+13/-14)
src/main/java/com/akiban/sql/parser/RowConstructorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/RowCountNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/RowNumberFunctionNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/RowResultSetNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/RowsResultSetNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/SQLBooleanConstantNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/SQLParser.java (+13/-14)
src/main/java/com/akiban/sql/parser/SQLParserContext.java (+13/-14)
src/main/java/com/akiban/sql/parser/SQLParserException.java (+13/-14)
src/main/java/com/akiban/sql/parser/SQLParserFeature.java (+13/-14)
src/main/java/com/akiban/sql/parser/SQLToJavaValueNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/SavepointNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/SelectNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/SetConfigurationNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/SetOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/SetRoleNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/SetSchemaNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/SetTransactionAccessNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/SetTransactionIsolationNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/SimpleStringOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/SingleChildResultSetNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/SpecialFunctionNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/StatementNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/StatementType.java (+15/-16)
src/main/java/com/akiban/sql/parser/StaticClassFieldReferenceNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/StaticMethodCallNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/StorageLocation.java (+13/-14)
src/main/java/com/akiban/sql/parser/StringCharStream.java (+13/-14)
src/main/java/com/akiban/sql/parser/SubqueryList.java (+13/-14)
src/main/java/com/akiban/sql/parser/SubqueryNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/TableElementList.java (+13/-14)
src/main/java/com/akiban/sql/parser/TableElementNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/TableName.java (+13/-14)
src/main/java/com/akiban/sql/parser/TableOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/TablePrivilegesNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/TernaryOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/TestConstraintNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/TimestampOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/TransactionControlNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/TransactionStatementNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/TriggerReferencingStruct.java (+13/-14)
src/main/java/com/akiban/sql/parser/TrimOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/UCode_CharStream.java (+13/-14)
src/main/java/com/akiban/sql/parser/UnaryArithmeticOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/UnaryBitOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/UnaryComparisonOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/UnaryDateTimestampOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/UnaryLogicalOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/UnaryOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/UnionNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/UntypedNullConstantNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/UpdateNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/UserTypeConstantNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/ValueNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/ValueNodeList.java (+13/-14)
src/main/java/com/akiban/sql/parser/VarbitConstantNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/VirtualColumnNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/Visitable.java (+15/-16)
src/main/java/com/akiban/sql/parser/Visitor.java (+15/-16)
src/main/java/com/akiban/sql/parser/WindowDefinitionNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/WindowFunctionNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/WindowList.java (+13/-14)
src/main/java/com/akiban/sql/parser/WindowNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/WindowReferenceNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/XMLBinaryOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/XMLConstantNode.java (+13/-14)
src/main/java/com/akiban/sql/parser/XMLUnaryOperatorNode.java (+13/-14)
src/main/java/com/akiban/sql/types/AliasInfo.java (+15/-16)
src/main/java/com/akiban/sql/types/CharacterTypeAttributes.java (+13/-14)
src/main/java/com/akiban/sql/types/DataTypeDescriptor.java (+15/-16)
src/main/java/com/akiban/sql/types/JSQLType.java (+15/-16)
src/main/java/com/akiban/sql/types/MethodAliasInfo.java (+15/-16)
src/main/java/com/akiban/sql/types/RoutineAliasInfo.java (+15/-16)
src/main/java/com/akiban/sql/types/SynonymAliasInfo.java (+15/-16)
src/main/java/com/akiban/sql/types/TypeId.java (+15/-16)
src/main/java/com/akiban/sql/types/UDTAliasInfo.java (+15/-16)
src/main/java/com/akiban/sql/types/ValueClassName.java (+13/-14)
src/main/java/com/akiban/sql/unparser/NodeToString.java (+13/-14)
src/main/java/com/akiban/sql/views/ViewDefinition.java (+13/-14)
src/main/javacc/CharStream.java (+13/-14)
src/main/javacc/SQLGrammar.jj (+17/-18)
src/main/javacc/TokenMgrError.java (+13/-14)
src/test/java/com/akiban/sql/CompareWithoutHashes.java (+13/-14)
src/test/java/com/akiban/sql/CompareWithoutHashesTest.java (+13/-14)
src/test/java/com/akiban/sql/RegexFilenameFilter.java (+13/-14)
src/test/java/com/akiban/sql/TestBase.java (+13/-14)
src/test/java/com/akiban/sql/compiler/ASTTransformTestBase.java (+13/-14)
src/test/java/com/akiban/sql/compiler/BooleanNormalizerTest.java (+13/-14)
src/test/java/com/akiban/sql/compiler/CloneTest.java (+13/-14)
src/test/java/com/akiban/sql/parser/RowCtorTest.java (+13/-14)
src/test/java/com/akiban/sql/parser/SQLParserTest.java (+13/-14)
src/test/java/com/akiban/sql/parser/StringCharStreamTest.java (+13/-14)
src/test/java/com/akiban/sql/unparser/NodeToStringTest.java (+13/-14)
src/test/java/com/akiban/sql/unparser/ParseMultipleTest.java (+13/-14)
To merge this branch: bzr merge lp:~nwilliams/akiban-sql-parser/apache-license
Reviewer Review Type Date Requested Status
Mike McMahon Approve
Review via email: mp+163060@code.launchpad.net

Description of the change

Switch to Apache v2 license.

As the parser is intended to be used in a library/embedded like fashion (same reasoning as Persistit and Jonquil), Apache is a bit more palatable.

To post a comment you must log in.
Revision history for this message
Mike McMahon (mmcm) wrote :

Makes sense.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'LICENSE.txt'
2--- LICENSE.txt 2012-11-07 17:17:42 +0000
3+++ LICENSE.txt 2013-05-08 22:15:59 +0000
4@@ -1,188 +1,202 @@
5-http://www.eclipse.org/legal/epl-v10.html
6-
7-Eclipse Public License - v 1.0
8-
9-THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC
10-LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM
11-CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
12-
13-1. DEFINITIONS
14-
15-"Contribution" means:
16-
17-a) in the case of the initial Contributor, the initial code and documentation
18-distributed under this Agreement, and b) in the case of each subsequent
19-Contributor: i) changes to the Program, and ii) additions to the Program; where
20-such changes and/or additions to the Program originate from and are distributed
21-by that particular Contributor. A Contribution 'originates' from a Contributor
22-if it was added to the Program by such Contributor itself or anyone acting on
23-such Contributor's behalf. Contributions do not include additions to the Program
24-which: (i) are separate modules of software distributed in conjunction with the
25-Program under their own license agreement, and (ii) are not derivative works of
26-the Program. "Contributor" means any person or entity that distributes the
27-Program.
28-
29-"Licensed Patents" mean patent claims licensable by a Contributor which are
30-necessarily infringed by the use or sale of its Contribution alone or when
31-combined with the Program.
32-
33-"Program" means the Contributions distributed in accordance with this Agreement.
34-
35-"Recipient" means anyone who receives the Program under this Agreement,
36-including all Contributors.
37-
38-2. GRANT OF RIGHTS
39-
40-a) Subject to the terms of this Agreement, each Contributor hereby grants
41-Recipient a non-exclusive, worldwide, royalty-free copyright license to
42-reproduce, prepare derivative works of, publicly display, publicly perform,
43-distribute and sublicense the Contribution of such Contributor, if any, and such
44-derivative works, in source code and object code form. b) Subject to the terms
45-of this Agreement, each Contributor hereby grants Recipient a non-exclusive,
46-worldwide, royalty-free patent license under Licensed Patents to make, use,
47-sell, offer to sell, import and otherwise transfer the Contribution of such
48-Contributor, if any, in source code and object code form. This patent license
49-shall apply to the combination of the Contribution and the Program if, at the
50-time the Contribution is added by the Contributor, such addition of the
51-Contribution causes such combination to be covered by the Licensed Patents. The
52-patent license shall not apply to any other combinations which include the
53-Contribution. No hardware per se is licensed hereunder. c) Recipient understands
54-that although each Contributor grants the licenses to its Contributions set
55-forth herein, no assurances are provided by any Contributor that the Program
56-does not infringe the patent or other intellectual property rights of any other
57-entity. Each Contributor disclaims any liability to Recipient for claims brought
58-by any other entity based on infringement of intellectual property rights or
59-otherwise. As a condition to exercising the rights and licenses granted
60-hereunder, each Recipient hereby assumes sole responsibility to secure any other
61-intellectual property rights needed, if any. For example, if a third party
62-patent license is required to allow Recipient to distribute the Program, it is
63-Recipient's responsibility to acquire that license before distributing the
64-Program. d) Each Contributor represents that to its knowledge it has sufficient
65-copyright rights in its Contribution, if any, to grant the copyright license set
66-forth in this Agreement. 3. REQUIREMENTS
67-
68-A Contributor may choose to distribute the Program in object code form under its
69-own license agreement, provided that:
70-
71-a) it complies with the terms and conditions of this Agreement; and b) its
72-license agreement: i) effectively disclaims on behalf of all Contributors all
73-warranties and conditions, express and implied, including warranties or
74-conditions of title and non-infringement, and implied warranties or conditions
75-of merchantability and fitness for a particular purpose; ii) effectively
76-excludes on behalf of all Contributors all liability for damages, including
77-direct, indirect, special, incidental and consequential damages, such as lost
78-profits; iii) states that any provisions which differ from this Agreement are
79-offered by that Contributor alone and not by any other party; and iv) states
80-that source code for the Program is available from such Contributor, and informs
81-licensees how to obtain it in a reasonable manner on or through a medium
82-customarily used for software exchange. When the Program is made available in
83-source code form:
84-
85-a) it must be made available under this Agreement; and b) a copy of this
86-Agreement must be included with each copy of the Program. Contributors may not
87-remove or alter any copyright notices contained within the Program.
88-
89-Each Contributor must identify itself as the originator of its Contribution, if
90-any, in a manner that reasonably allows subsequent Recipients to identify the
91-originator of the Contribution.
92-
93-4. COMMERCIAL DISTRIBUTION
94-
95-Commercial distributors of software may accept certain responsibilities with
96-respect to end users, business partners and the like. While this license is
97-intended to facilitate the commercial use of the Program, the Contributor who
98-includes the Program in a commercial product offering should do so in a manner
99-which does not create potential liability for other Contributors. Therefore, if
100-a Contributor includes the Program in a commercial product offering, such
101-Contributor ("Commercial Contributor") hereby agrees to defend and indemnify
102-every other Contributor ("Indemnified Contributor") against any losses, damages
103-and costs (collectively "Losses") arising from claims, lawsuits and other legal
104-actions brought by a third party against the Indemnified Contributor to the
105-extent caused by the acts or omissions of such Commercial Contributor in
106-connection with its distribution of the Program in a commercial product
107-offering. The obligations in this section do not apply to any claims or Losses
108-relating to any actual or alleged intellectual property infringement. In order
109-to qualify, an Indemnified Contributor must: a) promptly notify the Commercial
110-Contributor in writing of such claim, and b) allow the Commercial Contributor to
111-control, and cooperate with the Commercial Contributor in, the defense and any
112-related settlement negotiations. The Indemnified Contributor may participate in
113-any such claim at its own expense.
114-
115-For example, a Contributor might include the Program in a commercial product
116-offering, Product X. That Contributor is then a Commercial Contributor. If that
117-Commercial Contributor then makes performance claims, or offers warranties
118-related to Product X, those performance claims and warranties are such
119-Commercial Contributor's responsibility alone. Under this section, the
120-Commercial Contributor would have to defend claims against the other
121-Contributors related to those performance claims and warranties, and if a court
122-requires any other Contributor to pay any damages as a result, the Commercial
123-Contributor must pay those damages.
124-
125-5. NO WARRANTY
126-
127-EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN
128-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR
129-IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,
130-NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each
131-Recipient is solely responsible for determining the appropriateness of using and
132-distributing the Program and assumes all risks associated with its exercise of
133-rights under this Agreement , including but not limited to the risks and costs
134-of program errors, compliance with applicable laws, damage to or loss of data,
135-programs or equipment, and unavailability or interruption of operations.
136-
137-6. DISCLAIMER OF LIABILITY
138-
139-EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY
140-CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,
141-SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST
142-PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
143-STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
144-OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS
145-GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
146-
147-7. GENERAL
148-
149-If any provision of this Agreement is invalid or unenforceable under applicable
150-law, it shall not affect the validity or enforceability of the remainder of the
151-terms of this Agreement, and without further action by the parties hereto, such
152-provision shall be reformed to the minimum extent necessary to make such
153-provision valid and enforceable.
154-
155-If Recipient institutes patent litigation against any entity (including a
156-cross-claim or counterclaim in a lawsuit) alleging that the Program itself
157-(excluding combinations of the Program with other software or hardware)
158-infringes such Recipient's patent(s), then such Recipient's rights granted under
159-Section 2(b) shall terminate as of the date such litigation is filed.
160-
161-All Recipient's rights under this Agreement shall terminate if it fails to
162-comply with any of the material terms or conditions of this Agreement and does
163-not cure such failure in a reasonable period of time after becoming aware of
164-such noncompliance. If all Recipient's rights under this Agreement terminate,
165-Recipient agrees to cease use and distribution of the Program as soon as
166-reasonably practicable. However, Recipient's obligations under this Agreement
167-and any licenses granted by Recipient relating to the Program shall continue and
168-survive.
169-
170-Everyone is permitted to copy and distribute copies of this Agreement, but in
171-order to avoid inconsistency the Agreement is copyrighted and may only be
172-modified in the following manner. The Agreement Steward reserves the right to
173-publish new versions (including revisions) of this Agreement from time to time.
174-No one other than the Agreement Steward has the right to modify this Agreement.
175-The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation
176-may assign the responsibility to serve as the Agreement Steward to a suitable
177-separate entity. Each new version of the Agreement will be given a
178-distinguishing version number. The Program (including Contributions) may always
179-be distributed subject to the version of the Agreement under which it was
180-received. In addition, after a new version of the Agreement is published,
181-Contributor may elect to distribute the Program (including its Contributions)
182-under the new version. Except as expressly stated in Sections 2(a) and 2(b)
183-above, Recipient receives no rights or licenses to the intellectual property of
184-any Contributor under this Agreement, whether expressly, by implication,
185-estoppel or otherwise. All rights in the Program not expressly granted under
186-this Agreement are reserved.
187-
188-This Agreement is governed by the laws of the State of New York and the
189-intellectual property laws of the United States of America. No party to this
190-Agreement will bring a legal action under this Agreement more than one year
191-after the cause of action arose. Each party waives its rights to a jury trial in
192-any resulting litigation.
193+ Apache License
194+ Version 2.0, January 2004
195+ http://www.apache.org/licenses/
196+
197+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
198+
199+ 1. Definitions.
200+
201+ "License" shall mean the terms and conditions for use, reproduction,
202+ and distribution as defined by Sections 1 through 9 of this document.
203+
204+ "Licensor" shall mean the copyright owner or entity authorized by
205+ the copyright owner that is granting the License.
206+
207+ "Legal Entity" shall mean the union of the acting entity and all
208+ other entities that control, are controlled by, or are under common
209+ control with that entity. For the purposes of this definition,
210+ "control" means (i) the power, direct or indirect, to cause the
211+ direction or management of such entity, whether by contract or
212+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
213+ outstanding shares, or (iii) beneficial ownership of such entity.
214+
215+ "You" (or "Your") shall mean an individual or Legal Entity
216+ exercising permissions granted by this License.
217+
218+ "Source" form shall mean the preferred form for making modifications,
219+ including but not limited to software source code, documentation
220+ source, and configuration files.
221+
222+ "Object" form shall mean any form resulting from mechanical
223+ transformation or translation of a Source form, including but
224+ not limited to compiled object code, generated documentation,
225+ and conversions to other media types.
226+
227+ "Work" shall mean the work of authorship, whether in Source or
228+ Object form, made available under the License, as indicated by a
229+ copyright notice that is included in or attached to the work
230+ (an example is provided in the Appendix below).
231+
232+ "Derivative Works" shall mean any work, whether in Source or Object
233+ form, that is based on (or derived from) the Work and for which the
234+ editorial revisions, annotations, elaborations, or other modifications
235+ represent, as a whole, an original work of authorship. For the purposes
236+ of this License, Derivative Works shall not include works that remain
237+ separable from, or merely link (or bind by name) to the interfaces of,
238+ the Work and Derivative Works thereof.
239+
240+ "Contribution" shall mean any work of authorship, including
241+ the original version of the Work and any modifications or additions
242+ to that Work or Derivative Works thereof, that is intentionally
243+ submitted to Licensor for inclusion in the Work by the copyright owner
244+ or by an individual or Legal Entity authorized to submit on behalf of
245+ the copyright owner. For the purposes of this definition, "submitted"
246+ means any form of electronic, verbal, or written communication sent
247+ to the Licensor or its representatives, including but not limited to
248+ communication on electronic mailing lists, source code control systems,
249+ and issue tracking systems that are managed by, or on behalf of, the
250+ Licensor for the purpose of discussing and improving the Work, but
251+ excluding communication that is conspicuously marked or otherwise
252+ designated in writing by the copyright owner as "Not a Contribution."
253+
254+ "Contributor" shall mean Licensor and any individual or Legal Entity
255+ on behalf of whom a Contribution has been received by Licensor and
256+ subsequently incorporated within the Work.
257+
258+ 2. Grant of Copyright License. Subject to the terms and conditions of
259+ this License, each Contributor hereby grants to You a perpetual,
260+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
261+ copyright license to reproduce, prepare Derivative Works of,
262+ publicly display, publicly perform, sublicense, and distribute the
263+ Work and such Derivative Works in Source or Object form.
264+
265+ 3. Grant of Patent License. Subject to the terms and conditions of
266+ this License, each Contributor hereby grants to You a perpetual,
267+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
268+ (except as stated in this section) patent license to make, have made,
269+ use, offer to sell, sell, import, and otherwise transfer the Work,
270+ where such license applies only to those patent claims licensable
271+ by such Contributor that are necessarily infringed by their
272+ Contribution(s) alone or by combination of their Contribution(s)
273+ with the Work to which such Contribution(s) was submitted. If You
274+ institute patent litigation against any entity (including a
275+ cross-claim or counterclaim in a lawsuit) alleging that the Work
276+ or a Contribution incorporated within the Work constitutes direct
277+ or contributory patent infringement, then any patent licenses
278+ granted to You under this License for that Work shall terminate
279+ as of the date such litigation is filed.
280+
281+ 4. Redistribution. You may reproduce and distribute copies of the
282+ Work or Derivative Works thereof in any medium, with or without
283+ modifications, and in Source or Object form, provided that You
284+ meet the following conditions:
285+
286+ (a) You must give any other recipients of the Work or
287+ Derivative Works a copy of this License; and
288+
289+ (b) You must cause any modified files to carry prominent notices
290+ stating that You changed the files; and
291+
292+ (c) You must retain, in the Source form of any Derivative Works
293+ that You distribute, all copyright, patent, trademark, and
294+ attribution notices from the Source form of the Work,
295+ excluding those notices that do not pertain to any part of
296+ the Derivative Works; and
297+
298+ (d) If the Work includes a "NOTICE" text file as part of its
299+ distribution, then any Derivative Works that You distribute must
300+ include a readable copy of the attribution notices contained
301+ within such NOTICE file, excluding those notices that do not
302+ pertain to any part of the Derivative Works, in at least one
303+ of the following places: within a NOTICE text file distributed
304+ as part of the Derivative Works; within the Source form or
305+ documentation, if provided along with the Derivative Works; or,
306+ within a display generated by the Derivative Works, if and
307+ wherever such third-party notices normally appear. The contents
308+ of the NOTICE file are for informational purposes only and
309+ do not modify the License. You may add Your own attribution
310+ notices within Derivative Works that You distribute, alongside
311+ or as an addendum to the NOTICE text from the Work, provided
312+ that such additional attribution notices cannot be construed
313+ as modifying the License.
314+
315+ You may add Your own copyright statement to Your modifications and
316+ may provide additional or different license terms and conditions
317+ for use, reproduction, or distribution of Your modifications, or
318+ for any such Derivative Works as a whole, provided Your use,
319+ reproduction, and distribution of the Work otherwise complies with
320+ the conditions stated in this License.
321+
322+ 5. Submission of Contributions. Unless You explicitly state otherwise,
323+ any Contribution intentionally submitted for inclusion in the Work
324+ by You to the Licensor shall be under the terms and conditions of
325+ this License, without any additional terms or conditions.
326+ Notwithstanding the above, nothing herein shall supersede or modify
327+ the terms of any separate license agreement you may have executed
328+ with Licensor regarding such Contributions.
329+
330+ 6. Trademarks. This License does not grant permission to use the trade
331+ names, trademarks, service marks, or product names of the Licensor,
332+ except as required for reasonable and customary use in describing the
333+ origin of the Work and reproducing the content of the NOTICE file.
334+
335+ 7. Disclaimer of Warranty. Unless required by applicable law or
336+ agreed to in writing, Licensor provides the Work (and each
337+ Contributor provides its Contributions) on an "AS IS" BASIS,
338+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
339+ implied, including, without limitation, any warranties or conditions
340+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
341+ PARTICULAR PURPOSE. You are solely responsible for determining the
342+ appropriateness of using or redistributing the Work and assume any
343+ risks associated with Your exercise of permissions under this License.
344+
345+ 8. Limitation of Liability. In no event and under no legal theory,
346+ whether in tort (including negligence), contract, or otherwise,
347+ unless required by applicable law (such as deliberate and grossly
348+ negligent acts) or agreed to in writing, shall any Contributor be
349+ liable to You for damages, including any direct, indirect, special,
350+ incidental, or consequential damages of any character arising as a
351+ result of this License or out of the use or inability to use the
352+ Work (including but not limited to damages for loss of goodwill,
353+ work stoppage, computer failure or malfunction, or any and all
354+ other commercial damages or losses), even if such Contributor
355+ has been advised of the possibility of such damages.
356+
357+ 9. Accepting Warranty or Additional Liability. While redistributing
358+ the Work or Derivative Works thereof, You may choose to offer,
359+ and charge a fee for, acceptance of support, warranty, indemnity,
360+ or other liability obligations and/or rights consistent with this
361+ License. However, in accepting such obligations, You may act only
362+ on Your own behalf and on Your sole responsibility, not on behalf
363+ of any other Contributor, and only if You agree to indemnify,
364+ defend, and hold each Contributor harmless for any liability
365+ incurred by, or claims asserted against, such Contributor by reason
366+ of your accepting any such warranty or additional liability.
367+
368+ END OF TERMS AND CONDITIONS
369+
370+ APPENDIX: How to apply the Apache License to your work.
371+
372+ To apply the Apache License to your work, attach the following
373+ boilerplate notice, with the fields enclosed by brackets "[]"
374+ replaced with your own identifying information. (Don't include
375+ the brackets!) The text should be enclosed in the appropriate
376+ comment syntax for the file format. We also recommend that a
377+ file or class name and description of purpose be included on the
378+ same "printed page" as the copyright notice for easier
379+ identification within third-party archives.
380+
381+ Copyright [yyyy] [name of copyright owner]
382+
383+ Licensed under the Apache License, Version 2.0 (the "License");
384+ you may not use this file except in compliance with the License.
385+ You may obtain a copy of the License at
386+
387+ http://www.apache.org/licenses/LICENSE-2.0
388+
389+ Unless required by applicable law or agreed to in writing, software
390+ distributed under the License is distributed on an "AS IS" BASIS,
391+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
392+ See the License for the specific language governing permissions and
393+ limitations under the License.
394+
395
396=== modified file 'build_release.sh'
397--- build_release.sh 2013-01-14 17:07:57 +0000
398+++ build_release.sh 2013-05-08 22:15:59 +0000
399@@ -1,26 +1,27 @@
400 #!/bin/bash
401 #
402-# Copyright © 2012 Akiban Technologies, Inc. All rights reserved.
403-#
404-# This program and the accompanying materials are made available
405-# under the terms of the Eclipse Public License v1.0 which
406-# accompanies this distribution, and is available at
407-# http://www.eclipse.org/legal/epl-v10.html
408-#
409-# This program may also be available under different license terms.
410-# For more information, see www.akiban.com or contact licensing@akiban.com.
411-#
412-# Contributors:
413-# Akiban Technologies, Inc.
414+# Copyright 2010-2013 Akiban Technologies, Inc.
415+#
416+# Licensed under the Apache License, Version 2.0 (the "License");
417+# you may not use this file except in compliance with the License.
418+# You may obtain a copy of the License at
419+#
420+# http://www.apache.org/licenses/LICENSE-2.0
421+#
422+# Unless required by applicable law or agreed to in writing, software
423+# distributed under the License is distributed on an "AS IS" BASIS,
424+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
425+# See the License for the specific language governing permissions and
426+# limitations under the License.
427 #
428
429 #
430 # Build build artifacts associated with a release
431 # - Bundles/packages
432-# - akiban-sql-parser-X.X.X.zip (binary, EPL)
433-# - akiban-sql-parser-X.X.X.tar.gz (binary, EPL)
434-# - akiban-sql-parser-X.X.X-source.zip (source, EPL)
435-# - akiban-sql-parser-X.X.X-source.tar.gz (source, EPL)
436+# - akiban-sql-parser-X.X.X.zip (binary, Apache)
437+# - akiban-sql-parser-X.X.X.tar.gz (binary, Apache)
438+# - akiban-sql-parser-X.X.X-source.zip (source, Apache)
439+# - akiban-sql-parser-X.X.X-source.tar.gz (source, Apache)
440 #
441
442 set -e
443
444=== modified file 'pom.xml'
445--- pom.xml 2013-05-08 22:15:59 +0000
446+++ pom.xml 2013-05-08 22:15:59 +0000
447@@ -22,8 +22,8 @@
448
449 <licenses>
450 <license>
451- <name>Eclipse Public License v1.0</name>
452- <url>http://www.eclipse.org/legal/epl-v10.html</url>
453+ <name>The Apache Software License, Version 2.0</name>
454+ <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
455 <distribution>repo</distribution>
456 </license>
457 </licenses>
458@@ -158,8 +158,8 @@
459 <headerSections>
460 <headerSection>
461 <key>__YEAR_SECTION__</key>
462- <defaultValue>2012</defaultValue>
463- <ensureMatch>20(11)\-2012|2012|2013</ensureMatch>
464+ <defaultValue>2013</defaultValue>
465+ <ensureMatch>20(11|12|13)\-2013|2013</ensureMatch>
466 </headerSection>
467 </headerSections>
468 <strictCheck>true</strictCheck>
469
470=== modified file 'src/etc/header.txt'
471--- src/etc/header.txt 2012-11-07 17:13:18 +0000
472+++ src/etc/header.txt 2013-05-08 22:15:59 +0000
473@@ -1,14 +1,13 @@
474-Copyright © __YEAR_SECTION__ Akiban Technologies, Inc. All rights
475-reserved.
476-
477-This program and the accompanying materials are made available
478-under the terms of the Eclipse Public License v1.0 which
479-accompanies this distribution, and is available at
480-http://www.eclipse.org/legal/epl-v10.html
481-
482-This program may also be available under different license terms.
483-For more information, see www.akiban.com or contact
484-licensing@akiban.com.
485-
486-Contributors:
487-Akiban Technologies, Inc.
488+Copyright __YEAR_SECTION__ Akiban Technologies, Inc.
489+
490+Licensed under the Apache License, Version 2.0 (the "License");
491+you may not use this file except in compliance with the License.
492+You may obtain a copy of the License at
493+
494+ http://www.apache.org/licenses/LICENSE-2.0
495+
496+Unless required by applicable law or agreed to in writing, software
497+distributed under the License is distributed on an "AS IS" BASIS,
498+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
499+See the License for the specific language governing permissions and
500+limitations under the License.
501
502=== modified file 'src/main/java/com/akiban/sql/IncomparableException.java'
503--- src/main/java/com/akiban/sql/IncomparableException.java 2012-11-07 17:49:31 +0000
504+++ src/main/java/com/akiban/sql/IncomparableException.java 2013-05-08 22:15:59 +0000
505@@ -1,18 +1,17 @@
506 /**
507- * Copyright © 2012 Akiban Technologies, Inc. All rights
508- * reserved.
509- *
510- * This program and the accompanying materials are made available
511- * under the terms of the Eclipse Public License v1.0 which
512- * accompanies this distribution, and is available at
513- * http://www.eclipse.org/legal/epl-v10.html
514- *
515- * This program may also be available under different license terms.
516- * For more information, see www.akiban.com or contact
517- * licensing@akiban.com.
518- *
519- * Contributors:
520- * Akiban Technologies, Inc.
521+ * Copyright 2011-2013 Akiban Technologies, Inc.
522+ *
523+ * Licensed under the Apache License, Version 2.0 (the "License");
524+ * you may not use this file except in compliance with the License.
525+ * You may obtain a copy of the License at
526+ *
527+ * http://www.apache.org/licenses/LICENSE-2.0
528+ *
529+ * Unless required by applicable law or agreed to in writing, software
530+ * distributed under the License is distributed on an "AS IS" BASIS,
531+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
532+ * See the License for the specific language governing permissions and
533+ * limitations under the License.
534 */
535
536 package com.akiban.sql;
537
538=== modified file 'src/main/java/com/akiban/sql/StandardException.java'
539--- src/main/java/com/akiban/sql/StandardException.java 2012-11-07 17:49:31 +0000
540+++ src/main/java/com/akiban/sql/StandardException.java 2013-05-08 22:15:59 +0000
541@@ -1,18 +1,17 @@
542 /**
543- * Copyright © 2012 Akiban Technologies, Inc. All rights
544- * reserved.
545- *
546- * This program and the accompanying materials are made available
547- * under the terms of the Eclipse Public License v1.0 which
548- * accompanies this distribution, and is available at
549- * http://www.eclipse.org/legal/epl-v10.html
550- *
551- * This program may also be available under different license terms.
552- * For more information, see www.akiban.com or contact
553- * licensing@akiban.com.
554- *
555- * Contributors:
556- * Akiban Technologies, Inc.
557+ * Copyright 2011-2013 Akiban Technologies, Inc.
558+ *
559+ * Licensed under the Apache License, Version 2.0 (the "License");
560+ * you may not use this file except in compliance with the License.
561+ * You may obtain a copy of the License at
562+ *
563+ * http://www.apache.org/licenses/LICENSE-2.0
564+ *
565+ * Unless required by applicable law or agreed to in writing, software
566+ * distributed under the License is distributed on an "AS IS" BASIS,
567+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
568+ * See the License for the specific language governing permissions and
569+ * limitations under the License.
570 */
571
572 /**
573@@ -20,20 +19,6 @@
574 *
575 */
576
577-/* Copyright (C) 2011 Akiban Technologies Inc.
578- * This program is free software: you can redistribute it and/or modify
579- * it under the terms of the GNU Affero General Public License, version 3,
580- * as published by the Free Software Foundation.
581- *
582- * This program is distributed in the hope that it will be useful,
583- * but WITHOUT ANY WARRANTY; without even the implied warranty of
584- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
585- * GNU Affero General Public License for more details.
586- *
587- * You should have received a copy of the GNU Affero General Public License
588- * along with this program. If not, see <http://www.gnu.org/licenses/>.
589-*/
590-
591 // TODO: The Derby exception handling coordinated localized messages
592 // and SQLSTATE values, which will be needed, but in the context of
593 // the new engine.
594
595=== modified file 'src/main/java/com/akiban/sql/compiler/BitTypeCompiler.java'
596--- src/main/java/com/akiban/sql/compiler/BitTypeCompiler.java 2012-11-08 20:15:40 +0000
597+++ src/main/java/com/akiban/sql/compiler/BitTypeCompiler.java 2013-05-08 22:15:59 +0000
598@@ -1,18 +1,17 @@
599 /**
600- * Copyright © 2012 Akiban Technologies, Inc. All rights
601- * reserved.
602- *
603- * This program and the accompanying materials are made available
604- * under the terms of the Eclipse Public License v1.0 which
605- * accompanies this distribution, and is available at
606- * http://www.eclipse.org/legal/epl-v10.html
607- *
608- * This program may also be available under different license terms.
609- * For more information, see www.akiban.com or contact
610- * licensing@akiban.com.
611- *
612- * Contributors:
613- * Akiban Technologies, Inc.
614+ * Copyright 2011-2013 Akiban Technologies, Inc.
615+ *
616+ * Licensed under the Apache License, Version 2.0 (the "License");
617+ * you may not use this file except in compliance with the License.
618+ * You may obtain a copy of the License at
619+ *
620+ * http://www.apache.org/licenses/LICENSE-2.0
621+ *
622+ * Unless required by applicable law or agreed to in writing, software
623+ * distributed under the License is distributed on an "AS IS" BASIS,
624+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
625+ * See the License for the specific language governing permissions and
626+ * limitations under the License.
627 */
628
629 /* The original from which this derives bore the following: */
630
631=== modified file 'src/main/java/com/akiban/sql/compiler/BooleanNormalizer.java'
632--- src/main/java/com/akiban/sql/compiler/BooleanNormalizer.java 2012-11-08 20:15:40 +0000
633+++ src/main/java/com/akiban/sql/compiler/BooleanNormalizer.java 2013-05-08 22:15:59 +0000
634@@ -1,18 +1,17 @@
635 /**
636- * Copyright © 2012 Akiban Technologies, Inc. All rights
637- * reserved.
638- *
639- * This program and the accompanying materials are made available
640- * under the terms of the Eclipse Public License v1.0 which
641- * accompanies this distribution, and is available at
642- * http://www.eclipse.org/legal/epl-v10.html
643- *
644- * This program may also be available under different license terms.
645- * For more information, see www.akiban.com or contact
646- * licensing@akiban.com.
647- *
648- * Contributors:
649- * Akiban Technologies, Inc.
650+ * Copyright 2011-2013 Akiban Technologies, Inc.
651+ *
652+ * Licensed under the Apache License, Version 2.0 (the "License");
653+ * you may not use this file except in compliance with the License.
654+ * You may obtain a copy of the License at
655+ *
656+ * http://www.apache.org/licenses/LICENSE-2.0
657+ *
658+ * Unless required by applicable law or agreed to in writing, software
659+ * distributed under the License is distributed on an "AS IS" BASIS,
660+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
661+ * See the License for the specific language governing permissions and
662+ * limitations under the License.
663 */
664
665 /* The original from which this derives bore the following: */
666
667=== modified file 'src/main/java/com/akiban/sql/compiler/BooleanTypeCompiler.java'
668--- src/main/java/com/akiban/sql/compiler/BooleanTypeCompiler.java 2012-11-07 18:55:29 +0000
669+++ src/main/java/com/akiban/sql/compiler/BooleanTypeCompiler.java 2013-05-08 22:15:59 +0000
670@@ -1,18 +1,17 @@
671 /**
672- * Copyright © 2012 Akiban Technologies, Inc. All rights
673- * reserved.
674- *
675- * This program and the accompanying materials are made available
676- * under the terms of the Eclipse Public License v1.0 which
677- * accompanies this distribution, and is available at
678- * http://www.eclipse.org/legal/epl-v10.html
679- *
680- * This program may also be available under different license terms.
681- * For more information, see www.akiban.com or contact
682- * licensing@akiban.com.
683- *
684- * Contributors:
685- * Akiban Technologies, Inc.
686+ * Copyright 2011-2013 Akiban Technologies, Inc.
687+ *
688+ * Licensed under the Apache License, Version 2.0 (the "License");
689+ * you may not use this file except in compliance with the License.
690+ * You may obtain a copy of the License at
691+ *
692+ * http://www.apache.org/licenses/LICENSE-2.0
693+ *
694+ * Unless required by applicable law or agreed to in writing, software
695+ * distributed under the License is distributed on an "AS IS" BASIS,
696+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
697+ * See the License for the specific language governing permissions and
698+ * limitations under the License.
699 */
700
701 /* The original from which this derives bore the following: */
702
703=== modified file 'src/main/java/com/akiban/sql/compiler/CLOBTypeCompiler.java'
704--- src/main/java/com/akiban/sql/compiler/CLOBTypeCompiler.java 2012-11-07 17:49:31 +0000
705+++ src/main/java/com/akiban/sql/compiler/CLOBTypeCompiler.java 2013-05-08 22:15:59 +0000
706@@ -1,18 +1,17 @@
707 /**
708- * Copyright © 2012 Akiban Technologies, Inc. All rights
709- * reserved.
710- *
711- * This program and the accompanying materials are made available
712- * under the terms of the Eclipse Public License v1.0 which
713- * accompanies this distribution, and is available at
714- * http://www.eclipse.org/legal/epl-v10.html
715- *
716- * This program may also be available under different license terms.
717- * For more information, see www.akiban.com or contact
718- * licensing@akiban.com.
719- *
720- * Contributors:
721- * Akiban Technologies, Inc.
722+ * Copyright 2011-2013 Akiban Technologies, Inc.
723+ *
724+ * Licensed under the Apache License, Version 2.0 (the "License");
725+ * you may not use this file except in compliance with the License.
726+ * You may obtain a copy of the License at
727+ *
728+ * http://www.apache.org/licenses/LICENSE-2.0
729+ *
730+ * Unless required by applicable law or agreed to in writing, software
731+ * distributed under the License is distributed on an "AS IS" BASIS,
732+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
733+ * See the License for the specific language governing permissions and
734+ * limitations under the License.
735 */
736
737 /* The original from which this derives bore the following: */
738
739=== modified file 'src/main/java/com/akiban/sql/compiler/CharTypeCompiler.java'
740--- src/main/java/com/akiban/sql/compiler/CharTypeCompiler.java 2012-11-07 17:49:31 +0000
741+++ src/main/java/com/akiban/sql/compiler/CharTypeCompiler.java 2013-05-08 22:15:59 +0000
742@@ -1,18 +1,17 @@
743 /**
744- * Copyright © 2012 Akiban Technologies, Inc. All rights
745- * reserved.
746- *
747- * This program and the accompanying materials are made available
748- * under the terms of the Eclipse Public License v1.0 which
749- * accompanies this distribution, and is available at
750- * http://www.eclipse.org/legal/epl-v10.html
751- *
752- * This program may also be available under different license terms.
753- * For more information, see www.akiban.com or contact
754- * licensing@akiban.com.
755- *
756- * Contributors:
757- * Akiban Technologies, Inc.
758+ * Copyright 2011-2013 Akiban Technologies, Inc.
759+ *
760+ * Licensed under the Apache License, Version 2.0 (the "License");
761+ * you may not use this file except in compliance with the License.
762+ * You may obtain a copy of the License at
763+ *
764+ * http://www.apache.org/licenses/LICENSE-2.0
765+ *
766+ * Unless required by applicable law or agreed to in writing, software
767+ * distributed under the License is distributed on an "AS IS" BASIS,
768+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
769+ * See the License for the specific language governing permissions and
770+ * limitations under the License.
771 */
772
773 /* The original from which this derives bore the following: */
774
775=== modified file 'src/main/java/com/akiban/sql/compiler/DateTypeCompiler.java'
776--- src/main/java/com/akiban/sql/compiler/DateTypeCompiler.java 2012-11-07 17:49:31 +0000
777+++ src/main/java/com/akiban/sql/compiler/DateTypeCompiler.java 2013-05-08 22:15:59 +0000
778@@ -1,18 +1,17 @@
779 /**
780- * Copyright © 2012 Akiban Technologies, Inc. All rights
781- * reserved.
782- *
783- * This program and the accompanying materials are made available
784- * under the terms of the Eclipse Public License v1.0 which
785- * accompanies this distribution, and is available at
786- * http://www.eclipse.org/legal/epl-v10.html
787- *
788- * This program may also be available under different license terms.
789- * For more information, see www.akiban.com or contact
790- * licensing@akiban.com.
791- *
792- * Contributors:
793- * Akiban Technologies, Inc.
794+ * Copyright 2011-2013 Akiban Technologies, Inc.
795+ *
796+ * Licensed under the Apache License, Version 2.0 (the "License");
797+ * you may not use this file except in compliance with the License.
798+ * You may obtain a copy of the License at
799+ *
800+ * http://www.apache.org/licenses/LICENSE-2.0
801+ *
802+ * Unless required by applicable law or agreed to in writing, software
803+ * distributed under the License is distributed on an "AS IS" BASIS,
804+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
805+ * See the License for the specific language governing permissions and
806+ * limitations under the License.
807 */
808
809 /* The original from which this derives bore the following: */
810
811=== modified file 'src/main/java/com/akiban/sql/compiler/IntervalTypeCompiler.java'
812--- src/main/java/com/akiban/sql/compiler/IntervalTypeCompiler.java 2012-11-07 17:49:31 +0000
813+++ src/main/java/com/akiban/sql/compiler/IntervalTypeCompiler.java 2013-05-08 22:15:59 +0000
814@@ -1,18 +1,17 @@
815 /**
816- * Copyright © 2012 Akiban Technologies, Inc. All rights
817- * reserved.
818- *
819- * This program and the accompanying materials are made available
820- * under the terms of the Eclipse Public License v1.0 which
821- * accompanies this distribution, and is available at
822- * http://www.eclipse.org/legal/epl-v10.html
823- *
824- * This program may also be available under different license terms.
825- * For more information, see www.akiban.com or contact
826- * licensing@akiban.com.
827- *
828- * Contributors:
829- * Akiban Technologies, Inc.
830+ * Copyright 2011-2013 Akiban Technologies, Inc.
831+ *
832+ * Licensed under the Apache License, Version 2.0 (the "License");
833+ * you may not use this file except in compliance with the License.
834+ * You may obtain a copy of the License at
835+ *
836+ * http://www.apache.org/licenses/LICENSE-2.0
837+ *
838+ * Unless required by applicable law or agreed to in writing, software
839+ * distributed under the License is distributed on an "AS IS" BASIS,
840+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
841+ * See the License for the specific language governing permissions and
842+ * limitations under the License.
843 */
844
845 package com.akiban.sql.compiler;
846
847=== modified file 'src/main/java/com/akiban/sql/compiler/LOBTypeCompiler.java'
848--- src/main/java/com/akiban/sql/compiler/LOBTypeCompiler.java 2012-11-07 17:49:31 +0000
849+++ src/main/java/com/akiban/sql/compiler/LOBTypeCompiler.java 2013-05-08 22:15:59 +0000
850@@ -1,18 +1,17 @@
851 /**
852- * Copyright © 2012 Akiban Technologies, Inc. All rights
853- * reserved.
854- *
855- * This program and the accompanying materials are made available
856- * under the terms of the Eclipse Public License v1.0 which
857- * accompanies this distribution, and is available at
858- * http://www.eclipse.org/legal/epl-v10.html
859- *
860- * This program may also be available under different license terms.
861- * For more information, see www.akiban.com or contact
862- * licensing@akiban.com.
863- *
864- * Contributors:
865- * Akiban Technologies, Inc.
866+ * Copyright 2011-2013 Akiban Technologies, Inc.
867+ *
868+ * Licensed under the Apache License, Version 2.0 (the "License");
869+ * you may not use this file except in compliance with the License.
870+ * You may obtain a copy of the License at
871+ *
872+ * http://www.apache.org/licenses/LICENSE-2.0
873+ *
874+ * Unless required by applicable law or agreed to in writing, software
875+ * distributed under the License is distributed on an "AS IS" BASIS,
876+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
877+ * See the License for the specific language governing permissions and
878+ * limitations under the License.
879 */
880
881 /* The original from which this derives bore the following: */
882
883=== modified file 'src/main/java/com/akiban/sql/compiler/NumericTypeCompiler.java'
884--- src/main/java/com/akiban/sql/compiler/NumericTypeCompiler.java 2012-11-07 17:49:31 +0000
885+++ src/main/java/com/akiban/sql/compiler/NumericTypeCompiler.java 2013-05-08 22:15:59 +0000
886@@ -1,18 +1,17 @@
887 /**
888- * Copyright © 2012 Akiban Technologies, Inc. All rights
889- * reserved.
890- *
891- * This program and the accompanying materials are made available
892- * under the terms of the Eclipse Public License v1.0 which
893- * accompanies this distribution, and is available at
894- * http://www.eclipse.org/legal/epl-v10.html
895- *
896- * This program may also be available under different license terms.
897- * For more information, see www.akiban.com or contact
898- * licensing@akiban.com.
899- *
900- * Contributors:
901- * Akiban Technologies, Inc.
902+ * Copyright 2011-2013 Akiban Technologies, Inc.
903+ *
904+ * Licensed under the Apache License, Version 2.0 (the "License");
905+ * you may not use this file except in compliance with the License.
906+ * You may obtain a copy of the License at
907+ *
908+ * http://www.apache.org/licenses/LICENSE-2.0
909+ *
910+ * Unless required by applicable law or agreed to in writing, software
911+ * distributed under the License is distributed on an "AS IS" BASIS,
912+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
913+ * See the License for the specific language governing permissions and
914+ * limitations under the License.
915 */
916
917 /* The original from which this derives bore the following: */
918
919=== modified file 'src/main/java/com/akiban/sql/compiler/RefTypeCompiler.java'
920--- src/main/java/com/akiban/sql/compiler/RefTypeCompiler.java 2012-11-07 17:49:31 +0000
921+++ src/main/java/com/akiban/sql/compiler/RefTypeCompiler.java 2013-05-08 22:15:59 +0000
922@@ -1,18 +1,17 @@
923 /**
924- * Copyright © 2012 Akiban Technologies, Inc. All rights
925- * reserved.
926- *
927- * This program and the accompanying materials are made available
928- * under the terms of the Eclipse Public License v1.0 which
929- * accompanies this distribution, and is available at
930- * http://www.eclipse.org/legal/epl-v10.html
931- *
932- * This program may also be available under different license terms.
933- * For more information, see www.akiban.com or contact
934- * licensing@akiban.com.
935- *
936- * Contributors:
937- * Akiban Technologies, Inc.
938+ * Copyright 2011-2013 Akiban Technologies, Inc.
939+ *
940+ * Licensed under the Apache License, Version 2.0 (the "License");
941+ * you may not use this file except in compliance with the License.
942+ * You may obtain a copy of the License at
943+ *
944+ * http://www.apache.org/licenses/LICENSE-2.0
945+ *
946+ * Unless required by applicable law or agreed to in writing, software
947+ * distributed under the License is distributed on an "AS IS" BASIS,
948+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
949+ * See the License for the specific language governing permissions and
950+ * limitations under the License.
951 */
952
953 /* The original from which this derives bore the following: */
954
955=== modified file 'src/main/java/com/akiban/sql/compiler/TimeTypeCompiler.java'
956--- src/main/java/com/akiban/sql/compiler/TimeTypeCompiler.java 2012-11-07 17:49:31 +0000
957+++ src/main/java/com/akiban/sql/compiler/TimeTypeCompiler.java 2013-05-08 22:15:59 +0000
958@@ -1,18 +1,17 @@
959 /**
960- * Copyright © 2012 Akiban Technologies, Inc. All rights
961- * reserved.
962- *
963- * This program and the accompanying materials are made available
964- * under the terms of the Eclipse Public License v1.0 which
965- * accompanies this distribution, and is available at
966- * http://www.eclipse.org/legal/epl-v10.html
967- *
968- * This program may also be available under different license terms.
969- * For more information, see www.akiban.com or contact
970- * licensing@akiban.com.
971- *
972- * Contributors:
973- * Akiban Technologies, Inc.
974+ * Copyright 2011-2013 Akiban Technologies, Inc.
975+ *
976+ * Licensed under the Apache License, Version 2.0 (the "License");
977+ * you may not use this file except in compliance with the License.
978+ * You may obtain a copy of the License at
979+ *
980+ * http://www.apache.org/licenses/LICENSE-2.0
981+ *
982+ * Unless required by applicable law or agreed to in writing, software
983+ * distributed under the License is distributed on an "AS IS" BASIS,
984+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
985+ * See the License for the specific language governing permissions and
986+ * limitations under the License.
987 */
988
989 /* The original from which this derives bore the following: */
990
991=== modified file 'src/main/java/com/akiban/sql/compiler/TimestampTypeCompiler.java'
992--- src/main/java/com/akiban/sql/compiler/TimestampTypeCompiler.java 2012-11-07 17:49:31 +0000
993+++ src/main/java/com/akiban/sql/compiler/TimestampTypeCompiler.java 2013-05-08 22:15:59 +0000
994@@ -1,18 +1,17 @@
995 /**
996- * Copyright © 2012 Akiban Technologies, Inc. All rights
997- * reserved.
998- *
999- * This program and the accompanying materials are made available
1000- * under the terms of the Eclipse Public License v1.0 which
1001- * accompanies this distribution, and is available at
1002- * http://www.eclipse.org/legal/epl-v10.html
1003- *
1004- * This program may also be available under different license terms.
1005- * For more information, see www.akiban.com or contact
1006- * licensing@akiban.com.
1007- *
1008- * Contributors:
1009- * Akiban Technologies, Inc.
1010+ * Copyright 2011-2013 Akiban Technologies, Inc.
1011+ *
1012+ * Licensed under the Apache License, Version 2.0 (the "License");
1013+ * you may not use this file except in compliance with the License.
1014+ * You may obtain a copy of the License at
1015+ *
1016+ * http://www.apache.org/licenses/LICENSE-2.0
1017+ *
1018+ * Unless required by applicable law or agreed to in writing, software
1019+ * distributed under the License is distributed on an "AS IS" BASIS,
1020+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1021+ * See the License for the specific language governing permissions and
1022+ * limitations under the License.
1023 */
1024
1025 /* The original from which this derives bore the following: */
1026
1027=== modified file 'src/main/java/com/akiban/sql/compiler/TypeCompiler.java'
1028--- src/main/java/com/akiban/sql/compiler/TypeCompiler.java 2012-11-07 17:49:31 +0000
1029+++ src/main/java/com/akiban/sql/compiler/TypeCompiler.java 2013-05-08 22:15:59 +0000
1030@@ -1,18 +1,17 @@
1031 /**
1032- * Copyright © 2012 Akiban Technologies, Inc. All rights
1033- * reserved.
1034- *
1035- * This program and the accompanying materials are made available
1036- * under the terms of the Eclipse Public License v1.0 which
1037- * accompanies this distribution, and is available at
1038- * http://www.eclipse.org/legal/epl-v10.html
1039- *
1040- * This program may also be available under different license terms.
1041- * For more information, see www.akiban.com or contact
1042- * licensing@akiban.com.
1043- *
1044- * Contributors:
1045- * Akiban Technologies, Inc.
1046+ * Copyright 2011-2013 Akiban Technologies, Inc.
1047+ *
1048+ * Licensed under the Apache License, Version 2.0 (the "License");
1049+ * you may not use this file except in compliance with the License.
1050+ * You may obtain a copy of the License at
1051+ *
1052+ * http://www.apache.org/licenses/LICENSE-2.0
1053+ *
1054+ * Unless required by applicable law or agreed to in writing, software
1055+ * distributed under the License is distributed on an "AS IS" BASIS,
1056+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1057+ * See the License for the specific language governing permissions and
1058+ * limitations under the License.
1059 */
1060
1061 /* The original from which this derives bore the following: */
1062
1063=== modified file 'src/main/java/com/akiban/sql/compiler/TypeComputer.java'
1064--- src/main/java/com/akiban/sql/compiler/TypeComputer.java 2012-11-07 17:49:31 +0000
1065+++ src/main/java/com/akiban/sql/compiler/TypeComputer.java 2013-05-08 22:15:59 +0000
1066@@ -1,18 +1,17 @@
1067 /**
1068- * Copyright © 2012 Akiban Technologies, Inc. All rights
1069- * reserved.
1070- *
1071- * This program and the accompanying materials are made available
1072- * under the terms of the Eclipse Public License v1.0 which
1073- * accompanies this distribution, and is available at
1074- * http://www.eclipse.org/legal/epl-v10.html
1075- *
1076- * This program may also be available under different license terms.
1077- * For more information, see www.akiban.com or contact
1078- * licensing@akiban.com.
1079- *
1080- * Contributors:
1081- * Akiban Technologies, Inc.
1082+ * Copyright 2011-2013 Akiban Technologies, Inc.
1083+ *
1084+ * Licensed under the Apache License, Version 2.0 (the "License");
1085+ * you may not use this file except in compliance with the License.
1086+ * You may obtain a copy of the License at
1087+ *
1088+ * http://www.apache.org/licenses/LICENSE-2.0
1089+ *
1090+ * Unless required by applicable law or agreed to in writing, software
1091+ * distributed under the License is distributed on an "AS IS" BASIS,
1092+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1093+ * See the License for the specific language governing permissions and
1094+ * limitations under the License.
1095 */
1096
1097 package com.akiban.sql.compiler;
1098
1099=== modified file 'src/main/java/com/akiban/sql/compiler/UserDefinedTypeCompiler.java'
1100--- src/main/java/com/akiban/sql/compiler/UserDefinedTypeCompiler.java 2012-11-07 17:49:31 +0000
1101+++ src/main/java/com/akiban/sql/compiler/UserDefinedTypeCompiler.java 2013-05-08 22:15:59 +0000
1102@@ -1,18 +1,17 @@
1103 /**
1104- * Copyright © 2012 Akiban Technologies, Inc. All rights
1105- * reserved.
1106- *
1107- * This program and the accompanying materials are made available
1108- * under the terms of the Eclipse Public License v1.0 which
1109- * accompanies this distribution, and is available at
1110- * http://www.eclipse.org/legal/epl-v10.html
1111- *
1112- * This program may also be available under different license terms.
1113- * For more information, see www.akiban.com or contact
1114- * licensing@akiban.com.
1115- *
1116- * Contributors:
1117- * Akiban Technologies, Inc.
1118+ * Copyright 2011-2013 Akiban Technologies, Inc.
1119+ *
1120+ * Licensed under the Apache License, Version 2.0 (the "License");
1121+ * you may not use this file except in compliance with the License.
1122+ * You may obtain a copy of the License at
1123+ *
1124+ * http://www.apache.org/licenses/LICENSE-2.0
1125+ *
1126+ * Unless required by applicable law or agreed to in writing, software
1127+ * distributed under the License is distributed on an "AS IS" BASIS,
1128+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1129+ * See the License for the specific language governing permissions and
1130+ * limitations under the License.
1131 */
1132
1133 /* The original from which this derives bore the following: */
1134
1135=== modified file 'src/main/java/com/akiban/sql/compiler/XMLTypeCompiler.java'
1136--- src/main/java/com/akiban/sql/compiler/XMLTypeCompiler.java 2012-11-07 17:49:31 +0000
1137+++ src/main/java/com/akiban/sql/compiler/XMLTypeCompiler.java 2013-05-08 22:15:59 +0000
1138@@ -1,18 +1,17 @@
1139 /**
1140- * Copyright © 2012 Akiban Technologies, Inc. All rights
1141- * reserved.
1142- *
1143- * This program and the accompanying materials are made available
1144- * under the terms of the Eclipse Public License v1.0 which
1145- * accompanies this distribution, and is available at
1146- * http://www.eclipse.org/legal/epl-v10.html
1147- *
1148- * This program may also be available under different license terms.
1149- * For more information, see www.akiban.com or contact
1150- * licensing@akiban.com.
1151- *
1152- * Contributors:
1153- * Akiban Technologies, Inc.
1154+ * Copyright 2011-2013 Akiban Technologies, Inc.
1155+ *
1156+ * Licensed under the Apache License, Version 2.0 (the "License");
1157+ * you may not use this file except in compliance with the License.
1158+ * You may obtain a copy of the License at
1159+ *
1160+ * http://www.apache.org/licenses/LICENSE-2.0
1161+ *
1162+ * Unless required by applicable law or agreed to in writing, software
1163+ * distributed under the License is distributed on an "AS IS" BASIS,
1164+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1165+ * See the License for the specific language governing permissions and
1166+ * limitations under the License.
1167 */
1168
1169 /* The original from which this derives bore the following: */
1170
1171=== modified file 'src/main/java/com/akiban/sql/parser/ASTVisitor.java'
1172--- src/main/java/com/akiban/sql/parser/ASTVisitor.java 2012-11-07 17:49:31 +0000
1173+++ src/main/java/com/akiban/sql/parser/ASTVisitor.java 2013-05-08 22:15:59 +0000
1174@@ -1,19 +1,18 @@
1175-/**
1176- * Copyright © 2012 Akiban Technologies, Inc. All rights
1177- * reserved.
1178- *
1179- * This program and the accompanying materials are made available
1180- * under the terms of the Eclipse Public License v1.0 which
1181- * accompanies this distribution, and is available at
1182- * http://www.eclipse.org/legal/epl-v10.html
1183- *
1184- * This program may also be available under different license terms.
1185- * For more information, see www.akiban.com or contact
1186- * licensing@akiban.com.
1187- *
1188- * Contributors:
1189- * Akiban Technologies, Inc.
1190- */
1191+/**
1192+ * Copyright 2011-2013 Akiban Technologies, Inc.
1193+ *
1194+ * Licensed under the Apache License, Version 2.0 (the "License");
1195+ * you may not use this file except in compliance with the License.
1196+ * You may obtain a copy of the License at
1197+ *
1198+ * http://www.apache.org/licenses/LICENSE-2.0
1199+ *
1200+ * Unless required by applicable law or agreed to in writing, software
1201+ * distributed under the License is distributed on an "AS IS" BASIS,
1202+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1203+ * See the License for the specific language governing permissions and
1204+ * limitations under the License.
1205+ */
1206
1207 /* The original from which this derives bore the following: */
1208
1209
1210=== modified file 'src/main/java/com/akiban/sql/parser/AccessMode.java'
1211--- src/main/java/com/akiban/sql/parser/AccessMode.java 2012-11-07 17:49:31 +0000
1212+++ src/main/java/com/akiban/sql/parser/AccessMode.java 2013-05-08 22:15:59 +0000
1213@@ -1,18 +1,17 @@
1214 /**
1215- * Copyright © 2012 Akiban Technologies, Inc. All rights
1216- * reserved.
1217- *
1218- * This program and the accompanying materials are made available
1219- * under the terms of the Eclipse Public License v1.0 which
1220- * accompanies this distribution, and is available at
1221- * http://www.eclipse.org/legal/epl-v10.html
1222- *
1223- * This program may also be available under different license terms.
1224- * For more information, see www.akiban.com or contact
1225- * licensing@akiban.com.
1226- *
1227- * Contributors:
1228- * Akiban Technologies, Inc.
1229+ * Copyright 2011-2013 Akiban Technologies, Inc.
1230+ *
1231+ * Licensed under the Apache License, Version 2.0 (the "License");
1232+ * you may not use this file except in compliance with the License.
1233+ * You may obtain a copy of the License at
1234+ *
1235+ * http://www.apache.org/licenses/LICENSE-2.0
1236+ *
1237+ * Unless required by applicable law or agreed to in writing, software
1238+ * distributed under the License is distributed on an "AS IS" BASIS,
1239+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1240+ * See the License for the specific language governing permissions and
1241+ * limitations under the License.
1242 */
1243
1244 /**
1245
1246=== modified file 'src/main/java/com/akiban/sql/parser/AggregateNode.java'
1247--- src/main/java/com/akiban/sql/parser/AggregateNode.java 2012-11-07 17:49:31 +0000
1248+++ src/main/java/com/akiban/sql/parser/AggregateNode.java 2013-05-08 22:15:59 +0000
1249@@ -1,18 +1,17 @@
1250 /**
1251- * Copyright © 2012 Akiban Technologies, Inc. All rights
1252- * reserved.
1253- *
1254- * This program and the accompanying materials are made available
1255- * under the terms of the Eclipse Public License v1.0 which
1256- * accompanies this distribution, and is available at
1257- * http://www.eclipse.org/legal/epl-v10.html
1258- *
1259- * This program may also be available under different license terms.
1260- * For more information, see www.akiban.com or contact
1261- * licensing@akiban.com.
1262- *
1263- * Contributors:
1264- * Akiban Technologies, Inc.
1265+ * Copyright 2011-2013 Akiban Technologies, Inc.
1266+ *
1267+ * Licensed under the Apache License, Version 2.0 (the "License");
1268+ * you may not use this file except in compliance with the License.
1269+ * You may obtain a copy of the License at
1270+ *
1271+ * http://www.apache.org/licenses/LICENSE-2.0
1272+ *
1273+ * Unless required by applicable law or agreed to in writing, software
1274+ * distributed under the License is distributed on an "AS IS" BASIS,
1275+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1276+ * See the License for the specific language governing permissions and
1277+ * limitations under the License.
1278 */
1279
1280 /* The original from which this derives bore the following: */
1281
1282=== modified file 'src/main/java/com/akiban/sql/parser/AggregateWindowFunctionNode.java'
1283--- src/main/java/com/akiban/sql/parser/AggregateWindowFunctionNode.java 2012-11-07 17:49:31 +0000
1284+++ src/main/java/com/akiban/sql/parser/AggregateWindowFunctionNode.java 2013-05-08 22:15:59 +0000
1285@@ -1,18 +1,17 @@
1286 /**
1287- * Copyright © 2012 Akiban Technologies, Inc. All rights
1288- * reserved.
1289- *
1290- * This program and the accompanying materials are made available
1291- * under the terms of the Eclipse Public License v1.0 which
1292- * accompanies this distribution, and is available at
1293- * http://www.eclipse.org/legal/epl-v10.html
1294- *
1295- * This program may also be available under different license terms.
1296- * For more information, see www.akiban.com or contact
1297- * licensing@akiban.com.
1298- *
1299- * Contributors:
1300- * Akiban Technologies, Inc.
1301+ * Copyright 2011-2013 Akiban Technologies, Inc.
1302+ *
1303+ * Licensed under the Apache License, Version 2.0 (the "License");
1304+ * you may not use this file except in compliance with the License.
1305+ * You may obtain a copy of the License at
1306+ *
1307+ * http://www.apache.org/licenses/LICENSE-2.0
1308+ *
1309+ * Unless required by applicable law or agreed to in writing, software
1310+ * distributed under the License is distributed on an "AS IS" BASIS,
1311+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1312+ * See the License for the specific language governing permissions and
1313+ * limitations under the License.
1314 */
1315
1316 /* The original from which this derives bore the following: */
1317
1318=== modified file 'src/main/java/com/akiban/sql/parser/AllResultColumn.java'
1319--- src/main/java/com/akiban/sql/parser/AllResultColumn.java 2012-11-07 17:49:31 +0000
1320+++ src/main/java/com/akiban/sql/parser/AllResultColumn.java 2013-05-08 22:15:59 +0000
1321@@ -1,18 +1,17 @@
1322 /**
1323- * Copyright © 2012 Akiban Technologies, Inc. All rights
1324- * reserved.
1325- *
1326- * This program and the accompanying materials are made available
1327- * under the terms of the Eclipse Public License v1.0 which
1328- * accompanies this distribution, and is available at
1329- * http://www.eclipse.org/legal/epl-v10.html
1330- *
1331- * This program may also be available under different license terms.
1332- * For more information, see www.akiban.com or contact
1333- * licensing@akiban.com.
1334- *
1335- * Contributors:
1336- * Akiban Technologies, Inc.
1337+ * Copyright 2011-2013 Akiban Technologies, Inc.
1338+ *
1339+ * Licensed under the Apache License, Version 2.0 (the "License");
1340+ * you may not use this file except in compliance with the License.
1341+ * You may obtain a copy of the License at
1342+ *
1343+ * http://www.apache.org/licenses/LICENSE-2.0
1344+ *
1345+ * Unless required by applicable law or agreed to in writing, software
1346+ * distributed under the License is distributed on an "AS IS" BASIS,
1347+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1348+ * See the License for the specific language governing permissions and
1349+ * limitations under the License.
1350 */
1351
1352 /* The original from which this derives bore the following: */
1353
1354=== modified file 'src/main/java/com/akiban/sql/parser/AlterAddIndexNode.java'
1355--- src/main/java/com/akiban/sql/parser/AlterAddIndexNode.java 2012-11-07 17:49:31 +0000
1356+++ src/main/java/com/akiban/sql/parser/AlterAddIndexNode.java 2013-05-08 22:15:59 +0000
1357@@ -1,18 +1,17 @@
1358 /**
1359- * Copyright © 2012 Akiban Technologies, Inc. All rights
1360- * reserved.
1361- *
1362- * This program and the accompanying materials are made available
1363- * under the terms of the Eclipse Public License v1.0 which
1364- * accompanies this distribution, and is available at
1365- * http://www.eclipse.org/legal/epl-v10.html
1366- *
1367- * This program may also be available under different license terms.
1368- * For more information, see www.akiban.com or contact
1369- * licensing@akiban.com.
1370- *
1371- * Contributors:
1372- * Akiban Technologies, Inc.
1373+ * Copyright 2011-2013 Akiban Technologies, Inc.
1374+ *
1375+ * Licensed under the Apache License, Version 2.0 (the "License");
1376+ * you may not use this file except in compliance with the License.
1377+ * You may obtain a copy of the License at
1378+ *
1379+ * http://www.apache.org/licenses/LICENSE-2.0
1380+ *
1381+ * Unless required by applicable law or agreed to in writing, software
1382+ * distributed under the License is distributed on an "AS IS" BASIS,
1383+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1384+ * See the License for the specific language governing permissions and
1385+ * limitations under the License.
1386 */
1387
1388 package com.akiban.sql.parser;
1389
1390=== modified file 'src/main/java/com/akiban/sql/parser/AlterDropIndexNode.java'
1391--- src/main/java/com/akiban/sql/parser/AlterDropIndexNode.java 2012-11-07 17:49:31 +0000
1392+++ src/main/java/com/akiban/sql/parser/AlterDropIndexNode.java 2013-05-08 22:15:59 +0000
1393@@ -1,18 +1,17 @@
1394 /**
1395- * Copyright © 2012 Akiban Technologies, Inc. All rights
1396- * reserved.
1397- *
1398- * This program and the accompanying materials are made available
1399- * under the terms of the Eclipse Public License v1.0 which
1400- * accompanies this distribution, and is available at
1401- * http://www.eclipse.org/legal/epl-v10.html
1402- *
1403- * This program may also be available under different license terms.
1404- * For more information, see www.akiban.com or contact
1405- * licensing@akiban.com.
1406- *
1407- * Contributors:
1408- * Akiban Technologies, Inc.
1409+ * Copyright 2011-2013 Akiban Technologies, Inc.
1410+ *
1411+ * Licensed under the Apache License, Version 2.0 (the "License");
1412+ * you may not use this file except in compliance with the License.
1413+ * You may obtain a copy of the License at
1414+ *
1415+ * http://www.apache.org/licenses/LICENSE-2.0
1416+ *
1417+ * Unless required by applicable law or agreed to in writing, software
1418+ * distributed under the License is distributed on an "AS IS" BASIS,
1419+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1420+ * See the License for the specific language governing permissions and
1421+ * limitations under the License.
1422 */
1423
1424 package com.akiban.sql.parser;
1425
1426=== modified file 'src/main/java/com/akiban/sql/parser/AlterServerNode.java'
1427--- src/main/java/com/akiban/sql/parser/AlterServerNode.java 2012-11-07 17:49:31 +0000
1428+++ src/main/java/com/akiban/sql/parser/AlterServerNode.java 2013-05-08 22:15:59 +0000
1429@@ -1,18 +1,17 @@
1430 /**
1431- * Copyright © 2012 Akiban Technologies, Inc. All rights
1432- * reserved.
1433- *
1434- * This program and the accompanying materials are made available
1435- * under the terms of the Eclipse Public License v1.0 which
1436- * accompanies this distribution, and is available at
1437- * http://www.eclipse.org/legal/epl-v10.html
1438- *
1439- * This program may also be available under different license terms.
1440- * For more information, see www.akiban.com or contact
1441- * licensing@akiban.com.
1442- *
1443- * Contributors:
1444- * Akiban Technologies, Inc.
1445+ * Copyright 2011-2013 Akiban Technologies, Inc.
1446+ *
1447+ * Licensed under the Apache License, Version 2.0 (the "License");
1448+ * you may not use this file except in compliance with the License.
1449+ * You may obtain a copy of the License at
1450+ *
1451+ * http://www.apache.org/licenses/LICENSE-2.0
1452+ *
1453+ * Unless required by applicable law or agreed to in writing, software
1454+ * distributed under the License is distributed on an "AS IS" BASIS,
1455+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1456+ * See the License for the specific language governing permissions and
1457+ * limitations under the License.
1458 */
1459
1460 package com.akiban.sql.parser;
1461
1462=== modified file 'src/main/java/com/akiban/sql/parser/AlterTableNode.java'
1463--- src/main/java/com/akiban/sql/parser/AlterTableNode.java 2012-11-30 18:20:01 +0000
1464+++ src/main/java/com/akiban/sql/parser/AlterTableNode.java 2013-05-08 22:15:59 +0000
1465@@ -1,18 +1,17 @@
1466 /**
1467- * Copyright © 2012 Akiban Technologies, Inc. All rights
1468- * reserved.
1469- *
1470- * This program and the accompanying materials are made available
1471- * under the terms of the Eclipse Public License v1.0 which
1472- * accompanies this distribution, and is available at
1473- * http://www.eclipse.org/legal/epl-v10.html
1474- *
1475- * This program may also be available under different license terms.
1476- * For more information, see www.akiban.com or contact
1477- * licensing@akiban.com.
1478- *
1479- * Contributors:
1480- * Akiban Technologies, Inc.
1481+ * Copyright 2011-2013 Akiban Technologies, Inc.
1482+ *
1483+ * Licensed under the Apache License, Version 2.0 (the "License");
1484+ * you may not use this file except in compliance with the License.
1485+ * You may obtain a copy of the License at
1486+ *
1487+ * http://www.apache.org/licenses/LICENSE-2.0
1488+ *
1489+ * Unless required by applicable law or agreed to in writing, software
1490+ * distributed under the License is distributed on an "AS IS" BASIS,
1491+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1492+ * See the License for the specific language governing permissions and
1493+ * limitations under the License.
1494 */
1495
1496 /* The original from which this derives bore the following: */
1497
1498=== modified file 'src/main/java/com/akiban/sql/parser/AlterTableRenameColumnNode.java'
1499--- src/main/java/com/akiban/sql/parser/AlterTableRenameColumnNode.java 2013-02-05 07:11:51 +0000
1500+++ src/main/java/com/akiban/sql/parser/AlterTableRenameColumnNode.java 2013-05-08 22:15:59 +0000
1501@@ -1,18 +1,17 @@
1502 /**
1503- * Copyright © 2012 Akiban Technologies, Inc. All rights
1504- * reserved.
1505- *
1506- * This program and the accompanying materials are made available
1507- * under the terms of the Eclipse Public License v1.0 which
1508- * accompanies this distribution, and is available at
1509- * http://www.eclipse.org/legal/epl-v10.html
1510- *
1511- * This program may also be available under different license terms.
1512- * For more information, see www.akiban.com or contact
1513- * licensing@akiban.com.
1514- *
1515- * Contributors:
1516- * Akiban Technologies, Inc.
1517+ * Copyright 2011-2013 Akiban Technologies, Inc.
1518+ *
1519+ * Licensed under the Apache License, Version 2.0 (the "License");
1520+ * you may not use this file except in compliance with the License.
1521+ * You may obtain a copy of the License at
1522+ *
1523+ * http://www.apache.org/licenses/LICENSE-2.0
1524+ *
1525+ * Unless required by applicable law or agreed to in writing, software
1526+ * distributed under the License is distributed on an "AS IS" BASIS,
1527+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1528+ * See the License for the specific language governing permissions and
1529+ * limitations under the License.
1530 */
1531
1532 package com.akiban.sql.parser;
1533
1534=== modified file 'src/main/java/com/akiban/sql/parser/AlterTableRenameNode.java'
1535--- src/main/java/com/akiban/sql/parser/AlterTableRenameNode.java 2012-11-09 19:27:35 +0000
1536+++ src/main/java/com/akiban/sql/parser/AlterTableRenameNode.java 2013-05-08 22:15:59 +0000
1537@@ -1,18 +1,17 @@
1538 /**
1539- * Copyright © 2012 Akiban Technologies, Inc. All rights
1540- * reserved.
1541- *
1542- * This program and the accompanying materials are made available
1543- * under the terms of the Eclipse Public License v1.0 which
1544- * accompanies this distribution, and is available at
1545- * http://www.eclipse.org/legal/epl-v10.html
1546- *
1547- * This program may also be available under different license terms.
1548- * For more information, see www.akiban.com or contact
1549- * licensing@akiban.com.
1550- *
1551- * Contributors:
1552- * Akiban Technologies, Inc.
1553+ * Copyright 2011-2013 Akiban Technologies, Inc.
1554+ *
1555+ * Licensed under the Apache License, Version 2.0 (the "License");
1556+ * you may not use this file except in compliance with the License.
1557+ * You may obtain a copy of the License at
1558+ *
1559+ * http://www.apache.org/licenses/LICENSE-2.0
1560+ *
1561+ * Unless required by applicable law or agreed to in writing, software
1562+ * distributed under the License is distributed on an "AS IS" BASIS,
1563+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1564+ * See the License for the specific language governing permissions and
1565+ * limitations under the License.
1566 */
1567
1568 package com.akiban.sql.parser;
1569
1570=== modified file 'src/main/java/com/akiban/sql/parser/AndNode.java'
1571--- src/main/java/com/akiban/sql/parser/AndNode.java 2012-11-07 17:49:31 +0000
1572+++ src/main/java/com/akiban/sql/parser/AndNode.java 2013-05-08 22:15:59 +0000
1573@@ -1,18 +1,17 @@
1574 /**
1575- * Copyright © 2012 Akiban Technologies, Inc. All rights
1576- * reserved.
1577- *
1578- * This program and the accompanying materials are made available
1579- * under the terms of the Eclipse Public License v1.0 which
1580- * accompanies this distribution, and is available at
1581- * http://www.eclipse.org/legal/epl-v10.html
1582- *
1583- * This program may also be available under different license terms.
1584- * For more information, see www.akiban.com or contact
1585- * licensing@akiban.com.
1586- *
1587- * Contributors:
1588- * Akiban Technologies, Inc.
1589+ * Copyright 2011-2013 Akiban Technologies, Inc.
1590+ *
1591+ * Licensed under the Apache License, Version 2.0 (the "License");
1592+ * you may not use this file except in compliance with the License.
1593+ * You may obtain a copy of the License at
1594+ *
1595+ * http://www.apache.org/licenses/LICENSE-2.0
1596+ *
1597+ * Unless required by applicable law or agreed to in writing, software
1598+ * distributed under the License is distributed on an "AS IS" BASIS,
1599+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1600+ * See the License for the specific language governing permissions and
1601+ * limitations under the License.
1602 */
1603
1604 /* The original from which this derives bore the following: */
1605
1606=== modified file 'src/main/java/com/akiban/sql/parser/BaseColumnNode.java'
1607--- src/main/java/com/akiban/sql/parser/BaseColumnNode.java 2012-11-07 17:49:31 +0000
1608+++ src/main/java/com/akiban/sql/parser/BaseColumnNode.java 2013-05-08 22:15:59 +0000
1609@@ -1,18 +1,17 @@
1610 /**
1611- * Copyright © 2012 Akiban Technologies, Inc. All rights
1612- * reserved.
1613- *
1614- * This program and the accompanying materials are made available
1615- * under the terms of the Eclipse Public License v1.0 which
1616- * accompanies this distribution, and is available at
1617- * http://www.eclipse.org/legal/epl-v10.html
1618- *
1619- * This program may also be available under different license terms.
1620- * For more information, see www.akiban.com or contact
1621- * licensing@akiban.com.
1622- *
1623- * Contributors:
1624- * Akiban Technologies, Inc.
1625+ * Copyright 2011-2013 Akiban Technologies, Inc.
1626+ *
1627+ * Licensed under the Apache License, Version 2.0 (the "License");
1628+ * you may not use this file except in compliance with the License.
1629+ * You may obtain a copy of the License at
1630+ *
1631+ * http://www.apache.org/licenses/LICENSE-2.0
1632+ *
1633+ * Unless required by applicable law or agreed to in writing, software
1634+ * distributed under the License is distributed on an "AS IS" BASIS,
1635+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1636+ * See the License for the specific language governing permissions and
1637+ * limitations under the License.
1638 */
1639
1640 /* The original from which this derives bore the following: */
1641
1642=== modified file 'src/main/java/com/akiban/sql/parser/BaseToken.java'
1643--- src/main/java/com/akiban/sql/parser/BaseToken.java 2012-11-07 17:49:31 +0000
1644+++ src/main/java/com/akiban/sql/parser/BaseToken.java 2013-05-08 22:15:59 +0000
1645@@ -1,18 +1,17 @@
1646 /**
1647- * Copyright © 2012 Akiban Technologies, Inc. All rights
1648- * reserved.
1649- *
1650- * This program and the accompanying materials are made available
1651- * under the terms of the Eclipse Public License v1.0 which
1652- * accompanies this distribution, and is available at
1653- * http://www.eclipse.org/legal/epl-v10.html
1654- *
1655- * This program may also be available under different license terms.
1656- * For more information, see www.akiban.com or contact
1657- * licensing@akiban.com.
1658- *
1659- * Contributors:
1660- * Akiban Technologies, Inc.
1661+ * Copyright 2011-2013 Akiban Technologies, Inc.
1662+ *
1663+ * Licensed under the Apache License, Version 2.0 (the "License");
1664+ * you may not use this file except in compliance with the License.
1665+ * You may obtain a copy of the License at
1666+ *
1667+ * http://www.apache.org/licenses/LICENSE-2.0
1668+ *
1669+ * Unless required by applicable law or agreed to in writing, software
1670+ * distributed under the License is distributed on an "AS IS" BASIS,
1671+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1672+ * See the License for the specific language governing permissions and
1673+ * limitations under the License.
1674 */
1675
1676 /* The original from which this dervices bore the following: */
1677
1678=== modified file 'src/main/java/com/akiban/sql/parser/BetweenOperatorNode.java'
1679--- src/main/java/com/akiban/sql/parser/BetweenOperatorNode.java 2012-11-07 17:49:31 +0000
1680+++ src/main/java/com/akiban/sql/parser/BetweenOperatorNode.java 2013-05-08 22:15:59 +0000
1681@@ -1,18 +1,17 @@
1682 /**
1683- * Copyright © 2012 Akiban Technologies, Inc. All rights
1684- * reserved.
1685- *
1686- * This program and the accompanying materials are made available
1687- * under the terms of the Eclipse Public License v1.0 which
1688- * accompanies this distribution, and is available at
1689- * http://www.eclipse.org/legal/epl-v10.html
1690- *
1691- * This program may also be available under different license terms.
1692- * For more information, see www.akiban.com or contact
1693- * licensing@akiban.com.
1694- *
1695- * Contributors:
1696- * Akiban Technologies, Inc.
1697+ * Copyright 2011-2013 Akiban Technologies, Inc.
1698+ *
1699+ * Licensed under the Apache License, Version 2.0 (the "License");
1700+ * you may not use this file except in compliance with the License.
1701+ * You may obtain a copy of the License at
1702+ *
1703+ * http://www.apache.org/licenses/LICENSE-2.0
1704+ *
1705+ * Unless required by applicable law or agreed to in writing, software
1706+ * distributed under the License is distributed on an "AS IS" BASIS,
1707+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1708+ * See the License for the specific language governing permissions and
1709+ * limitations under the License.
1710 */
1711
1712 /* The original from which this derives bore the following: */
1713
1714=== modified file 'src/main/java/com/akiban/sql/parser/BinaryArithmeticOperatorNode.java'
1715--- src/main/java/com/akiban/sql/parser/BinaryArithmeticOperatorNode.java 2012-11-07 17:49:31 +0000
1716+++ src/main/java/com/akiban/sql/parser/BinaryArithmeticOperatorNode.java 2013-05-08 22:15:59 +0000
1717@@ -1,18 +1,17 @@
1718 /**
1719- * Copyright © 2012 Akiban Technologies, Inc. All rights
1720- * reserved.
1721- *
1722- * This program and the accompanying materials are made available
1723- * under the terms of the Eclipse Public License v1.0 which
1724- * accompanies this distribution, and is available at
1725- * http://www.eclipse.org/legal/epl-v10.html
1726- *
1727- * This program may also be available under different license terms.
1728- * For more information, see www.akiban.com or contact
1729- * licensing@akiban.com.
1730- *
1731- * Contributors:
1732- * Akiban Technologies, Inc.
1733+ * Copyright 2011-2013 Akiban Technologies, Inc.
1734+ *
1735+ * Licensed under the Apache License, Version 2.0 (the "License");
1736+ * you may not use this file except in compliance with the License.
1737+ * You may obtain a copy of the License at
1738+ *
1739+ * http://www.apache.org/licenses/LICENSE-2.0
1740+ *
1741+ * Unless required by applicable law or agreed to in writing, software
1742+ * distributed under the License is distributed on an "AS IS" BASIS,
1743+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1744+ * See the License for the specific language governing permissions and
1745+ * limitations under the License.
1746 */
1747
1748 /* The original from which this derives bore the following: */
1749
1750=== modified file 'src/main/java/com/akiban/sql/parser/BinaryBitOperatorNode.java'
1751--- src/main/java/com/akiban/sql/parser/BinaryBitOperatorNode.java 2012-11-07 17:49:31 +0000
1752+++ src/main/java/com/akiban/sql/parser/BinaryBitOperatorNode.java 2013-05-08 22:15:59 +0000
1753@@ -1,18 +1,17 @@
1754 /**
1755- * Copyright © 2012 Akiban Technologies, Inc. All rights
1756- * reserved.
1757- *
1758- * This program and the accompanying materials are made available
1759- * under the terms of the Eclipse Public License v1.0 which
1760- * accompanies this distribution, and is available at
1761- * http://www.eclipse.org/legal/epl-v10.html
1762- *
1763- * This program may also be available under different license terms.
1764- * For more information, see www.akiban.com or contact
1765- * licensing@akiban.com.
1766- *
1767- * Contributors:
1768- * Akiban Technologies, Inc.
1769+ * Copyright 2011-2013 Akiban Technologies, Inc.
1770+ *
1771+ * Licensed under the Apache License, Version 2.0 (the "License");
1772+ * you may not use this file except in compliance with the License.
1773+ * You may obtain a copy of the License at
1774+ *
1775+ * http://www.apache.org/licenses/LICENSE-2.0
1776+ *
1777+ * Unless required by applicable law or agreed to in writing, software
1778+ * distributed under the License is distributed on an "AS IS" BASIS,
1779+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1780+ * See the License for the specific language governing permissions and
1781+ * limitations under the License.
1782 */
1783
1784 package com.akiban.sql.parser;
1785
1786=== modified file 'src/main/java/com/akiban/sql/parser/BinaryComparisonOperatorNode.java'
1787--- src/main/java/com/akiban/sql/parser/BinaryComparisonOperatorNode.java 2012-11-07 17:49:31 +0000
1788+++ src/main/java/com/akiban/sql/parser/BinaryComparisonOperatorNode.java 2013-05-08 22:15:59 +0000
1789@@ -1,18 +1,17 @@
1790 /**
1791- * Copyright © 2012 Akiban Technologies, Inc. All rights
1792- * reserved.
1793- *
1794- * This program and the accompanying materials are made available
1795- * under the terms of the Eclipse Public License v1.0 which
1796- * accompanies this distribution, and is available at
1797- * http://www.eclipse.org/legal/epl-v10.html
1798- *
1799- * This program may also be available under different license terms.
1800- * For more information, see www.akiban.com or contact
1801- * licensing@akiban.com.
1802- *
1803- * Contributors:
1804- * Akiban Technologies, Inc.
1805+ * Copyright 2011-2013 Akiban Technologies, Inc.
1806+ *
1807+ * Licensed under the Apache License, Version 2.0 (the "License");
1808+ * you may not use this file except in compliance with the License.
1809+ * You may obtain a copy of the License at
1810+ *
1811+ * http://www.apache.org/licenses/LICENSE-2.0
1812+ *
1813+ * Unless required by applicable law or agreed to in writing, software
1814+ * distributed under the License is distributed on an "AS IS" BASIS,
1815+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1816+ * See the License for the specific language governing permissions and
1817+ * limitations under the License.
1818 */
1819
1820 /* The original from which this derives bore the following: */
1821
1822=== modified file 'src/main/java/com/akiban/sql/parser/BinaryListOperatorNode.java'
1823--- src/main/java/com/akiban/sql/parser/BinaryListOperatorNode.java 2012-11-07 17:49:31 +0000
1824+++ src/main/java/com/akiban/sql/parser/BinaryListOperatorNode.java 2013-05-08 22:15:59 +0000
1825@@ -1,18 +1,17 @@
1826 /**
1827- * Copyright © 2012 Akiban Technologies, Inc. All rights
1828- * reserved.
1829- *
1830- * This program and the accompanying materials are made available
1831- * under the terms of the Eclipse Public License v1.0 which
1832- * accompanies this distribution, and is available at
1833- * http://www.eclipse.org/legal/epl-v10.html
1834- *
1835- * This program may also be available under different license terms.
1836- * For more information, see www.akiban.com or contact
1837- * licensing@akiban.com.
1838- *
1839- * Contributors:
1840- * Akiban Technologies, Inc.
1841+ * Copyright 2011-2013 Akiban Technologies, Inc.
1842+ *
1843+ * Licensed under the Apache License, Version 2.0 (the "License");
1844+ * you may not use this file except in compliance with the License.
1845+ * You may obtain a copy of the License at
1846+ *
1847+ * http://www.apache.org/licenses/LICENSE-2.0
1848+ *
1849+ * Unless required by applicable law or agreed to in writing, software
1850+ * distributed under the License is distributed on an "AS IS" BASIS,
1851+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1852+ * See the License for the specific language governing permissions and
1853+ * limitations under the License.
1854 */
1855
1856 /* The original from which this derives bore the following: */
1857
1858=== modified file 'src/main/java/com/akiban/sql/parser/BinaryLogicalOperatorNode.java'
1859--- src/main/java/com/akiban/sql/parser/BinaryLogicalOperatorNode.java 2012-11-07 17:49:31 +0000
1860+++ src/main/java/com/akiban/sql/parser/BinaryLogicalOperatorNode.java 2013-05-08 22:15:59 +0000
1861@@ -1,18 +1,17 @@
1862 /**
1863- * Copyright © 2012 Akiban Technologies, Inc. All rights
1864- * reserved.
1865- *
1866- * This program and the accompanying materials are made available
1867- * under the terms of the Eclipse Public License v1.0 which
1868- * accompanies this distribution, and is available at
1869- * http://www.eclipse.org/legal/epl-v10.html
1870- *
1871- * This program may also be available under different license terms.
1872- * For more information, see www.akiban.com or contact
1873- * licensing@akiban.com.
1874- *
1875- * Contributors:
1876- * Akiban Technologies, Inc.
1877+ * Copyright 2011-2013 Akiban Technologies, Inc.
1878+ *
1879+ * Licensed under the Apache License, Version 2.0 (the "License");
1880+ * you may not use this file except in compliance with the License.
1881+ * You may obtain a copy of the License at
1882+ *
1883+ * http://www.apache.org/licenses/LICENSE-2.0
1884+ *
1885+ * Unless required by applicable law or agreed to in writing, software
1886+ * distributed under the License is distributed on an "AS IS" BASIS,
1887+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1888+ * See the License for the specific language governing permissions and
1889+ * limitations under the License.
1890 */
1891
1892 /* The original from which this derives bore the following: */
1893
1894=== modified file 'src/main/java/com/akiban/sql/parser/BinaryOperatorNode.java'
1895--- src/main/java/com/akiban/sql/parser/BinaryOperatorNode.java 2012-11-07 17:49:31 +0000
1896+++ src/main/java/com/akiban/sql/parser/BinaryOperatorNode.java 2013-05-08 22:15:59 +0000
1897@@ -1,18 +1,17 @@
1898 /**
1899- * Copyright © 2012 Akiban Technologies, Inc. All rights
1900- * reserved.
1901- *
1902- * This program and the accompanying materials are made available
1903- * under the terms of the Eclipse Public License v1.0 which
1904- * accompanies this distribution, and is available at
1905- * http://www.eclipse.org/legal/epl-v10.html
1906- *
1907- * This program may also be available under different license terms.
1908- * For more information, see www.akiban.com or contact
1909- * licensing@akiban.com.
1910- *
1911- * Contributors:
1912- * Akiban Technologies, Inc.
1913+ * Copyright 2011-2013 Akiban Technologies, Inc.
1914+ *
1915+ * Licensed under the Apache License, Version 2.0 (the "License");
1916+ * you may not use this file except in compliance with the License.
1917+ * You may obtain a copy of the License at
1918+ *
1919+ * http://www.apache.org/licenses/LICENSE-2.0
1920+ *
1921+ * Unless required by applicable law or agreed to in writing, software
1922+ * distributed under the License is distributed on an "AS IS" BASIS,
1923+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1924+ * See the License for the specific language governing permissions and
1925+ * limitations under the License.
1926 */
1927
1928 /* The original from which this derives bore the following: */
1929
1930=== modified file 'src/main/java/com/akiban/sql/parser/BinaryRelationalOperatorNode.java'
1931--- src/main/java/com/akiban/sql/parser/BinaryRelationalOperatorNode.java 2012-11-07 17:49:31 +0000
1932+++ src/main/java/com/akiban/sql/parser/BinaryRelationalOperatorNode.java 2013-05-08 22:15:59 +0000
1933@@ -1,18 +1,17 @@
1934 /**
1935- * Copyright © 2012 Akiban Technologies, Inc. All rights
1936- * reserved.
1937- *
1938- * This program and the accompanying materials are made available
1939- * under the terms of the Eclipse Public License v1.0 which
1940- * accompanies this distribution, and is available at
1941- * http://www.eclipse.org/legal/epl-v10.html
1942- *
1943- * This program may also be available under different license terms.
1944- * For more information, see www.akiban.com or contact
1945- * licensing@akiban.com.
1946- *
1947- * Contributors:
1948- * Akiban Technologies, Inc.
1949+ * Copyright 2011-2013 Akiban Technologies, Inc.
1950+ *
1951+ * Licensed under the Apache License, Version 2.0 (the "License");
1952+ * you may not use this file except in compliance with the License.
1953+ * You may obtain a copy of the License at
1954+ *
1955+ * http://www.apache.org/licenses/LICENSE-2.0
1956+ *
1957+ * Unless required by applicable law or agreed to in writing, software
1958+ * distributed under the License is distributed on an "AS IS" BASIS,
1959+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1960+ * See the License for the specific language governing permissions and
1961+ * limitations under the License.
1962 */
1963
1964 /* The original from which this derives bore the following: */
1965
1966=== modified file 'src/main/java/com/akiban/sql/parser/BitConstantNode.java'
1967--- src/main/java/com/akiban/sql/parser/BitConstantNode.java 2012-11-07 17:49:31 +0000
1968+++ src/main/java/com/akiban/sql/parser/BitConstantNode.java 2013-05-08 22:15:59 +0000
1969@@ -1,18 +1,17 @@
1970 /**
1971- * Copyright © 2012 Akiban Technologies, Inc. All rights
1972- * reserved.
1973- *
1974- * This program and the accompanying materials are made available
1975- * under the terms of the Eclipse Public License v1.0 which
1976- * accompanies this distribution, and is available at
1977- * http://www.eclipse.org/legal/epl-v10.html
1978- *
1979- * This program may also be available under different license terms.
1980- * For more information, see www.akiban.com or contact
1981- * licensing@akiban.com.
1982- *
1983- * Contributors:
1984- * Akiban Technologies, Inc.
1985+ * Copyright 2011-2013 Akiban Technologies, Inc.
1986+ *
1987+ * Licensed under the Apache License, Version 2.0 (the "License");
1988+ * you may not use this file except in compliance with the License.
1989+ * You may obtain a copy of the License at
1990+ *
1991+ * http://www.apache.org/licenses/LICENSE-2.0
1992+ *
1993+ * Unless required by applicable law or agreed to in writing, software
1994+ * distributed under the License is distributed on an "AS IS" BASIS,
1995+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1996+ * See the License for the specific language governing permissions and
1997+ * limitations under the License.
1998 */
1999
2000 /* The original from which this derives bore the following: */
2001
2002=== modified file 'src/main/java/com/akiban/sql/parser/BooleanConstantNode.java'
2003--- src/main/java/com/akiban/sql/parser/BooleanConstantNode.java 2012-11-07 17:49:31 +0000
2004+++ src/main/java/com/akiban/sql/parser/BooleanConstantNode.java 2013-05-08 22:15:59 +0000
2005@@ -1,18 +1,17 @@
2006 /**
2007- * Copyright © 2012 Akiban Technologies, Inc. All rights
2008- * reserved.
2009- *
2010- * This program and the accompanying materials are made available
2011- * under the terms of the Eclipse Public License v1.0 which
2012- * accompanies this distribution, and is available at
2013- * http://www.eclipse.org/legal/epl-v10.html
2014- *
2015- * This program may also be available under different license terms.
2016- * For more information, see www.akiban.com or contact
2017- * licensing@akiban.com.
2018- *
2019- * Contributors:
2020- * Akiban Technologies, Inc.
2021+ * Copyright 2011-2013 Akiban Technologies, Inc.
2022+ *
2023+ * Licensed under the Apache License, Version 2.0 (the "License");
2024+ * you may not use this file except in compliance with the License.
2025+ * You may obtain a copy of the License at
2026+ *
2027+ * http://www.apache.org/licenses/LICENSE-2.0
2028+ *
2029+ * Unless required by applicable law or agreed to in writing, software
2030+ * distributed under the License is distributed on an "AS IS" BASIS,
2031+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2032+ * See the License for the specific language governing permissions and
2033+ * limitations under the License.
2034 */
2035
2036 /* The original from which this derives bore the following: */
2037
2038=== modified file 'src/main/java/com/akiban/sql/parser/CallStatementNode.java'
2039--- src/main/java/com/akiban/sql/parser/CallStatementNode.java 2012-11-07 17:49:31 +0000
2040+++ src/main/java/com/akiban/sql/parser/CallStatementNode.java 2013-05-08 22:15:59 +0000
2041@@ -1,18 +1,17 @@
2042 /**
2043- * Copyright © 2012 Akiban Technologies, Inc. All rights
2044- * reserved.
2045- *
2046- * This program and the accompanying materials are made available
2047- * under the terms of the Eclipse Public License v1.0 which
2048- * accompanies this distribution, and is available at
2049- * http://www.eclipse.org/legal/epl-v10.html
2050- *
2051- * This program may also be available under different license terms.
2052- * For more information, see www.akiban.com or contact
2053- * licensing@akiban.com.
2054- *
2055- * Contributors:
2056- * Akiban Technologies, Inc.
2057+ * Copyright 2011-2013 Akiban Technologies, Inc.
2058+ *
2059+ * Licensed under the Apache License, Version 2.0 (the "License");
2060+ * you may not use this file except in compliance with the License.
2061+ * You may obtain a copy of the License at
2062+ *
2063+ * http://www.apache.org/licenses/LICENSE-2.0
2064+ *
2065+ * Unless required by applicable law or agreed to in writing, software
2066+ * distributed under the License is distributed on an "AS IS" BASIS,
2067+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2068+ * See the License for the specific language governing permissions and
2069+ * limitations under the License.
2070 */
2071
2072 /* The original from which this derives bore the following: */
2073
2074=== modified file 'src/main/java/com/akiban/sql/parser/CastNode.java'
2075--- src/main/java/com/akiban/sql/parser/CastNode.java 2012-11-07 17:49:31 +0000
2076+++ src/main/java/com/akiban/sql/parser/CastNode.java 2013-05-08 22:15:59 +0000
2077@@ -1,18 +1,17 @@
2078 /**
2079- * Copyright © 2012 Akiban Technologies, Inc. All rights
2080- * reserved.
2081- *
2082- * This program and the accompanying materials are made available
2083- * under the terms of the Eclipse Public License v1.0 which
2084- * accompanies this distribution, and is available at
2085- * http://www.eclipse.org/legal/epl-v10.html
2086- *
2087- * This program may also be available under different license terms.
2088- * For more information, see www.akiban.com or contact
2089- * licensing@akiban.com.
2090- *
2091- * Contributors:
2092- * Akiban Technologies, Inc.
2093+ * Copyright 2011-2013 Akiban Technologies, Inc.
2094+ *
2095+ * Licensed under the Apache License, Version 2.0 (the "License");
2096+ * you may not use this file except in compliance with the License.
2097+ * You may obtain a copy of the License at
2098+ *
2099+ * http://www.apache.org/licenses/LICENSE-2.0
2100+ *
2101+ * Unless required by applicable law or agreed to in writing, software
2102+ * distributed under the License is distributed on an "AS IS" BASIS,
2103+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2104+ * See the License for the specific language governing permissions and
2105+ * limitations under the License.
2106 */
2107
2108 /* The original from which this derives bore the following: */
2109
2110=== modified file 'src/main/java/com/akiban/sql/parser/CharConstantNode.java'
2111--- src/main/java/com/akiban/sql/parser/CharConstantNode.java 2012-11-07 17:49:31 +0000
2112+++ src/main/java/com/akiban/sql/parser/CharConstantNode.java 2013-05-08 22:15:59 +0000
2113@@ -1,18 +1,17 @@
2114 /**
2115- * Copyright © 2012 Akiban Technologies, Inc. All rights
2116- * reserved.
2117- *
2118- * This program and the accompanying materials are made available
2119- * under the terms of the Eclipse Public License v1.0 which
2120- * accompanies this distribution, and is available at
2121- * http://www.eclipse.org/legal/epl-v10.html
2122- *
2123- * This program may also be available under different license terms.
2124- * For more information, see www.akiban.com or contact
2125- * licensing@akiban.com.
2126- *
2127- * Contributors:
2128- * Akiban Technologies, Inc.
2129+ * Copyright 2011-2013 Akiban Technologies, Inc.
2130+ *
2131+ * Licensed under the Apache License, Version 2.0 (the "License");
2132+ * you may not use this file except in compliance with the License.
2133+ * You may obtain a copy of the License at
2134+ *
2135+ * http://www.apache.org/licenses/LICENSE-2.0
2136+ *
2137+ * Unless required by applicable law or agreed to in writing, software
2138+ * distributed under the License is distributed on an "AS IS" BASIS,
2139+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2140+ * See the License for the specific language governing permissions and
2141+ * limitations under the License.
2142 */
2143
2144 /* The original from which this derives bore the following: */
2145
2146=== modified file 'src/main/java/com/akiban/sql/parser/CloseStatementNode.java'
2147--- src/main/java/com/akiban/sql/parser/CloseStatementNode.java 2012-12-13 23:01:21 +0000
2148+++ src/main/java/com/akiban/sql/parser/CloseStatementNode.java 2013-05-08 22:15:59 +0000
2149@@ -1,18 +1,17 @@
2150 /**
2151- * Copyright © 2012 Akiban Technologies, Inc. All rights
2152- * reserved.
2153- *
2154- * This program and the accompanying materials are made available
2155- * under the terms of the Eclipse Public License v1.0 which
2156- * accompanies this distribution, and is available at
2157- * http://www.eclipse.org/legal/epl-v10.html
2158- *
2159- * This program may also be available under different license terms.
2160- * For more information, see www.akiban.com or contact
2161- * licensing@akiban.com.
2162- *
2163- * Contributors:
2164- * Akiban Technologies, Inc.
2165+ * Copyright 2011-2013 Akiban Technologies, Inc.
2166+ *
2167+ * Licensed under the Apache License, Version 2.0 (the "License");
2168+ * you may not use this file except in compliance with the License.
2169+ * You may obtain a copy of the License at
2170+ *
2171+ * http://www.apache.org/licenses/LICENSE-2.0
2172+ *
2173+ * Unless required by applicable law or agreed to in writing, software
2174+ * distributed under the License is distributed on an "AS IS" BASIS,
2175+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2176+ * See the License for the specific language governing permissions and
2177+ * limitations under the License.
2178 */
2179
2180 package com.akiban.sql.parser;
2181
2182=== modified file 'src/main/java/com/akiban/sql/parser/CoalesceFunctionNode.java'
2183--- src/main/java/com/akiban/sql/parser/CoalesceFunctionNode.java 2012-11-07 17:49:31 +0000
2184+++ src/main/java/com/akiban/sql/parser/CoalesceFunctionNode.java 2013-05-08 22:15:59 +0000
2185@@ -1,18 +1,17 @@
2186 /**
2187- * Copyright © 2012 Akiban Technologies, Inc. All rights
2188- * reserved.
2189- *
2190- * This program and the accompanying materials are made available
2191- * under the terms of the Eclipse Public License v1.0 which
2192- * accompanies this distribution, and is available at
2193- * http://www.eclipse.org/legal/epl-v10.html
2194- *
2195- * This program may also be available under different license terms.
2196- * For more information, see www.akiban.com or contact
2197- * licensing@akiban.com.
2198- *
2199- * Contributors:
2200- * Akiban Technologies, Inc.
2201+ * Copyright 2011-2013 Akiban Technologies, Inc.
2202+ *
2203+ * Licensed under the Apache License, Version 2.0 (the "License");
2204+ * you may not use this file except in compliance with the License.
2205+ * You may obtain a copy of the License at
2206+ *
2207+ * http://www.apache.org/licenses/LICENSE-2.0
2208+ *
2209+ * Unless required by applicable law or agreed to in writing, software
2210+ * distributed under the License is distributed on an "AS IS" BASIS,
2211+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2212+ * See the License for the specific language governing permissions and
2213+ * limitations under the License.
2214 */
2215
2216 /* The original from which this derives bore the following: */
2217
2218=== modified file 'src/main/java/com/akiban/sql/parser/ColumnDefinitionNode.java'
2219--- src/main/java/com/akiban/sql/parser/ColumnDefinitionNode.java 2013-04-11 18:47:18 +0000
2220+++ src/main/java/com/akiban/sql/parser/ColumnDefinitionNode.java 2013-05-08 22:15:59 +0000
2221@@ -1,18 +1,17 @@
2222 /**
2223- * Copyright © 2012 Akiban Technologies, Inc. All rights
2224- * reserved.
2225- *
2226- * This program and the accompanying materials are made available
2227- * under the terms of the Eclipse Public License v1.0 which
2228- * accompanies this distribution, and is available at
2229- * http://www.eclipse.org/legal/epl-v10.html
2230- *
2231- * This program may also be available under different license terms.
2232- * For more information, see www.akiban.com or contact
2233- * licensing@akiban.com.
2234- *
2235- * Contributors:
2236- * Akiban Technologies, Inc.
2237+ * Copyright 2011-2013 Akiban Technologies, Inc.
2238+ *
2239+ * Licensed under the Apache License, Version 2.0 (the "License");
2240+ * you may not use this file except in compliance with the License.
2241+ * You may obtain a copy of the License at
2242+ *
2243+ * http://www.apache.org/licenses/LICENSE-2.0
2244+ *
2245+ * Unless required by applicable law or agreed to in writing, software
2246+ * distributed under the License is distributed on an "AS IS" BASIS,
2247+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2248+ * See the License for the specific language governing permissions and
2249+ * limitations under the License.
2250 */
2251
2252 /* The original from which this derives bore the following: */
2253
2254=== modified file 'src/main/java/com/akiban/sql/parser/ColumnReference.java'
2255--- src/main/java/com/akiban/sql/parser/ColumnReference.java 2012-11-07 17:49:31 +0000
2256+++ src/main/java/com/akiban/sql/parser/ColumnReference.java 2013-05-08 22:15:59 +0000
2257@@ -1,18 +1,17 @@
2258 /**
2259- * Copyright © 2012 Akiban Technologies, Inc. All rights
2260- * reserved.
2261- *
2262- * This program and the accompanying materials are made available
2263- * under the terms of the Eclipse Public License v1.0 which
2264- * accompanies this distribution, and is available at
2265- * http://www.eclipse.org/legal/epl-v10.html
2266- *
2267- * This program may also be available under different license terms.
2268- * For more information, see www.akiban.com or contact
2269- * licensing@akiban.com.
2270- *
2271- * Contributors:
2272- * Akiban Technologies, Inc.
2273+ * Copyright 2011-2013 Akiban Technologies, Inc.
2274+ *
2275+ * Licensed under the Apache License, Version 2.0 (the "License");
2276+ * you may not use this file except in compliance with the License.
2277+ * You may obtain a copy of the License at
2278+ *
2279+ * http://www.apache.org/licenses/LICENSE-2.0
2280+ *
2281+ * Unless required by applicable law or agreed to in writing, software
2282+ * distributed under the License is distributed on an "AS IS" BASIS,
2283+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2284+ * See the License for the specific language governing permissions and
2285+ * limitations under the License.
2286 */
2287
2288 /* The original from which this derives bore the following: */
2289
2290=== modified file 'src/main/java/com/akiban/sql/parser/ConcatenationOperatorNode.java'
2291--- src/main/java/com/akiban/sql/parser/ConcatenationOperatorNode.java 2012-11-07 17:49:31 +0000
2292+++ src/main/java/com/akiban/sql/parser/ConcatenationOperatorNode.java 2013-05-08 22:15:59 +0000
2293@@ -1,18 +1,17 @@
2294 /**
2295- * Copyright © 2012 Akiban Technologies, Inc. All rights
2296- * reserved.
2297- *
2298- * This program and the accompanying materials are made available
2299- * under the terms of the Eclipse Public License v1.0 which
2300- * accompanies this distribution, and is available at
2301- * http://www.eclipse.org/legal/epl-v10.html
2302- *
2303- * This program may also be available under different license terms.
2304- * For more information, see www.akiban.com or contact
2305- * licensing@akiban.com.
2306- *
2307- * Contributors:
2308- * Akiban Technologies, Inc.
2309+ * Copyright 2011-2013 Akiban Technologies, Inc.
2310+ *
2311+ * Licensed under the Apache License, Version 2.0 (the "License");
2312+ * you may not use this file except in compliance with the License.
2313+ * You may obtain a copy of the License at
2314+ *
2315+ * http://www.apache.org/licenses/LICENSE-2.0
2316+ *
2317+ * Unless required by applicable law or agreed to in writing, software
2318+ * distributed under the License is distributed on an "AS IS" BASIS,
2319+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2320+ * See the License for the specific language governing permissions and
2321+ * limitations under the License.
2322 */
2323
2324 /* The original from which this derives bore the following: */
2325
2326=== modified file 'src/main/java/com/akiban/sql/parser/ConditionalNode.java'
2327--- src/main/java/com/akiban/sql/parser/ConditionalNode.java 2012-11-07 17:49:31 +0000
2328+++ src/main/java/com/akiban/sql/parser/ConditionalNode.java 2013-05-08 22:15:59 +0000
2329@@ -1,18 +1,17 @@
2330 /**
2331- * Copyright © 2012 Akiban Technologies, Inc. All rights
2332- * reserved.
2333- *
2334- * This program and the accompanying materials are made available
2335- * under the terms of the Eclipse Public License v1.0 which
2336- * accompanies this distribution, and is available at
2337- * http://www.eclipse.org/legal/epl-v10.html
2338- *
2339- * This program may also be available under different license terms.
2340- * For more information, see www.akiban.com or contact
2341- * licensing@akiban.com.
2342- *
2343- * Contributors:
2344- * Akiban Technologies, Inc.
2345+ * Copyright 2011-2013 Akiban Technologies, Inc.
2346+ *
2347+ * Licensed under the Apache License, Version 2.0 (the "License");
2348+ * you may not use this file except in compliance with the License.
2349+ * You may obtain a copy of the License at
2350+ *
2351+ * http://www.apache.org/licenses/LICENSE-2.0
2352+ *
2353+ * Unless required by applicable law or agreed to in writing, software
2354+ * distributed under the License is distributed on an "AS IS" BASIS,
2355+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2356+ * See the License for the specific language governing permissions and
2357+ * limitations under the License.
2358 */
2359
2360 /* The original from which this derives bore the following: */
2361
2362=== modified file 'src/main/java/com/akiban/sql/parser/ConstantNode.java'
2363--- src/main/java/com/akiban/sql/parser/ConstantNode.java 2012-11-07 17:49:31 +0000
2364+++ src/main/java/com/akiban/sql/parser/ConstantNode.java 2013-05-08 22:15:59 +0000
2365@@ -1,18 +1,17 @@
2366 /**
2367- * Copyright © 2012 Akiban Technologies, Inc. All rights
2368- * reserved.
2369- *
2370- * This program and the accompanying materials are made available
2371- * under the terms of the Eclipse Public License v1.0 which
2372- * accompanies this distribution, and is available at
2373- * http://www.eclipse.org/legal/epl-v10.html
2374- *
2375- * This program may also be available under different license terms.
2376- * For more information, see www.akiban.com or contact
2377- * licensing@akiban.com.
2378- *
2379- * Contributors:
2380- * Akiban Technologies, Inc.
2381+ * Copyright 2011-2013 Akiban Technologies, Inc.
2382+ *
2383+ * Licensed under the Apache License, Version 2.0 (the "License");
2384+ * you may not use this file except in compliance with the License.
2385+ * You may obtain a copy of the License at
2386+ *
2387+ * http://www.apache.org/licenses/LICENSE-2.0
2388+ *
2389+ * Unless required by applicable law or agreed to in writing, software
2390+ * distributed under the License is distributed on an "AS IS" BASIS,
2391+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2392+ * See the License for the specific language governing permissions and
2393+ * limitations under the License.
2394 */
2395
2396 /* The original from which this derives bore the following: */
2397
2398=== modified file 'src/main/java/com/akiban/sql/parser/ConstraintDefinitionNode.java'
2399--- src/main/java/com/akiban/sql/parser/ConstraintDefinitionNode.java 2013-03-06 11:08:05 +0000
2400+++ src/main/java/com/akiban/sql/parser/ConstraintDefinitionNode.java 2013-05-08 22:15:59 +0000
2401@@ -1,18 +1,17 @@
2402 /**
2403- * Copyright © 2012 Akiban Technologies, Inc. All rights
2404- * reserved.
2405- *
2406- * This program and the accompanying materials are made available
2407- * under the terms of the Eclipse Public License v1.0 which
2408- * accompanies this distribution, and is available at
2409- * http://www.eclipse.org/legal/epl-v10.html
2410- *
2411- * This program may also be available under different license terms.
2412- * For more information, see www.akiban.com or contact
2413- * licensing@akiban.com.
2414- *
2415- * Contributors:
2416- * Akiban Technologies, Inc.
2417+ * Copyright 2011-2013 Akiban Technologies, Inc.
2418+ *
2419+ * Licensed under the Apache License, Version 2.0 (the "License");
2420+ * you may not use this file except in compliance with the License.
2421+ * You may obtain a copy of the License at
2422+ *
2423+ * http://www.apache.org/licenses/LICENSE-2.0
2424+ *
2425+ * Unless required by applicable law or agreed to in writing, software
2426+ * distributed under the License is distributed on an "AS IS" BASIS,
2427+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2428+ * See the License for the specific language governing permissions and
2429+ * limitations under the License.
2430 */
2431
2432 /* The original from which this derives bore the following: */
2433
2434=== modified file 'src/main/java/com/akiban/sql/parser/CopyStatementNode.java'
2435--- src/main/java/com/akiban/sql/parser/CopyStatementNode.java 2012-12-30 20:08:04 +0000
2436+++ src/main/java/com/akiban/sql/parser/CopyStatementNode.java 2013-05-08 22:15:59 +0000
2437@@ -1,18 +1,17 @@
2438 /**
2439- * Copyright © 2012 Akiban Technologies, Inc. All rights
2440- * reserved.
2441- *
2442- * This program and the accompanying materials are made available
2443- * under the terms of the Eclipse Public License v1.0 which
2444- * accompanies this distribution, and is available at
2445- * http://www.eclipse.org/legal/epl-v10.html
2446- *
2447- * This program may also be available under different license terms.
2448- * For more information, see www.akiban.com or contact
2449- * licensing@akiban.com.
2450- *
2451- * Contributors:
2452- * Akiban Technologies, Inc.
2453+ * Copyright 2011-2013 Akiban Technologies, Inc.
2454+ *
2455+ * Licensed under the Apache License, Version 2.0 (the "License");
2456+ * you may not use this file except in compliance with the License.
2457+ * You may obtain a copy of the License at
2458+ *
2459+ * http://www.apache.org/licenses/LICENSE-2.0
2460+ *
2461+ * Unless required by applicable law or agreed to in writing, software
2462+ * distributed under the License is distributed on an "AS IS" BASIS,
2463+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2464+ * See the License for the specific language governing permissions and
2465+ * limitations under the License.
2466 */
2467
2468 package com.akiban.sql.parser;
2469
2470=== modified file 'src/main/java/com/akiban/sql/parser/CreateAliasNode.java'
2471--- src/main/java/com/akiban/sql/parser/CreateAliasNode.java 2013-04-10 23:54:23 +0000
2472+++ src/main/java/com/akiban/sql/parser/CreateAliasNode.java 2013-05-08 22:15:59 +0000
2473@@ -1,18 +1,17 @@
2474 /**
2475- * Copyright © 2012 Akiban Technologies, Inc. All rights
2476- * reserved.
2477- *
2478- * This program and the accompanying materials are made available
2479- * under the terms of the Eclipse Public License v1.0 which
2480- * accompanies this distribution, and is available at
2481- * http://www.eclipse.org/legal/epl-v10.html
2482- *
2483- * This program may also be available under different license terms.
2484- * For more information, see www.akiban.com or contact
2485- * licensing@akiban.com.
2486- *
2487- * Contributors:
2488- * Akiban Technologies, Inc.
2489+ * Copyright 2011-2013 Akiban Technologies, Inc.
2490+ *
2491+ * Licensed under the Apache License, Version 2.0 (the "License");
2492+ * you may not use this file except in compliance with the License.
2493+ * You may obtain a copy of the License at
2494+ *
2495+ * http://www.apache.org/licenses/LICENSE-2.0
2496+ *
2497+ * Unless required by applicable law or agreed to in writing, software
2498+ * distributed under the License is distributed on an "AS IS" BASIS,
2499+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2500+ * See the License for the specific language governing permissions and
2501+ * limitations under the License.
2502 */
2503
2504 /* The original from which this derives bore the following: */
2505
2506=== modified file 'src/main/java/com/akiban/sql/parser/CreateIndexNode.java'
2507--- src/main/java/com/akiban/sql/parser/CreateIndexNode.java 2013-03-06 11:08:05 +0000
2508+++ src/main/java/com/akiban/sql/parser/CreateIndexNode.java 2013-05-08 22:15:59 +0000
2509@@ -1,18 +1,17 @@
2510 /**
2511- * Copyright © 2012 Akiban Technologies, Inc. All rights
2512- * reserved.
2513- *
2514- * This program and the accompanying materials are made available
2515- * under the terms of the Eclipse Public License v1.0 which
2516- * accompanies this distribution, and is available at
2517- * http://www.eclipse.org/legal/epl-v10.html
2518- *
2519- * This program may also be available under different license terms.
2520- * For more information, see www.akiban.com or contact
2521- * licensing@akiban.com.
2522- *
2523- * Contributors:
2524- * Akiban Technologies, Inc.
2525+ * Copyright 2011-2013 Akiban Technologies, Inc.
2526+ *
2527+ * Licensed under the Apache License, Version 2.0 (the "License");
2528+ * you may not use this file except in compliance with the License.
2529+ * You may obtain a copy of the License at
2530+ *
2531+ * http://www.apache.org/licenses/LICENSE-2.0
2532+ *
2533+ * Unless required by applicable law or agreed to in writing, software
2534+ * distributed under the License is distributed on an "AS IS" BASIS,
2535+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2536+ * See the License for the specific language governing permissions and
2537+ * limitations under the License.
2538 */
2539
2540 /* The original from which this derives bore the following: */
2541
2542=== modified file 'src/main/java/com/akiban/sql/parser/CreateRoleNode.java'
2543--- src/main/java/com/akiban/sql/parser/CreateRoleNode.java 2012-11-07 17:49:31 +0000
2544+++ src/main/java/com/akiban/sql/parser/CreateRoleNode.java 2013-05-08 22:15:59 +0000
2545@@ -1,18 +1,17 @@
2546 /**
2547- * Copyright © 2012 Akiban Technologies, Inc. All rights
2548- * reserved.
2549- *
2550- * This program and the accompanying materials are made available
2551- * under the terms of the Eclipse Public License v1.0 which
2552- * accompanies this distribution, and is available at
2553- * http://www.eclipse.org/legal/epl-v10.html
2554- *
2555- * This program may also be available under different license terms.
2556- * For more information, see www.akiban.com or contact
2557- * licensing@akiban.com.
2558- *
2559- * Contributors:
2560- * Akiban Technologies, Inc.
2561+ * Copyright 2011-2013 Akiban Technologies, Inc.
2562+ *
2563+ * Licensed under the Apache License, Version 2.0 (the "License");
2564+ * you may not use this file except in compliance with the License.
2565+ * You may obtain a copy of the License at
2566+ *
2567+ * http://www.apache.org/licenses/LICENSE-2.0
2568+ *
2569+ * Unless required by applicable law or agreed to in writing, software
2570+ * distributed under the License is distributed on an "AS IS" BASIS,
2571+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2572+ * See the License for the specific language governing permissions and
2573+ * limitations under the License.
2574 */
2575
2576 /* The original from which this derives bore the following: */
2577
2578=== modified file 'src/main/java/com/akiban/sql/parser/CreateSchemaNode.java'
2579--- src/main/java/com/akiban/sql/parser/CreateSchemaNode.java 2012-11-07 17:49:31 +0000
2580+++ src/main/java/com/akiban/sql/parser/CreateSchemaNode.java 2013-05-08 22:15:59 +0000
2581@@ -1,18 +1,17 @@
2582 /**
2583- * Copyright © 2012 Akiban Technologies, Inc. All rights
2584- * reserved.
2585- *
2586- * This program and the accompanying materials are made available
2587- * under the terms of the Eclipse Public License v1.0 which
2588- * accompanies this distribution, and is available at
2589- * http://www.eclipse.org/legal/epl-v10.html
2590- *
2591- * This program may also be available under different license terms.
2592- * For more information, see www.akiban.com or contact
2593- * licensing@akiban.com.
2594- *
2595- * Contributors:
2596- * Akiban Technologies, Inc.
2597+ * Copyright 2011-2013 Akiban Technologies, Inc.
2598+ *
2599+ * Licensed under the Apache License, Version 2.0 (the "License");
2600+ * you may not use this file except in compliance with the License.
2601+ * You may obtain a copy of the License at
2602+ *
2603+ * http://www.apache.org/licenses/LICENSE-2.0
2604+ *
2605+ * Unless required by applicable law or agreed to in writing, software
2606+ * distributed under the License is distributed on an "AS IS" BASIS,
2607+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2608+ * See the License for the specific language governing permissions and
2609+ * limitations under the License.
2610 */
2611
2612 /* The original from which this derives bore the following: */
2613
2614=== modified file 'src/main/java/com/akiban/sql/parser/CreateSequenceNode.java'
2615--- src/main/java/com/akiban/sql/parser/CreateSequenceNode.java 2012-11-07 17:49:31 +0000
2616+++ src/main/java/com/akiban/sql/parser/CreateSequenceNode.java 2013-05-08 22:15:59 +0000
2617@@ -1,18 +1,17 @@
2618 /**
2619- * Copyright © 2012 Akiban Technologies, Inc. All rights
2620- * reserved.
2621- *
2622- * This program and the accompanying materials are made available
2623- * under the terms of the Eclipse Public License v1.0 which
2624- * accompanies this distribution, and is available at
2625- * http://www.eclipse.org/legal/epl-v10.html
2626- *
2627- * This program may also be available under different license terms.
2628- * For more information, see www.akiban.com or contact
2629- * licensing@akiban.com.
2630- *
2631- * Contributors:
2632- * Akiban Technologies, Inc.
2633+ * Copyright 2011-2013 Akiban Technologies, Inc.
2634+ *
2635+ * Licensed under the Apache License, Version 2.0 (the "License");
2636+ * you may not use this file except in compliance with the License.
2637+ * You may obtain a copy of the License at
2638+ *
2639+ * http://www.apache.org/licenses/LICENSE-2.0
2640+ *
2641+ * Unless required by applicable law or agreed to in writing, software
2642+ * distributed under the License is distributed on an "AS IS" BASIS,
2643+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2644+ * See the License for the specific language governing permissions and
2645+ * limitations under the License.
2646 */
2647
2648 /* The original from which this derives bore the following: */
2649
2650=== modified file 'src/main/java/com/akiban/sql/parser/CreateTableNode.java'
2651--- src/main/java/com/akiban/sql/parser/CreateTableNode.java 2012-11-07 17:49:31 +0000
2652+++ src/main/java/com/akiban/sql/parser/CreateTableNode.java 2013-05-08 22:15:59 +0000
2653@@ -1,18 +1,17 @@
2654 /**
2655- * Copyright © 2012 Akiban Technologies, Inc. All rights
2656- * reserved.
2657- *
2658- * This program and the accompanying materials are made available
2659- * under the terms of the Eclipse Public License v1.0 which
2660- * accompanies this distribution, and is available at
2661- * http://www.eclipse.org/legal/epl-v10.html
2662- *
2663- * This program may also be available under different license terms.
2664- * For more information, see www.akiban.com or contact
2665- * licensing@akiban.com.
2666- *
2667- * Contributors:
2668- * Akiban Technologies, Inc.
2669+ * Copyright 2011-2013 Akiban Technologies, Inc.
2670+ *
2671+ * Licensed under the Apache License, Version 2.0 (the "License");
2672+ * you may not use this file except in compliance with the License.
2673+ * You may obtain a copy of the License at
2674+ *
2675+ * http://www.apache.org/licenses/LICENSE-2.0
2676+ *
2677+ * Unless required by applicable law or agreed to in writing, software
2678+ * distributed under the License is distributed on an "AS IS" BASIS,
2679+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2680+ * See the License for the specific language governing permissions and
2681+ * limitations under the License.
2682 */
2683
2684 /* The original from which this derives bore the following: */
2685
2686=== modified file 'src/main/java/com/akiban/sql/parser/CreateTriggerNode.java'
2687--- src/main/java/com/akiban/sql/parser/CreateTriggerNode.java 2012-11-07 17:49:31 +0000
2688+++ src/main/java/com/akiban/sql/parser/CreateTriggerNode.java 2013-05-08 22:15:59 +0000
2689@@ -1,18 +1,17 @@
2690 /**
2691- * Copyright © 2012 Akiban Technologies, Inc. All rights
2692- * reserved.
2693- *
2694- * This program and the accompanying materials are made available
2695- * under the terms of the Eclipse Public License v1.0 which
2696- * accompanies this distribution, and is available at
2697- * http://www.eclipse.org/legal/epl-v10.html
2698- *
2699- * This program may also be available under different license terms.
2700- * For more information, see www.akiban.com or contact
2701- * licensing@akiban.com.
2702- *
2703- * Contributors:
2704- * Akiban Technologies, Inc.
2705+ * Copyright 2011-2013 Akiban Technologies, Inc.
2706+ *
2707+ * Licensed under the Apache License, Version 2.0 (the "License");
2708+ * you may not use this file except in compliance with the License.
2709+ * You may obtain a copy of the License at
2710+ *
2711+ * http://www.apache.org/licenses/LICENSE-2.0
2712+ *
2713+ * Unless required by applicable law or agreed to in writing, software
2714+ * distributed under the License is distributed on an "AS IS" BASIS,
2715+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2716+ * See the License for the specific language governing permissions and
2717+ * limitations under the License.
2718 */
2719
2720 /* The original from which this derives bore the following: */
2721
2722=== modified file 'src/main/java/com/akiban/sql/parser/CreateViewNode.java'
2723--- src/main/java/com/akiban/sql/parser/CreateViewNode.java 2012-11-07 17:49:31 +0000
2724+++ src/main/java/com/akiban/sql/parser/CreateViewNode.java 2013-05-08 22:15:59 +0000
2725@@ -1,18 +1,17 @@
2726 /**
2727- * Copyright © 2012 Akiban Technologies, Inc. All rights
2728- * reserved.
2729- *
2730- * This program and the accompanying materials are made available
2731- * under the terms of the Eclipse Public License v1.0 which
2732- * accompanies this distribution, and is available at
2733- * http://www.eclipse.org/legal/epl-v10.html
2734- *
2735- * This program may also be available under different license terms.
2736- * For more information, see www.akiban.com or contact
2737- * licensing@akiban.com.
2738- *
2739- * Contributors:
2740- * Akiban Technologies, Inc.
2741+ * Copyright 2011-2013 Akiban Technologies, Inc.
2742+ *
2743+ * Licensed under the Apache License, Version 2.0 (the "License");
2744+ * you may not use this file except in compliance with the License.
2745+ * You may obtain a copy of the License at
2746+ *
2747+ * http://www.apache.org/licenses/LICENSE-2.0
2748+ *
2749+ * Unless required by applicable law or agreed to in writing, software
2750+ * distributed under the License is distributed on an "AS IS" BASIS,
2751+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2752+ * See the License for the specific language governing permissions and
2753+ * limitations under the License.
2754 */
2755
2756 /* The original from which this derives bore the following: */
2757
2758=== modified file 'src/main/java/com/akiban/sql/parser/CurrentDatetimeOperatorNode.java'
2759--- src/main/java/com/akiban/sql/parser/CurrentDatetimeOperatorNode.java 2012-11-07 17:49:31 +0000
2760+++ src/main/java/com/akiban/sql/parser/CurrentDatetimeOperatorNode.java 2013-05-08 22:15:59 +0000
2761@@ -1,18 +1,17 @@
2762 /**
2763- * Copyright © 2012 Akiban Technologies, Inc. All rights
2764- * reserved.
2765- *
2766- * This program and the accompanying materials are made available
2767- * under the terms of the Eclipse Public License v1.0 which
2768- * accompanies this distribution, and is available at
2769- * http://www.eclipse.org/legal/epl-v10.html
2770- *
2771- * This program may also be available under different license terms.
2772- * For more information, see www.akiban.com or contact
2773- * licensing@akiban.com.
2774- *
2775- * Contributors:
2776- * Akiban Technologies, Inc.
2777+ * Copyright 2011-2013 Akiban Technologies, Inc.
2778+ *
2779+ * Licensed under the Apache License, Version 2.0 (the "License");
2780+ * you may not use this file except in compliance with the License.
2781+ * You may obtain a copy of the License at
2782+ *
2783+ * http://www.apache.org/licenses/LICENSE-2.0
2784+ *
2785+ * Unless required by applicable law or agreed to in writing, software
2786+ * distributed under the License is distributed on an "AS IS" BASIS,
2787+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2788+ * See the License for the specific language governing permissions and
2789+ * limitations under the License.
2790 */
2791
2792 /* The original from which this derives bore the following: */
2793
2794=== modified file 'src/main/java/com/akiban/sql/parser/CurrentOfNode.java'
2795--- src/main/java/com/akiban/sql/parser/CurrentOfNode.java 2012-11-07 17:49:31 +0000
2796+++ src/main/java/com/akiban/sql/parser/CurrentOfNode.java 2013-05-08 22:15:59 +0000
2797@@ -1,18 +1,17 @@
2798 /**
2799- * Copyright © 2012 Akiban Technologies, Inc. All rights
2800- * reserved.
2801- *
2802- * This program and the accompanying materials are made available
2803- * under the terms of the Eclipse Public License v1.0 which
2804- * accompanies this distribution, and is available at
2805- * http://www.eclipse.org/legal/epl-v10.html
2806- *
2807- * This program may also be available under different license terms.
2808- * For more information, see www.akiban.com or contact
2809- * licensing@akiban.com.
2810- *
2811- * Contributors:
2812- * Akiban Technologies, Inc.
2813+ * Copyright 2011-2013 Akiban Technologies, Inc.
2814+ *
2815+ * Licensed under the Apache License, Version 2.0 (the "License");
2816+ * you may not use this file except in compliance with the License.
2817+ * You may obtain a copy of the License at
2818+ *
2819+ * http://www.apache.org/licenses/LICENSE-2.0
2820+ *
2821+ * Unless required by applicable law or agreed to in writing, software
2822+ * distributed under the License is distributed on an "AS IS" BASIS,
2823+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2824+ * See the License for the specific language governing permissions and
2825+ * limitations under the License.
2826 */
2827
2828 /* The original from which this derives bore the following: */
2829
2830=== modified file 'src/main/java/com/akiban/sql/parser/CurrentRowLocationNode.java'
2831--- src/main/java/com/akiban/sql/parser/CurrentRowLocationNode.java 2012-11-07 17:49:31 +0000
2832+++ src/main/java/com/akiban/sql/parser/CurrentRowLocationNode.java 2013-05-08 22:15:59 +0000
2833@@ -1,18 +1,17 @@
2834 /**
2835- * Copyright © 2012 Akiban Technologies, Inc. All rights
2836- * reserved.
2837- *
2838- * This program and the accompanying materials are made available
2839- * under the terms of the Eclipse Public License v1.0 which
2840- * accompanies this distribution, and is available at
2841- * http://www.eclipse.org/legal/epl-v10.html
2842- *
2843- * This program may also be available under different license terms.
2844- * For more information, see www.akiban.com or contact
2845- * licensing@akiban.com.
2846- *
2847- * Contributors:
2848- * Akiban Technologies, Inc.
2849+ * Copyright 2011-2013 Akiban Technologies, Inc.
2850+ *
2851+ * Licensed under the Apache License, Version 2.0 (the "License");
2852+ * you may not use this file except in compliance with the License.
2853+ * You may obtain a copy of the License at
2854+ *
2855+ * http://www.apache.org/licenses/LICENSE-2.0
2856+ *
2857+ * Unless required by applicable law or agreed to in writing, software
2858+ * distributed under the License is distributed on an "AS IS" BASIS,
2859+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2860+ * See the License for the specific language governing permissions and
2861+ * limitations under the License.
2862 */
2863
2864 /* The original from which this derives bore the following: */
2865
2866=== modified file 'src/main/java/com/akiban/sql/parser/CurrentSequenceNode.java'
2867--- src/main/java/com/akiban/sql/parser/CurrentSequenceNode.java 2012-11-07 17:49:31 +0000
2868+++ src/main/java/com/akiban/sql/parser/CurrentSequenceNode.java 2013-05-08 22:15:59 +0000
2869@@ -1,18 +1,17 @@
2870 /**
2871- * Copyright © 2012 Akiban Technologies, Inc. All rights
2872- * reserved.
2873- *
2874- * This program and the accompanying materials are made available
2875- * under the terms of the Eclipse Public License v1.0 which
2876- * accompanies this distribution, and is available at
2877- * http://www.eclipse.org/legal/epl-v10.html
2878- *
2879- * This program may also be available under different license terms.
2880- * For more information, see www.akiban.com or contact
2881- * licensing@akiban.com.
2882- *
2883- * Contributors:
2884- * Akiban Technologies, Inc.
2885+ * Copyright 2011-2013 Akiban Technologies, Inc.
2886+ *
2887+ * Licensed under the Apache License, Version 2.0 (the "License");
2888+ * you may not use this file except in compliance with the License.
2889+ * You may obtain a copy of the License at
2890+ *
2891+ * http://www.apache.org/licenses/LICENSE-2.0
2892+ *
2893+ * Unless required by applicable law or agreed to in writing, software
2894+ * distributed under the License is distributed on an "AS IS" BASIS,
2895+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2896+ * See the License for the specific language governing permissions and
2897+ * limitations under the License.
2898 */
2899
2900 /* The original from which this derives bore the following: */
2901
2902=== modified file 'src/main/java/com/akiban/sql/parser/CursorNode.java'
2903--- src/main/java/com/akiban/sql/parser/CursorNode.java 2012-11-07 17:49:31 +0000
2904+++ src/main/java/com/akiban/sql/parser/CursorNode.java 2013-05-08 22:15:59 +0000
2905@@ -1,18 +1,17 @@
2906 /**
2907- * Copyright © 2012 Akiban Technologies, Inc. All rights
2908- * reserved.
2909- *
2910- * This program and the accompanying materials are made available
2911- * under the terms of the Eclipse Public License v1.0 which
2912- * accompanies this distribution, and is available at
2913- * http://www.eclipse.org/legal/epl-v10.html
2914- *
2915- * This program may also be available under different license terms.
2916- * For more information, see www.akiban.com or contact
2917- * licensing@akiban.com.
2918- *
2919- * Contributors:
2920- * Akiban Technologies, Inc.
2921+ * Copyright 2011-2013 Akiban Technologies, Inc.
2922+ *
2923+ * Licensed under the Apache License, Version 2.0 (the "License");
2924+ * you may not use this file except in compliance with the License.
2925+ * You may obtain a copy of the License at
2926+ *
2927+ * http://www.apache.org/licenses/LICENSE-2.0
2928+ *
2929+ * Unless required by applicable law or agreed to in writing, software
2930+ * distributed under the License is distributed on an "AS IS" BASIS,
2931+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2932+ * See the License for the specific language governing permissions and
2933+ * limitations under the License.
2934 */
2935
2936 /* The original from which this derives bore the following: */
2937
2938=== modified file 'src/main/java/com/akiban/sql/parser/DDLStatementNode.java'
2939--- src/main/java/com/akiban/sql/parser/DDLStatementNode.java 2012-11-07 17:49:31 +0000
2940+++ src/main/java/com/akiban/sql/parser/DDLStatementNode.java 2013-05-08 22:15:59 +0000
2941@@ -1,18 +1,17 @@
2942 /**
2943- * Copyright © 2012 Akiban Technologies, Inc. All rights
2944- * reserved.
2945- *
2946- * This program and the accompanying materials are made available
2947- * under the terms of the Eclipse Public License v1.0 which
2948- * accompanies this distribution, and is available at
2949- * http://www.eclipse.org/legal/epl-v10.html
2950- *
2951- * This program may also be available under different license terms.
2952- * For more information, see www.akiban.com or contact
2953- * licensing@akiban.com.
2954- *
2955- * Contributors:
2956- * Akiban Technologies, Inc.
2957+ * Copyright 2011-2013 Akiban Technologies, Inc.
2958+ *
2959+ * Licensed under the Apache License, Version 2.0 (the "License");
2960+ * you may not use this file except in compliance with the License.
2961+ * You may obtain a copy of the License at
2962+ *
2963+ * http://www.apache.org/licenses/LICENSE-2.0
2964+ *
2965+ * Unless required by applicable law or agreed to in writing, software
2966+ * distributed under the License is distributed on an "AS IS" BASIS,
2967+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2968+ * See the License for the specific language governing permissions and
2969+ * limitations under the License.
2970 */
2971
2972 /* The original from which this derives bore the following: */
2973
2974=== modified file 'src/main/java/com/akiban/sql/parser/DMLModStatementNode.java'
2975--- src/main/java/com/akiban/sql/parser/DMLModStatementNode.java 2012-11-07 17:49:31 +0000
2976+++ src/main/java/com/akiban/sql/parser/DMLModStatementNode.java 2013-05-08 22:15:59 +0000
2977@@ -1,18 +1,17 @@
2978 /**
2979- * Copyright © 2012 Akiban Technologies, Inc. All rights
2980- * reserved.
2981- *
2982- * This program and the accompanying materials are made available
2983- * under the terms of the Eclipse Public License v1.0 which
2984- * accompanies this distribution, and is available at
2985- * http://www.eclipse.org/legal/epl-v10.html
2986- *
2987- * This program may also be available under different license terms.
2988- * For more information, see www.akiban.com or contact
2989- * licensing@akiban.com.
2990- *
2991- * Contributors:
2992- * Akiban Technologies, Inc.
2993+ * Copyright 2011-2013 Akiban Technologies, Inc.
2994+ *
2995+ * Licensed under the Apache License, Version 2.0 (the "License");
2996+ * you may not use this file except in compliance with the License.
2997+ * You may obtain a copy of the License at
2998+ *
2999+ * http://www.apache.org/licenses/LICENSE-2.0
3000+ *
3001+ * Unless required by applicable law or agreed to in writing, software
3002+ * distributed under the License is distributed on an "AS IS" BASIS,
3003+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3004+ * See the License for the specific language governing permissions and
3005+ * limitations under the License.
3006 */
3007
3008 /* The original from which this derives bore the following: */
3009
3010=== modified file 'src/main/java/com/akiban/sql/parser/DMLStatementNode.java'
3011--- src/main/java/com/akiban/sql/parser/DMLStatementNode.java 2012-11-07 17:49:31 +0000
3012+++ src/main/java/com/akiban/sql/parser/DMLStatementNode.java 2013-05-08 22:15:59 +0000
3013@@ -1,18 +1,17 @@
3014 /**
3015- * Copyright © 2012 Akiban Technologies, Inc. All rights
3016- * reserved.
3017- *
3018- * This program and the accompanying materials are made available
3019- * under the terms of the Eclipse Public License v1.0 which
3020- * accompanies this distribution, and is available at
3021- * http://www.eclipse.org/legal/epl-v10.html
3022- *
3023- * This program may also be available under different license terms.
3024- * For more information, see www.akiban.com or contact
3025- * licensing@akiban.com.
3026- *
3027- * Contributors:
3028- * Akiban Technologies, Inc.
3029+ * Copyright 2011-2013 Akiban Technologies, Inc.
3030+ *
3031+ * Licensed under the Apache License, Version 2.0 (the "License");
3032+ * you may not use this file except in compliance with the License.
3033+ * You may obtain a copy of the License at
3034+ *
3035+ * http://www.apache.org/licenses/LICENSE-2.0
3036+ *
3037+ * Unless required by applicable law or agreed to in writing, software
3038+ * distributed under the License is distributed on an "AS IS" BASIS,
3039+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3040+ * See the License for the specific language governing permissions and
3041+ * limitations under the License.
3042 */
3043
3044 /* The original from which this derives bore the following: */
3045
3046=== modified file 'src/main/java/com/akiban/sql/parser/DeallocateStatementNode.java'
3047--- src/main/java/com/akiban/sql/parser/DeallocateStatementNode.java 2012-12-13 23:01:21 +0000
3048+++ src/main/java/com/akiban/sql/parser/DeallocateStatementNode.java 2013-05-08 22:15:59 +0000
3049@@ -1,18 +1,17 @@
3050 /**
3051- * Copyright © 2012 Akiban Technologies, Inc. All rights
3052- * reserved.
3053- *
3054- * This program and the accompanying materials are made available
3055- * under the terms of the Eclipse Public License v1.0 which
3056- * accompanies this distribution, and is available at
3057- * http://www.eclipse.org/legal/epl-v10.html
3058- *
3059- * This program may also be available under different license terms.
3060- * For more information, see www.akiban.com or contact
3061- * licensing@akiban.com.
3062- *
3063- * Contributors:
3064- * Akiban Technologies, Inc.
3065+ * Copyright 2011-2013 Akiban Technologies, Inc.
3066+ *
3067+ * Licensed under the Apache License, Version 2.0 (the "License");
3068+ * you may not use this file except in compliance with the License.
3069+ * You may obtain a copy of the License at
3070+ *
3071+ * http://www.apache.org/licenses/LICENSE-2.0
3072+ *
3073+ * Unless required by applicable law or agreed to in writing, software
3074+ * distributed under the License is distributed on an "AS IS" BASIS,
3075+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3076+ * See the License for the specific language governing permissions and
3077+ * limitations under the License.
3078 */
3079
3080 package com.akiban.sql.parser;
3081
3082=== modified file 'src/main/java/com/akiban/sql/parser/DeclareStatementNode.java'
3083--- src/main/java/com/akiban/sql/parser/DeclareStatementNode.java 2012-12-13 23:01:21 +0000
3084+++ src/main/java/com/akiban/sql/parser/DeclareStatementNode.java 2013-05-08 22:15:59 +0000
3085@@ -1,18 +1,17 @@
3086 /**
3087- * Copyright © 2012 Akiban Technologies, Inc. All rights
3088- * reserved.
3089- *
3090- * This program and the accompanying materials are made available
3091- * under the terms of the Eclipse Public License v1.0 which
3092- * accompanies this distribution, and is available at
3093- * http://www.eclipse.org/legal/epl-v10.html
3094- *
3095- * This program may also be available under different license terms.
3096- * For more information, see www.akiban.com or contact
3097- * licensing@akiban.com.
3098- *
3099- * Contributors:
3100- * Akiban Technologies, Inc.
3101+ * Copyright 2011-2013 Akiban Technologies, Inc.
3102+ *
3103+ * Licensed under the Apache License, Version 2.0 (the "License");
3104+ * you may not use this file except in compliance with the License.
3105+ * You may obtain a copy of the License at
3106+ *
3107+ * http://www.apache.org/licenses/LICENSE-2.0
3108+ *
3109+ * Unless required by applicable law or agreed to in writing, software
3110+ * distributed under the License is distributed on an "AS IS" BASIS,
3111+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3112+ * See the License for the specific language governing permissions and
3113+ * limitations under the License.
3114 */
3115
3116 package com.akiban.sql.parser;
3117
3118=== modified file 'src/main/java/com/akiban/sql/parser/DefaultNode.java'
3119--- src/main/java/com/akiban/sql/parser/DefaultNode.java 2012-11-07 17:49:31 +0000
3120+++ src/main/java/com/akiban/sql/parser/DefaultNode.java 2013-05-08 22:15:59 +0000
3121@@ -1,18 +1,17 @@
3122 /**
3123- * Copyright © 2012 Akiban Technologies, Inc. All rights
3124- * reserved.
3125- *
3126- * This program and the accompanying materials are made available
3127- * under the terms of the Eclipse Public License v1.0 which
3128- * accompanies this distribution, and is available at
3129- * http://www.eclipse.org/legal/epl-v10.html
3130- *
3131- * This program may also be available under different license terms.
3132- * For more information, see www.akiban.com or contact
3133- * licensing@akiban.com.
3134- *
3135- * Contributors:
3136- * Akiban Technologies, Inc.
3137+ * Copyright 2011-2013 Akiban Technologies, Inc.
3138+ *
3139+ * Licensed under the Apache License, Version 2.0 (the "License");
3140+ * you may not use this file except in compliance with the License.
3141+ * You may obtain a copy of the License at
3142+ *
3143+ * http://www.apache.org/licenses/LICENSE-2.0
3144+ *
3145+ * Unless required by applicable law or agreed to in writing, software
3146+ * distributed under the License is distributed on an "AS IS" BASIS,
3147+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3148+ * See the License for the specific language governing permissions and
3149+ * limitations under the License.
3150 */
3151
3152 /* The original from which this derives bore the following: */
3153
3154=== modified file 'src/main/java/com/akiban/sql/parser/DeleteNode.java'
3155--- src/main/java/com/akiban/sql/parser/DeleteNode.java 2012-11-07 17:49:31 +0000
3156+++ src/main/java/com/akiban/sql/parser/DeleteNode.java 2013-05-08 22:15:59 +0000
3157@@ -1,18 +1,17 @@
3158 /**
3159- * Copyright © 2012 Akiban Technologies, Inc. All rights
3160- * reserved.
3161- *
3162- * This program and the accompanying materials are made available
3163- * under the terms of the Eclipse Public License v1.0 which
3164- * accompanies this distribution, and is available at
3165- * http://www.eclipse.org/legal/epl-v10.html
3166- *
3167- * This program may also be available under different license terms.
3168- * For more information, see www.akiban.com or contact
3169- * licensing@akiban.com.
3170- *
3171- * Contributors:
3172- * Akiban Technologies, Inc.
3173+ * Copyright 2011-2013 Akiban Technologies, Inc.
3174+ *
3175+ * Licensed under the Apache License, Version 2.0 (the "License");
3176+ * you may not use this file except in compliance with the License.
3177+ * You may obtain a copy of the License at
3178+ *
3179+ * http://www.apache.org/licenses/LICENSE-2.0
3180+ *
3181+ * Unless required by applicable law or agreed to in writing, software
3182+ * distributed under the License is distributed on an "AS IS" BASIS,
3183+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3184+ * See the License for the specific language governing permissions and
3185+ * limitations under the License.
3186 */
3187
3188 /* The original from which this derives bore the following: */
3189
3190=== modified file 'src/main/java/com/akiban/sql/parser/DistinctNode.java'
3191--- src/main/java/com/akiban/sql/parser/DistinctNode.java 2012-11-07 17:49:31 +0000
3192+++ src/main/java/com/akiban/sql/parser/DistinctNode.java 2013-05-08 22:15:59 +0000
3193@@ -1,18 +1,17 @@
3194 /**
3195- * Copyright © 2012 Akiban Technologies, Inc. All rights
3196- * reserved.
3197- *
3198- * This program and the accompanying materials are made available
3199- * under the terms of the Eclipse Public License v1.0 which
3200- * accompanies this distribution, and is available at
3201- * http://www.eclipse.org/legal/epl-v10.html
3202- *
3203- * This program may also be available under different license terms.
3204- * For more information, see www.akiban.com or contact
3205- * licensing@akiban.com.
3206- *
3207- * Contributors:
3208- * Akiban Technologies, Inc.
3209+ * Copyright 2011-2013 Akiban Technologies, Inc.
3210+ *
3211+ * Licensed under the Apache License, Version 2.0 (the "License");
3212+ * you may not use this file except in compliance with the License.
3213+ * You may obtain a copy of the License at
3214+ *
3215+ * http://www.apache.org/licenses/LICENSE-2.0
3216+ *
3217+ * Unless required by applicable law or agreed to in writing, software
3218+ * distributed under the License is distributed on an "AS IS" BASIS,
3219+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3220+ * See the License for the specific language governing permissions and
3221+ * limitations under the License.
3222 */
3223
3224 /* The original from which this derives bore the following: */
3225
3226=== modified file 'src/main/java/com/akiban/sql/parser/DropAliasNode.java'
3227--- src/main/java/com/akiban/sql/parser/DropAliasNode.java 2012-11-28 20:18:21 +0000
3228+++ src/main/java/com/akiban/sql/parser/DropAliasNode.java 2013-05-08 22:15:59 +0000
3229@@ -1,18 +1,17 @@
3230 /**
3231- * Copyright © 2012 Akiban Technologies, Inc. All rights
3232- * reserved.
3233- *
3234- * This program and the accompanying materials are made available
3235- * under the terms of the Eclipse Public License v1.0 which
3236- * accompanies this distribution, and is available at
3237- * http://www.eclipse.org/legal/epl-v10.html
3238- *
3239- * This program may also be available under different license terms.
3240- * For more information, see www.akiban.com or contact
3241- * licensing@akiban.com.
3242- *
3243- * Contributors:
3244- * Akiban Technologies, Inc.
3245+ * Copyright 2011-2013 Akiban Technologies, Inc.
3246+ *
3247+ * Licensed under the Apache License, Version 2.0 (the "License");
3248+ * you may not use this file except in compliance with the License.
3249+ * You may obtain a copy of the License at
3250+ *
3251+ * http://www.apache.org/licenses/LICENSE-2.0
3252+ *
3253+ * Unless required by applicable law or agreed to in writing, software
3254+ * distributed under the License is distributed on an "AS IS" BASIS,
3255+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3256+ * See the License for the specific language governing permissions and
3257+ * limitations under the License.
3258 */
3259
3260 /* The original from which this derives bore the following: */
3261
3262=== modified file 'src/main/java/com/akiban/sql/parser/DropGroupNode.java'
3263--- src/main/java/com/akiban/sql/parser/DropGroupNode.java 2012-11-07 17:49:31 +0000
3264+++ src/main/java/com/akiban/sql/parser/DropGroupNode.java 2013-05-08 22:15:59 +0000
3265@@ -1,18 +1,17 @@
3266 /**
3267- * Copyright © 2012 Akiban Technologies, Inc. All rights
3268- * reserved.
3269- *
3270- * This program and the accompanying materials are made available
3271- * under the terms of the Eclipse Public License v1.0 which
3272- * accompanies this distribution, and is available at
3273- * http://www.eclipse.org/legal/epl-v10.html
3274- *
3275- * This program may also be available under different license terms.
3276- * For more information, see www.akiban.com or contact
3277- * licensing@akiban.com.
3278- *
3279- * Contributors:
3280- * Akiban Technologies, Inc.
3281+ * Copyright 2011-2013 Akiban Technologies, Inc.
3282+ *
3283+ * Licensed under the Apache License, Version 2.0 (the "License");
3284+ * you may not use this file except in compliance with the License.
3285+ * You may obtain a copy of the License at
3286+ *
3287+ * http://www.apache.org/licenses/LICENSE-2.0
3288+ *
3289+ * Unless required by applicable law or agreed to in writing, software
3290+ * distributed under the License is distributed on an "AS IS" BASIS,
3291+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3292+ * See the License for the specific language governing permissions and
3293+ * limitations under the License.
3294 */
3295
3296 package com.akiban.sql.parser;
3297
3298=== modified file 'src/main/java/com/akiban/sql/parser/DropIndexNode.java'
3299--- src/main/java/com/akiban/sql/parser/DropIndexNode.java 2012-11-07 17:49:31 +0000
3300+++ src/main/java/com/akiban/sql/parser/DropIndexNode.java 2013-05-08 22:15:59 +0000
3301@@ -1,18 +1,17 @@
3302 /**
3303- * Copyright © 2012 Akiban Technologies, Inc. All rights
3304- * reserved.
3305- *
3306- * This program and the accompanying materials are made available
3307- * under the terms of the Eclipse Public License v1.0 which
3308- * accompanies this distribution, and is available at
3309- * http://www.eclipse.org/legal/epl-v10.html
3310- *
3311- * This program may also be available under different license terms.
3312- * For more information, see www.akiban.com or contact
3313- * licensing@akiban.com.
3314- *
3315- * Contributors:
3316- * Akiban Technologies, Inc.
3317+ * Copyright 2011-2013 Akiban Technologies, Inc.
3318+ *
3319+ * Licensed under the Apache License, Version 2.0 (the "License");
3320+ * you may not use this file except in compliance with the License.
3321+ * You may obtain a copy of the License at
3322+ *
3323+ * http://www.apache.org/licenses/LICENSE-2.0
3324+ *
3325+ * Unless required by applicable law or agreed to in writing, software
3326+ * distributed under the License is distributed on an "AS IS" BASIS,
3327+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3328+ * See the License for the specific language governing permissions and
3329+ * limitations under the License.
3330 */
3331
3332 /* The original from which this derives bore the following: */
3333
3334=== modified file 'src/main/java/com/akiban/sql/parser/DropRoleNode.java'
3335--- src/main/java/com/akiban/sql/parser/DropRoleNode.java 2012-11-07 17:49:31 +0000
3336+++ src/main/java/com/akiban/sql/parser/DropRoleNode.java 2013-05-08 22:15:59 +0000
3337@@ -1,18 +1,17 @@
3338 /**
3339- * Copyright © 2012 Akiban Technologies, Inc. All rights
3340- * reserved.
3341- *
3342- * This program and the accompanying materials are made available
3343- * under the terms of the Eclipse Public License v1.0 which
3344- * accompanies this distribution, and is available at
3345- * http://www.eclipse.org/legal/epl-v10.html
3346- *
3347- * This program may also be available under different license terms.
3348- * For more information, see www.akiban.com or contact
3349- * licensing@akiban.com.
3350- *
3351- * Contributors:
3352- * Akiban Technologies, Inc.
3353+ * Copyright 2011-2013 Akiban Technologies, Inc.
3354+ *
3355+ * Licensed under the Apache License, Version 2.0 (the "License");
3356+ * you may not use this file except in compliance with the License.
3357+ * You may obtain a copy of the License at
3358+ *
3359+ * http://www.apache.org/licenses/LICENSE-2.0
3360+ *
3361+ * Unless required by applicable law or agreed to in writing, software
3362+ * distributed under the License is distributed on an "AS IS" BASIS,
3363+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3364+ * See the License for the specific language governing permissions and
3365+ * limitations under the License.
3366 */
3367
3368 /* The original from which this derives bore the following: */
3369
3370=== modified file 'src/main/java/com/akiban/sql/parser/DropSchemaNode.java'
3371--- src/main/java/com/akiban/sql/parser/DropSchemaNode.java 2012-11-07 17:49:31 +0000
3372+++ src/main/java/com/akiban/sql/parser/DropSchemaNode.java 2013-05-08 22:15:59 +0000
3373@@ -1,18 +1,17 @@
3374 /**
3375- * Copyright © 2012 Akiban Technologies, Inc. All rights
3376- * reserved.
3377- *
3378- * This program and the accompanying materials are made available
3379- * under the terms of the Eclipse Public License v1.0 which
3380- * accompanies this distribution, and is available at
3381- * http://www.eclipse.org/legal/epl-v10.html
3382- *
3383- * This program may also be available under different license terms.
3384- * For more information, see www.akiban.com or contact
3385- * licensing@akiban.com.
3386- *
3387- * Contributors:
3388- * Akiban Technologies, Inc.
3389+ * Copyright 2011-2013 Akiban Technologies, Inc.
3390+ *
3391+ * Licensed under the Apache License, Version 2.0 (the "License");
3392+ * you may not use this file except in compliance with the License.
3393+ * You may obtain a copy of the License at
3394+ *
3395+ * http://www.apache.org/licenses/LICENSE-2.0
3396+ *
3397+ * Unless required by applicable law or agreed to in writing, software
3398+ * distributed under the License is distributed on an "AS IS" BASIS,
3399+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3400+ * See the License for the specific language governing permissions and
3401+ * limitations under the License.
3402 */
3403
3404 /* The original from which this derives bore the following: */
3405
3406=== modified file 'src/main/java/com/akiban/sql/parser/DropSequenceNode.java'
3407--- src/main/java/com/akiban/sql/parser/DropSequenceNode.java 2013-04-13 22:25:50 +0000
3408+++ src/main/java/com/akiban/sql/parser/DropSequenceNode.java 2013-05-08 22:15:59 +0000
3409@@ -1,18 +1,17 @@
3410 /**
3411- * Copyright © 2012 Akiban Technologies, Inc. All rights
3412- * reserved.
3413- *
3414- * This program and the accompanying materials are made available
3415- * under the terms of the Eclipse Public License v1.0 which
3416- * accompanies this distribution, and is available at
3417- * http://www.eclipse.org/legal/epl-v10.html
3418- *
3419- * This program may also be available under different license terms.
3420- * For more information, see www.akiban.com or contact
3421- * licensing@akiban.com.
3422- *
3423- * Contributors:
3424- * Akiban Technologies, Inc.
3425+ * Copyright 2011-2013 Akiban Technologies, Inc.
3426+ *
3427+ * Licensed under the Apache License, Version 2.0 (the "License");
3428+ * you may not use this file except in compliance with the License.
3429+ * You may obtain a copy of the License at
3430+ *
3431+ * http://www.apache.org/licenses/LICENSE-2.0
3432+ *
3433+ * Unless required by applicable law or agreed to in writing, software
3434+ * distributed under the License is distributed on an "AS IS" BASIS,
3435+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3436+ * See the License for the specific language governing permissions and
3437+ * limitations under the License.
3438 */
3439
3440 /* The original from which this derives bore the following: */
3441
3442=== modified file 'src/main/java/com/akiban/sql/parser/DropTableNode.java'
3443--- src/main/java/com/akiban/sql/parser/DropTableNode.java 2012-11-28 20:18:21 +0000
3444+++ src/main/java/com/akiban/sql/parser/DropTableNode.java 2013-05-08 22:15:59 +0000
3445@@ -1,18 +1,17 @@
3446 /**
3447- * Copyright © 2012 Akiban Technologies, Inc. All rights
3448- * reserved.
3449- *
3450- * This program and the accompanying materials are made available
3451- * under the terms of the Eclipse Public License v1.0 which
3452- * accompanies this distribution, and is available at
3453- * http://www.eclipse.org/legal/epl-v10.html
3454- *
3455- * This program may also be available under different license terms.
3456- * For more information, see www.akiban.com or contact
3457- * licensing@akiban.com.
3458- *
3459- * Contributors:
3460- * Akiban Technologies, Inc.
3461+ * Copyright 2011-2013 Akiban Technologies, Inc.
3462+ *
3463+ * Licensed under the Apache License, Version 2.0 (the "License");
3464+ * you may not use this file except in compliance with the License.
3465+ * You may obtain a copy of the License at
3466+ *
3467+ * http://www.apache.org/licenses/LICENSE-2.0
3468+ *
3469+ * Unless required by applicable law or agreed to in writing, software
3470+ * distributed under the License is distributed on an "AS IS" BASIS,
3471+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3472+ * See the License for the specific language governing permissions and
3473+ * limitations under the License.
3474 */
3475
3476 /* The original from which this derives bore the following: */
3477
3478=== modified file 'src/main/java/com/akiban/sql/parser/DropTriggerNode.java'
3479--- src/main/java/com/akiban/sql/parser/DropTriggerNode.java 2012-11-07 17:49:31 +0000
3480+++ src/main/java/com/akiban/sql/parser/DropTriggerNode.java 2013-05-08 22:15:59 +0000
3481@@ -1,18 +1,17 @@
3482 /**
3483- * Copyright © 2012 Akiban Technologies, Inc. All rights
3484- * reserved.
3485- *
3486- * This program and the accompanying materials are made available
3487- * under the terms of the Eclipse Public License v1.0 which
3488- * accompanies this distribution, and is available at
3489- * http://www.eclipse.org/legal/epl-v10.html
3490- *
3491- * This program may also be available under different license terms.
3492- * For more information, see www.akiban.com or contact
3493- * licensing@akiban.com.
3494- *
3495- * Contributors:
3496- * Akiban Technologies, Inc.
3497+ * Copyright 2011-2013 Akiban Technologies, Inc.
3498+ *
3499+ * Licensed under the Apache License, Version 2.0 (the "License");
3500+ * you may not use this file except in compliance with the License.
3501+ * You may obtain a copy of the License at
3502+ *
3503+ * http://www.apache.org/licenses/LICENSE-2.0
3504+ *
3505+ * Unless required by applicable law or agreed to in writing, software
3506+ * distributed under the License is distributed on an "AS IS" BASIS,
3507+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3508+ * See the License for the specific language governing permissions and
3509+ * limitations under the License.
3510 */
3511
3512 /* The original from which this derives bore the following: */
3513
3514=== modified file 'src/main/java/com/akiban/sql/parser/DropViewNode.java'
3515--- src/main/java/com/akiban/sql/parser/DropViewNode.java 2012-11-07 17:49:31 +0000
3516+++ src/main/java/com/akiban/sql/parser/DropViewNode.java 2013-05-08 22:15:59 +0000
3517@@ -1,18 +1,17 @@
3518 /**
3519- * Copyright © 2012 Akiban Technologies, Inc. All rights
3520- * reserved.
3521- *
3522- * This program and the accompanying materials are made available
3523- * under the terms of the Eclipse Public License v1.0 which
3524- * accompanies this distribution, and is available at
3525- * http://www.eclipse.org/legal/epl-v10.html
3526- *
3527- * This program may also be available under different license terms.
3528- * For more information, see www.akiban.com or contact
3529- * licensing@akiban.com.
3530- *
3531- * Contributors:
3532- * Akiban Technologies, Inc.
3533+ * Copyright 2011-2013 Akiban Technologies, Inc.
3534+ *
3535+ * Licensed under the Apache License, Version 2.0 (the "License");
3536+ * you may not use this file except in compliance with the License.
3537+ * You may obtain a copy of the License at
3538+ *
3539+ * http://www.apache.org/licenses/LICENSE-2.0
3540+ *
3541+ * Unless required by applicable law or agreed to in writing, software
3542+ * distributed under the License is distributed on an "AS IS" BASIS,
3543+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3544+ * See the License for the specific language governing permissions and
3545+ * limitations under the License.
3546 */
3547
3548 /* The original from which this derives bore the following: */
3549
3550=== modified file 'src/main/java/com/akiban/sql/parser/ExecuteStatementNode.java'
3551--- src/main/java/com/akiban/sql/parser/ExecuteStatementNode.java 2012-12-13 23:01:21 +0000
3552+++ src/main/java/com/akiban/sql/parser/ExecuteStatementNode.java 2013-05-08 22:15:59 +0000
3553@@ -1,18 +1,17 @@
3554 /**
3555- * Copyright © 2012 Akiban Technologies, Inc. All rights
3556- * reserved.
3557- *
3558- * This program and the accompanying materials are made available
3559- * under the terms of the Eclipse Public License v1.0 which
3560- * accompanies this distribution, and is available at
3561- * http://www.eclipse.org/legal/epl-v10.html
3562- *
3563- * This program may also be available under different license terms.
3564- * For more information, see www.akiban.com or contact
3565- * licensing@akiban.com.
3566- *
3567- * Contributors:
3568- * Akiban Technologies, Inc.
3569+ * Copyright 2011-2013 Akiban Technologies, Inc.
3570+ *
3571+ * Licensed under the Apache License, Version 2.0 (the "License");
3572+ * you may not use this file except in compliance with the License.
3573+ * You may obtain a copy of the License at
3574+ *
3575+ * http://www.apache.org/licenses/LICENSE-2.0
3576+ *
3577+ * Unless required by applicable law or agreed to in writing, software
3578+ * distributed under the License is distributed on an "AS IS" BASIS,
3579+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3580+ * See the License for the specific language governing permissions and
3581+ * limitations under the License.
3582 */
3583
3584 package com.akiban.sql.parser;
3585
3586=== modified file 'src/main/java/com/akiban/sql/parser/ExistenceCheck.java'
3587--- src/main/java/com/akiban/sql/parser/ExistenceCheck.java 2012-11-07 17:49:31 +0000
3588+++ src/main/java/com/akiban/sql/parser/ExistenceCheck.java 2013-05-08 22:15:59 +0000
3589@@ -1,18 +1,17 @@
3590 /**
3591- * Copyright © 2012 Akiban Technologies, Inc. All rights
3592- * reserved.
3593- *
3594- * This program and the accompanying materials are made available
3595- * under the terms of the Eclipse Public License v1.0 which
3596- * accompanies this distribution, and is available at
3597- * http://www.eclipse.org/legal/epl-v10.html
3598- *
3599- * This program may also be available under different license terms.
3600- * For more information, see www.akiban.com or contact
3601- * licensing@akiban.com.
3602- *
3603- * Contributors:
3604- * Akiban Technologies, Inc.
3605+ * Copyright 2011-2013 Akiban Technologies, Inc.
3606+ *
3607+ * Licensed under the Apache License, Version 2.0 (the "License");
3608+ * you may not use this file except in compliance with the License.
3609+ * You may obtain a copy of the License at
3610+ *
3611+ * http://www.apache.org/licenses/LICENSE-2.0
3612+ *
3613+ * Unless required by applicable law or agreed to in writing, software
3614+ * distributed under the License is distributed on an "AS IS" BASIS,
3615+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3616+ * See the License for the specific language governing permissions and
3617+ * limitations under the License.
3618 */
3619
3620 package com.akiban.sql.parser;
3621
3622=== modified file 'src/main/java/com/akiban/sql/parser/ExplainStatementNode.java'
3623--- src/main/java/com/akiban/sql/parser/ExplainStatementNode.java 2013-01-07 20:39:53 +0000
3624+++ src/main/java/com/akiban/sql/parser/ExplainStatementNode.java 2013-05-08 22:15:59 +0000
3625@@ -1,18 +1,17 @@
3626 /**
3627- * Copyright © 2012 Akiban Technologies, Inc. All rights
3628- * reserved.
3629- *
3630- * This program and the accompanying materials are made available
3631- * under the terms of the Eclipse Public License v1.0 which
3632- * accompanies this distribution, and is available at
3633- * http://www.eclipse.org/legal/epl-v10.html
3634- *
3635- * This program may also be available under different license terms.
3636- * For more information, see www.akiban.com or contact
3637- * licensing@akiban.com.
3638- *
3639- * Contributors:
3640- * Akiban Technologies, Inc.
3641+ * Copyright 2011-2013 Akiban Technologies, Inc.
3642+ *
3643+ * Licensed under the Apache License, Version 2.0 (the "License");
3644+ * you may not use this file except in compliance with the License.
3645+ * You may obtain a copy of the License at
3646+ *
3647+ * http://www.apache.org/licenses/LICENSE-2.0
3648+ *
3649+ * Unless required by applicable law or agreed to in writing, software
3650+ * distributed under the License is distributed on an "AS IS" BASIS,
3651+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3652+ * See the License for the specific language governing permissions and
3653+ * limitations under the License.
3654 */
3655
3656 package com.akiban.sql.parser;
3657
3658=== modified file 'src/main/java/com/akiban/sql/parser/ExplicitCollateNode.java'
3659--- src/main/java/com/akiban/sql/parser/ExplicitCollateNode.java 2012-11-07 17:49:31 +0000
3660+++ src/main/java/com/akiban/sql/parser/ExplicitCollateNode.java 2013-05-08 22:15:59 +0000
3661@@ -1,18 +1,17 @@
3662 /**
3663- * Copyright © 2012 Akiban Technologies, Inc. All rights
3664- * reserved.
3665- *
3666- * This program and the accompanying materials are made available
3667- * under the terms of the Eclipse Public License v1.0 which
3668- * accompanies this distribution, and is available at
3669- * http://www.eclipse.org/legal/epl-v10.html
3670- *
3671- * This program may also be available under different license terms.
3672- * For more information, see www.akiban.com or contact
3673- * licensing@akiban.com.
3674- *
3675- * Contributors:
3676- * Akiban Technologies, Inc.
3677+ * Copyright 2011-2013 Akiban Technologies, Inc.
3678+ *
3679+ * Licensed under the Apache License, Version 2.0 (the "License");
3680+ * you may not use this file except in compliance with the License.
3681+ * You may obtain a copy of the License at
3682+ *
3683+ * http://www.apache.org/licenses/LICENSE-2.0
3684+ *
3685+ * Unless required by applicable law or agreed to in writing, software
3686+ * distributed under the License is distributed on an "AS IS" BASIS,
3687+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3688+ * See the License for the specific language governing permissions and
3689+ * limitations under the License.
3690 */
3691
3692 package com.akiban.sql.parser;
3693
3694=== modified file 'src/main/java/com/akiban/sql/parser/ExtractOperatorNode.java'
3695--- src/main/java/com/akiban/sql/parser/ExtractOperatorNode.java 2012-11-07 17:49:31 +0000
3696+++ src/main/java/com/akiban/sql/parser/ExtractOperatorNode.java 2013-05-08 22:15:59 +0000
3697@@ -1,18 +1,17 @@
3698 /**
3699- * Copyright © 2012 Akiban Technologies, Inc. All rights
3700- * reserved.
3701- *
3702- * This program and the accompanying materials are made available
3703- * under the terms of the Eclipse Public License v1.0 which
3704- * accompanies this distribution, and is available at
3705- * http://www.eclipse.org/legal/epl-v10.html
3706- *
3707- * This program may also be available under different license terms.
3708- * For more information, see www.akiban.com or contact
3709- * licensing@akiban.com.
3710- *
3711- * Contributors:
3712- * Akiban Technologies, Inc.
3713+ * Copyright 2011-2013 Akiban Technologies, Inc.
3714+ *
3715+ * Licensed under the Apache License, Version 2.0 (the "License");
3716+ * you may not use this file except in compliance with the License.
3717+ * You may obtain a copy of the License at
3718+ *
3719+ * http://www.apache.org/licenses/LICENSE-2.0
3720+ *
3721+ * Unless required by applicable law or agreed to in writing, software
3722+ * distributed under the License is distributed on an "AS IS" BASIS,
3723+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3724+ * See the License for the specific language governing permissions and
3725+ * limitations under the License.
3726 */
3727
3728 /* The original from which this derives bore the following: */
3729
3730=== modified file 'src/main/java/com/akiban/sql/parser/FKConstraintDefinitionNode.java'
3731--- src/main/java/com/akiban/sql/parser/FKConstraintDefinitionNode.java 2012-11-07 17:49:31 +0000
3732+++ src/main/java/com/akiban/sql/parser/FKConstraintDefinitionNode.java 2013-05-08 22:15:59 +0000
3733@@ -1,18 +1,17 @@
3734 /**
3735- * Copyright © 2012 Akiban Technologies, Inc. All rights
3736- * reserved.
3737- *
3738- * This program and the accompanying materials are made available
3739- * under the terms of the Eclipse Public License v1.0 which
3740- * accompanies this distribution, and is available at
3741- * http://www.eclipse.org/legal/epl-v10.html
3742- *
3743- * This program may also be available under different license terms.
3744- * For more information, see www.akiban.com or contact
3745- * licensing@akiban.com.
3746- *
3747- * Contributors:
3748- * Akiban Technologies, Inc.
3749+ * Copyright 2011-2013 Akiban Technologies, Inc.
3750+ *
3751+ * Licensed under the Apache License, Version 2.0 (the "License");
3752+ * you may not use this file except in compliance with the License.
3753+ * You may obtain a copy of the License at
3754+ *
3755+ * http://www.apache.org/licenses/LICENSE-2.0
3756+ *
3757+ * Unless required by applicable law or agreed to in writing, software
3758+ * distributed under the License is distributed on an "AS IS" BASIS,
3759+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3760+ * See the License for the specific language governing permissions and
3761+ * limitations under the License.
3762 */
3763
3764 /* The original from which this derives bore the following: */
3765
3766=== modified file 'src/main/java/com/akiban/sql/parser/FetchStatementNode.java'
3767--- src/main/java/com/akiban/sql/parser/FetchStatementNode.java 2012-12-13 23:01:21 +0000
3768+++ src/main/java/com/akiban/sql/parser/FetchStatementNode.java 2013-05-08 22:15:59 +0000
3769@@ -1,18 +1,17 @@
3770 /**
3771- * Copyright © 2012 Akiban Technologies, Inc. All rights
3772- * reserved.
3773- *
3774- * This program and the accompanying materials are made available
3775- * under the terms of the Eclipse Public License v1.0 which
3776- * accompanies this distribution, and is available at
3777- * http://www.eclipse.org/legal/epl-v10.html
3778- *
3779- * This program may also be available under different license terms.
3780- * For more information, see www.akiban.com or contact
3781- * licensing@akiban.com.
3782- *
3783- * Contributors:
3784- * Akiban Technologies, Inc.
3785+ * Copyright 2011-2013 Akiban Technologies, Inc.
3786+ *
3787+ * Licensed under the Apache License, Version 2.0 (the "License");
3788+ * you may not use this file except in compliance with the License.
3789+ * You may obtain a copy of the License at
3790+ *
3791+ * http://www.apache.org/licenses/LICENSE-2.0
3792+ *
3793+ * Unless required by applicable law or agreed to in writing, software
3794+ * distributed under the License is distributed on an "AS IS" BASIS,
3795+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3796+ * See the License for the specific language governing permissions and
3797+ * limitations under the License.
3798 */
3799
3800 package com.akiban.sql.parser;
3801
3802=== modified file 'src/main/java/com/akiban/sql/parser/FromBaseTable.java'
3803--- src/main/java/com/akiban/sql/parser/FromBaseTable.java 2012-11-07 17:49:31 +0000
3804+++ src/main/java/com/akiban/sql/parser/FromBaseTable.java 2013-05-08 22:15:59 +0000
3805@@ -1,18 +1,17 @@
3806 /**
3807- * Copyright © 2012 Akiban Technologies, Inc. All rights
3808- * reserved.
3809- *
3810- * This program and the accompanying materials are made available
3811- * under the terms of the Eclipse Public License v1.0 which
3812- * accompanies this distribution, and is available at
3813- * http://www.eclipse.org/legal/epl-v10.html
3814- *
3815- * This program may also be available under different license terms.
3816- * For more information, see www.akiban.com or contact
3817- * licensing@akiban.com.
3818- *
3819- * Contributors:
3820- * Akiban Technologies, Inc.
3821+ * Copyright 2011-2013 Akiban Technologies, Inc.
3822+ *
3823+ * Licensed under the Apache License, Version 2.0 (the "License");
3824+ * you may not use this file except in compliance with the License.
3825+ * You may obtain a copy of the License at
3826+ *
3827+ * http://www.apache.org/licenses/LICENSE-2.0
3828+ *
3829+ * Unless required by applicable law or agreed to in writing, software
3830+ * distributed under the License is distributed on an "AS IS" BASIS,
3831+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3832+ * See the License for the specific language governing permissions and
3833+ * limitations under the License.
3834 */
3835
3836 /* The original from which this derives bore the following: */
3837
3838=== modified file 'src/main/java/com/akiban/sql/parser/FromList.java'
3839--- src/main/java/com/akiban/sql/parser/FromList.java 2012-11-07 17:49:31 +0000
3840+++ src/main/java/com/akiban/sql/parser/FromList.java 2013-05-08 22:15:59 +0000
3841@@ -1,18 +1,17 @@
3842 /**
3843- * Copyright © 2012 Akiban Technologies, Inc. All rights
3844- * reserved.
3845- *
3846- * This program and the accompanying materials are made available
3847- * under the terms of the Eclipse Public License v1.0 which
3848- * accompanies this distribution, and is available at
3849- * http://www.eclipse.org/legal/epl-v10.html
3850- *
3851- * This program may also be available under different license terms.
3852- * For more information, see www.akiban.com or contact
3853- * licensing@akiban.com.
3854- *
3855- * Contributors:
3856- * Akiban Technologies, Inc.
3857+ * Copyright 2011-2013 Akiban Technologies, Inc.
3858+ *
3859+ * Licensed under the Apache License, Version 2.0 (the "License");
3860+ * you may not use this file except in compliance with the License.
3861+ * You may obtain a copy of the License at
3862+ *
3863+ * http://www.apache.org/licenses/LICENSE-2.0
3864+ *
3865+ * Unless required by applicable law or agreed to in writing, software
3866+ * distributed under the License is distributed on an "AS IS" BASIS,
3867+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3868+ * See the License for the specific language governing permissions and
3869+ * limitations under the License.
3870 */
3871
3872 /* The original from which this derives bore the following: */
3873
3874=== modified file 'src/main/java/com/akiban/sql/parser/FromSubquery.java'
3875--- src/main/java/com/akiban/sql/parser/FromSubquery.java 2012-11-07 17:49:31 +0000
3876+++ src/main/java/com/akiban/sql/parser/FromSubquery.java 2013-05-08 22:15:59 +0000
3877@@ -1,18 +1,17 @@
3878 /**
3879- * Copyright © 2012 Akiban Technologies, Inc. All rights
3880- * reserved.
3881- *
3882- * This program and the accompanying materials are made available
3883- * under the terms of the Eclipse Public License v1.0 which
3884- * accompanies this distribution, and is available at
3885- * http://www.eclipse.org/legal/epl-v10.html
3886- *
3887- * This program may also be available under different license terms.
3888- * For more information, see www.akiban.com or contact
3889- * licensing@akiban.com.
3890- *
3891- * Contributors:
3892- * Akiban Technologies, Inc.
3893+ * Copyright 2011-2013 Akiban Technologies, Inc.
3894+ *
3895+ * Licensed under the Apache License, Version 2.0 (the "License");
3896+ * you may not use this file except in compliance with the License.
3897+ * You may obtain a copy of the License at
3898+ *
3899+ * http://www.apache.org/licenses/LICENSE-2.0
3900+ *
3901+ * Unless required by applicable law or agreed to in writing, software
3902+ * distributed under the License is distributed on an "AS IS" BASIS,
3903+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3904+ * See the License for the specific language governing permissions and
3905+ * limitations under the License.
3906 */
3907
3908 /* The original from which this derives bore the following: */
3909
3910=== modified file 'src/main/java/com/akiban/sql/parser/FromTable.java'
3911--- src/main/java/com/akiban/sql/parser/FromTable.java 2013-01-10 23:53:16 +0000
3912+++ src/main/java/com/akiban/sql/parser/FromTable.java 2013-05-08 22:15:59 +0000
3913@@ -1,18 +1,17 @@
3914 /**
3915- * Copyright © 2012 Akiban Technologies, Inc. All rights
3916- * reserved.
3917- *
3918- * This program and the accompanying materials are made available
3919- * under the terms of the Eclipse Public License v1.0 which
3920- * accompanies this distribution, and is available at
3921- * http://www.eclipse.org/legal/epl-v10.html
3922- *
3923- * This program may also be available under different license terms.
3924- * For more information, see www.akiban.com or contact
3925- * licensing@akiban.com.
3926- *
3927- * Contributors:
3928- * Akiban Technologies, Inc.
3929+ * Copyright 2011-2013 Akiban Technologies, Inc.
3930+ *
3931+ * Licensed under the Apache License, Version 2.0 (the "License");
3932+ * you may not use this file except in compliance with the License.
3933+ * You may obtain a copy of the License at
3934+ *
3935+ * http://www.apache.org/licenses/LICENSE-2.0
3936+ *
3937+ * Unless required by applicable law or agreed to in writing, software
3938+ * distributed under the License is distributed on an "AS IS" BASIS,
3939+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3940+ * See the License for the specific language governing permissions and
3941+ * limitations under the License.
3942 */
3943
3944 /* The original from which this derives bore the following: */
3945
3946=== modified file 'src/main/java/com/akiban/sql/parser/FromVTI.java'
3947--- src/main/java/com/akiban/sql/parser/FromVTI.java 2012-11-07 17:49:31 +0000
3948+++ src/main/java/com/akiban/sql/parser/FromVTI.java 2013-05-08 22:15:59 +0000
3949@@ -1,18 +1,17 @@
3950 /**
3951- * Copyright © 2012 Akiban Technologies, Inc. All rights
3952- * reserved.
3953- *
3954- * This program and the accompanying materials are made available
3955- * under the terms of the Eclipse Public License v1.0 which
3956- * accompanies this distribution, and is available at
3957- * http://www.eclipse.org/legal/epl-v10.html
3958- *
3959- * This program may also be available under different license terms.
3960- * For more information, see www.akiban.com or contact
3961- * licensing@akiban.com.
3962- *
3963- * Contributors:
3964- * Akiban Technologies, Inc.
3965+ * Copyright 2011-2013 Akiban Technologies, Inc.
3966+ *
3967+ * Licensed under the Apache License, Version 2.0 (the "License");
3968+ * you may not use this file except in compliance with the License.
3969+ * You may obtain a copy of the License at
3970+ *
3971+ * http://www.apache.org/licenses/LICENSE-2.0
3972+ *
3973+ * Unless required by applicable law or agreed to in writing, software
3974+ * distributed under the License is distributed on an "AS IS" BASIS,
3975+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3976+ * See the License for the specific language governing permissions and
3977+ * limitations under the License.
3978 */
3979
3980 /* The original from which this derives bore the following: */
3981
3982=== modified file 'src/main/java/com/akiban/sql/parser/GenerationClauseNode.java'
3983--- src/main/java/com/akiban/sql/parser/GenerationClauseNode.java 2012-11-07 17:49:31 +0000
3984+++ src/main/java/com/akiban/sql/parser/GenerationClauseNode.java 2013-05-08 22:15:59 +0000
3985@@ -1,18 +1,17 @@
3986 /**
3987- * Copyright © 2012 Akiban Technologies, Inc. All rights
3988- * reserved.
3989- *
3990- * This program and the accompanying materials are made available
3991- * under the terms of the Eclipse Public License v1.0 which
3992- * accompanies this distribution, and is available at
3993- * http://www.eclipse.org/legal/epl-v10.html
3994- *
3995- * This program may also be available under different license terms.
3996- * For more information, see www.akiban.com or contact
3997- * licensing@akiban.com.
3998- *
3999- * Contributors:
4000- * Akiban Technologies, Inc.
4001+ * Copyright 2011-2013 Akiban Technologies, Inc.
4002+ *
4003+ * Licensed under the Apache License, Version 2.0 (the "License");
4004+ * you may not use this file except in compliance with the License.
4005+ * You may obtain a copy of the License at
4006+ *
4007+ * http://www.apache.org/licenses/LICENSE-2.0
4008+ *
4009+ * Unless required by applicable law or agreed to in writing, software
4010+ * distributed under the License is distributed on an "AS IS" BASIS,
4011+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4012+ * See the License for the specific language governing permissions and
4013+ * limitations under the License.
4014 */
4015
4016 /* The original from which this derives bore the following: */
4017
4018=== modified file 'src/main/java/com/akiban/sql/parser/GetCurrentConnectionNode.java'
4019--- src/main/java/com/akiban/sql/parser/GetCurrentConnectionNode.java 2012-11-07 17:49:31 +0000
4020+++ src/main/java/com/akiban/sql/parser/GetCurrentConnectionNode.java 2013-05-08 22:15:59 +0000
4021@@ -1,18 +1,17 @@
4022 /**
4023- * Copyright © 2012 Akiban Technologies, Inc. All rights
4024- * reserved.
4025- *
4026- * This program and the accompanying materials are made available
4027- * under the terms of the Eclipse Public License v1.0 which
4028- * accompanies this distribution, and is available at
4029- * http://www.eclipse.org/legal/epl-v10.html
4030- *
4031- * This program may also be available under different license terms.
4032- * For more information, see www.akiban.com or contact
4033- * licensing@akiban.com.
4034- *
4035- * Contributors:
4036- * Akiban Technologies, Inc.
4037+ * Copyright 2011-2013 Akiban Technologies, Inc.
4038+ *
4039+ * Licensed under the Apache License, Version 2.0 (the "License");
4040+ * you may not use this file except in compliance with the License.
4041+ * You may obtain a copy of the License at
4042+ *
4043+ * http://www.apache.org/licenses/LICENSE-2.0
4044+ *
4045+ * Unless required by applicable law or agreed to in writing, software
4046+ * distributed under the License is distributed on an "AS IS" BASIS,
4047+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4048+ * See the License for the specific language governing permissions and
4049+ * limitations under the License.
4050 */
4051
4052 /* The original from which this derives bore the following: */
4053
4054=== modified file 'src/main/java/com/akiban/sql/parser/GrantNode.java'
4055--- src/main/java/com/akiban/sql/parser/GrantNode.java 2012-11-07 17:49:31 +0000
4056+++ src/main/java/com/akiban/sql/parser/GrantNode.java 2013-05-08 22:15:59 +0000
4057@@ -1,18 +1,17 @@
4058 /**
4059- * Copyright © 2012 Akiban Technologies, Inc. All rights
4060- * reserved.
4061- *
4062- * This program and the accompanying materials are made available
4063- * under the terms of the Eclipse Public License v1.0 which
4064- * accompanies this distribution, and is available at
4065- * http://www.eclipse.org/legal/epl-v10.html
4066- *
4067- * This program may also be available under different license terms.
4068- * For more information, see www.akiban.com or contact
4069- * licensing@akiban.com.
4070- *
4071- * Contributors:
4072- * Akiban Technologies, Inc.
4073+ * Copyright 2011-2013 Akiban Technologies, Inc.
4074+ *
4075+ * Licensed under the Apache License, Version 2.0 (the "License");
4076+ * you may not use this file except in compliance with the License.
4077+ * You may obtain a copy of the License at
4078+ *
4079+ * http://www.apache.org/licenses/LICENSE-2.0
4080+ *
4081+ * Unless required by applicable law or agreed to in writing, software
4082+ * distributed under the License is distributed on an "AS IS" BASIS,
4083+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4084+ * See the License for the specific language governing permissions and
4085+ * limitations under the License.
4086 */
4087
4088 /* The original from which this derives bore the following: */
4089
4090=== modified file 'src/main/java/com/akiban/sql/parser/GrantRoleNode.java'
4091--- src/main/java/com/akiban/sql/parser/GrantRoleNode.java 2012-11-07 17:49:31 +0000
4092+++ src/main/java/com/akiban/sql/parser/GrantRoleNode.java 2013-05-08 22:15:59 +0000
4093@@ -1,18 +1,17 @@
4094 /**
4095- * Copyright © 2012 Akiban Technologies, Inc. All rights
4096- * reserved.
4097- *
4098- * This program and the accompanying materials are made available
4099- * under the terms of the Eclipse Public License v1.0 which
4100- * accompanies this distribution, and is available at
4101- * http://www.eclipse.org/legal/epl-v10.html
4102- *
4103- * This program may also be available under different license terms.
4104- * For more information, see www.akiban.com or contact
4105- * licensing@akiban.com.
4106- *
4107- * Contributors:
4108- * Akiban Technologies, Inc.
4109+ * Copyright 2011-2013 Akiban Technologies, Inc.
4110+ *
4111+ * Licensed under the Apache License, Version 2.0 (the "License");
4112+ * you may not use this file except in compliance with the License.
4113+ * You may obtain a copy of the License at
4114+ *
4115+ * http://www.apache.org/licenses/LICENSE-2.0
4116+ *
4117+ * Unless required by applicable law or agreed to in writing, software
4118+ * distributed under the License is distributed on an "AS IS" BASIS,
4119+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4120+ * See the License for the specific language governing permissions and
4121+ * limitations under the License.
4122 */
4123
4124 /* The original from which this derives bore the following: */
4125
4126=== modified file 'src/main/java/com/akiban/sql/parser/GroupByColumn.java'
4127--- src/main/java/com/akiban/sql/parser/GroupByColumn.java 2012-11-07 17:49:31 +0000
4128+++ src/main/java/com/akiban/sql/parser/GroupByColumn.java 2013-05-08 22:15:59 +0000
4129@@ -1,18 +1,17 @@
4130 /**
4131- * Copyright © 2012 Akiban Technologies, Inc. All rights
4132- * reserved.
4133- *
4134- * This program and the accompanying materials are made available
4135- * under the terms of the Eclipse Public License v1.0 which
4136- * accompanies this distribution, and is available at
4137- * http://www.eclipse.org/legal/epl-v10.html
4138- *
4139- * This program may also be available under different license terms.
4140- * For more information, see www.akiban.com or contact
4141- * licensing@akiban.com.
4142- *
4143- * Contributors:
4144- * Akiban Technologies, Inc.
4145+ * Copyright 2011-2013 Akiban Technologies, Inc.
4146+ *
4147+ * Licensed under the Apache License, Version 2.0 (the "License");
4148+ * you may not use this file except in compliance with the License.
4149+ * You may obtain a copy of the License at
4150+ *
4151+ * http://www.apache.org/licenses/LICENSE-2.0
4152+ *
4153+ * Unless required by applicable law or agreed to in writing, software
4154+ * distributed under the License is distributed on an "AS IS" BASIS,
4155+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4156+ * See the License for the specific language governing permissions and
4157+ * limitations under the License.
4158 */
4159
4160 /* The original from which this derives bore the following: */
4161
4162=== modified file 'src/main/java/com/akiban/sql/parser/GroupByList.java'
4163--- src/main/java/com/akiban/sql/parser/GroupByList.java 2012-11-07 17:49:31 +0000
4164+++ src/main/java/com/akiban/sql/parser/GroupByList.java 2013-05-08 22:15:59 +0000
4165@@ -1,18 +1,17 @@
4166 /**
4167- * Copyright © 2012 Akiban Technologies, Inc. All rights
4168- * reserved.
4169- *
4170- * This program and the accompanying materials are made available
4171- * under the terms of the Eclipse Public License v1.0 which
4172- * accompanies this distribution, and is available at
4173- * http://www.eclipse.org/legal/epl-v10.html
4174- *
4175- * This program may also be available under different license terms.
4176- * For more information, see www.akiban.com or contact
4177- * licensing@akiban.com.
4178- *
4179- * Contributors:
4180- * Akiban Technologies, Inc.
4181+ * Copyright 2011-2013 Akiban Technologies, Inc.
4182+ *
4183+ * Licensed under the Apache License, Version 2.0 (the "License");
4184+ * you may not use this file except in compliance with the License.
4185+ * You may obtain a copy of the License at
4186+ *
4187+ * http://www.apache.org/licenses/LICENSE-2.0
4188+ *
4189+ * Unless required by applicable law or agreed to in writing, software
4190+ * distributed under the License is distributed on an "AS IS" BASIS,
4191+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4192+ * See the License for the specific language governing permissions and
4193+ * limitations under the License.
4194 */
4195
4196 /* The original from which this derives bore the following: */
4197
4198=== modified file 'src/main/java/com/akiban/sql/parser/GroupConcatNode.java'
4199--- src/main/java/com/akiban/sql/parser/GroupConcatNode.java 2012-11-07 17:49:31 +0000
4200+++ src/main/java/com/akiban/sql/parser/GroupConcatNode.java 2013-05-08 22:15:59 +0000
4201@@ -1,18 +1,17 @@
4202 /**
4203- * Copyright © 2012 Akiban Technologies, Inc. All rights
4204- * reserved.
4205- *
4206- * This program and the accompanying materials are made available
4207- * under the terms of the Eclipse Public License v1.0 which
4208- * accompanies this distribution, and is available at
4209- * http://www.eclipse.org/legal/epl-v10.html
4210- *
4211- * This program may also be available under different license terms.
4212- * For more information, see www.akiban.com or contact
4213- * licensing@akiban.com.
4214- *
4215- * Contributors:
4216- * Akiban Technologies, Inc.
4217+ * Copyright 2011-2013 Akiban Technologies, Inc.
4218+ *
4219+ * Licensed under the Apache License, Version 2.0 (the "License");
4220+ * you may not use this file except in compliance with the License.
4221+ * You may obtain a copy of the License at
4222+ *
4223+ * http://www.apache.org/licenses/LICENSE-2.0
4224+ *
4225+ * Unless required by applicable law or agreed to in writing, software
4226+ * distributed under the License is distributed on an "AS IS" BASIS,
4227+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4228+ * See the License for the specific language governing permissions and
4229+ * limitations under the License.
4230 */
4231
4232 package com.akiban.sql.parser;
4233
4234=== modified file 'src/main/java/com/akiban/sql/parser/HalfOuterJoinNode.java'
4235--- src/main/java/com/akiban/sql/parser/HalfOuterJoinNode.java 2012-11-07 17:49:31 +0000
4236+++ src/main/java/com/akiban/sql/parser/HalfOuterJoinNode.java 2013-05-08 22:15:59 +0000
4237@@ -1,18 +1,17 @@
4238 /**
4239- * Copyright © 2012 Akiban Technologies, Inc. All rights
4240- * reserved.
4241- *
4242- * This program and the accompanying materials are made available
4243- * under the terms of the Eclipse Public License v1.0 which
4244- * accompanies this distribution, and is available at
4245- * http://www.eclipse.org/legal/epl-v10.html
4246- *
4247- * This program may also be available under different license terms.
4248- * For more information, see www.akiban.com or contact
4249- * licensing@akiban.com.
4250- *
4251- * Contributors:
4252- * Akiban Technologies, Inc.
4253+ * Copyright 2011-2013 Akiban Technologies, Inc.
4254+ *
4255+ * Licensed under the Apache License, Version 2.0 (the "License");
4256+ * you may not use this file except in compliance with the License.
4257+ * You may obtain a copy of the License at
4258+ *
4259+ * http://www.apache.org/licenses/LICENSE-2.0
4260+ *
4261+ * Unless required by applicable law or agreed to in writing, software
4262+ * distributed under the License is distributed on an "AS IS" BASIS,
4263+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4264+ * See the License for the specific language governing permissions and
4265+ * limitations under the License.
4266 */
4267
4268 /* The original from which this derives bore the following: */
4269
4270=== modified file 'src/main/java/com/akiban/sql/parser/HasNodeVisitor.java'
4271--- src/main/java/com/akiban/sql/parser/HasNodeVisitor.java 2012-11-07 17:49:31 +0000
4272+++ src/main/java/com/akiban/sql/parser/HasNodeVisitor.java 2013-05-08 22:15:59 +0000
4273@@ -1,19 +1,18 @@
4274-/**
4275- * Copyright © 2012 Akiban Technologies, Inc. All rights
4276- * reserved.
4277- *
4278- * This program and the accompanying materials are made available
4279- * under the terms of the Eclipse Public License v1.0 which
4280- * accompanies this distribution, and is available at
4281- * http://www.eclipse.org/legal/epl-v10.html
4282- *
4283- * This program may also be available under different license terms.
4284- * For more information, see www.akiban.com or contact
4285- * licensing@akiban.com.
4286- *
4287- * Contributors:
4288- * Akiban Technologies, Inc.
4289- */
4290+/**
4291+ * Copyright 2011-2013 Akiban Technologies, Inc.
4292+ *
4293+ * Licensed under the Apache License, Version 2.0 (the "License");
4294+ * you may not use this file except in compliance with the License.
4295+ * You may obtain a copy of the License at
4296+ *
4297+ * http://www.apache.org/licenses/LICENSE-2.0
4298+ *
4299+ * Unless required by applicable law or agreed to in writing, software
4300+ * distributed under the License is distributed on an "AS IS" BASIS,
4301+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4302+ * See the License for the specific language governing permissions and
4303+ * limitations under the License.
4304+ */
4305
4306 /* The original from which this derives bore the following: */
4307
4308
4309=== modified file 'src/main/java/com/akiban/sql/parser/InListOperatorNode.java'
4310--- src/main/java/com/akiban/sql/parser/InListOperatorNode.java 2012-11-07 17:49:31 +0000
4311+++ src/main/java/com/akiban/sql/parser/InListOperatorNode.java 2013-05-08 22:15:59 +0000
4312@@ -1,18 +1,17 @@
4313 /**
4314- * Copyright © 2012 Akiban Technologies, Inc. All rights
4315- * reserved.
4316- *
4317- * This program and the accompanying materials are made available
4318- * under the terms of the Eclipse Public License v1.0 which
4319- * accompanies this distribution, and is available at
4320- * http://www.eclipse.org/legal/epl-v10.html
4321- *
4322- * This program may also be available under different license terms.
4323- * For more information, see www.akiban.com or contact
4324- * licensing@akiban.com.
4325- *
4326- * Contributors:
4327- * Akiban Technologies, Inc.
4328+ * Copyright 2011-2013 Akiban Technologies, Inc.
4329+ *
4330+ * Licensed under the Apache License, Version 2.0 (the "License");
4331+ * you may not use this file except in compliance with the License.
4332+ * You may obtain a copy of the License at
4333+ *
4334+ * http://www.apache.org/licenses/LICENSE-2.0
4335+ *
4336+ * Unless required by applicable law or agreed to in writing, software
4337+ * distributed under the License is distributed on an "AS IS" BASIS,
4338+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4339+ * See the License for the specific language governing permissions and
4340+ * limitations under the License.
4341 */
4342
4343 /* The original from which this derives bore the following: */
4344
4345=== modified file 'src/main/java/com/akiban/sql/parser/IndexColumn.java'
4346--- src/main/java/com/akiban/sql/parser/IndexColumn.java 2012-11-07 17:49:31 +0000
4347+++ src/main/java/com/akiban/sql/parser/IndexColumn.java 2013-05-08 22:15:59 +0000
4348@@ -1,18 +1,17 @@
4349 /**
4350- * Copyright © 2012 Akiban Technologies, Inc. All rights
4351- * reserved.
4352- *
4353- * This program and the accompanying materials are made available
4354- * under the terms of the Eclipse Public License v1.0 which
4355- * accompanies this distribution, and is available at
4356- * http://www.eclipse.org/legal/epl-v10.html
4357- *
4358- * This program may also be available under different license terms.
4359- * For more information, see www.akiban.com or contact
4360- * licensing@akiban.com.
4361- *
4362- * Contributors:
4363- * Akiban Technologies, Inc.
4364+ * Copyright 2011-2013 Akiban Technologies, Inc.
4365+ *
4366+ * Licensed under the Apache License, Version 2.0 (the "License");
4367+ * you may not use this file except in compliance with the License.
4368+ * You may obtain a copy of the License at
4369+ *
4370+ * http://www.apache.org/licenses/LICENSE-2.0
4371+ *
4372+ * Unless required by applicable law or agreed to in writing, software
4373+ * distributed under the License is distributed on an "AS IS" BASIS,
4374+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4375+ * See the License for the specific language governing permissions and
4376+ * limitations under the License.
4377 */
4378
4379 package com.akiban.sql.parser;
4380
4381=== modified file 'src/main/java/com/akiban/sql/parser/IndexColumnList.java'
4382--- src/main/java/com/akiban/sql/parser/IndexColumnList.java 2013-02-25 00:17:53 +0000
4383+++ src/main/java/com/akiban/sql/parser/IndexColumnList.java 2013-05-08 22:15:59 +0000
4384@@ -1,18 +1,17 @@
4385 /**
4386- * Copyright © 2012 Akiban Technologies, Inc. All rights
4387- * reserved.
4388- *
4389- * This program and the accompanying materials are made available
4390- * under the terms of the Eclipse Public License v1.0 which
4391- * accompanies this distribution, and is available at
4392- * http://www.eclipse.org/legal/epl-v10.html
4393- *
4394- * This program may also be available under different license terms.
4395- * For more information, see www.akiban.com or contact
4396- * licensing@akiban.com.
4397- *
4398- * Contributors:
4399- * Akiban Technologies, Inc.
4400+ * Copyright 2011-2013 Akiban Technologies, Inc.
4401+ *
4402+ * Licensed under the Apache License, Version 2.0 (the "License");
4403+ * you may not use this file except in compliance with the License.
4404+ * You may obtain a copy of the License at
4405+ *
4406+ * http://www.apache.org/licenses/LICENSE-2.0
4407+ *
4408+ * Unless required by applicable law or agreed to in writing, software
4409+ * distributed under the License is distributed on an "AS IS" BASIS,
4410+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4411+ * See the License for the specific language governing permissions and
4412+ * limitations under the License.
4413 */
4414
4415 package com.akiban.sql.parser;
4416
4417=== modified file 'src/main/java/com/akiban/sql/parser/IndexConstraintDefinitionNode.java'
4418--- src/main/java/com/akiban/sql/parser/IndexConstraintDefinitionNode.java 2013-03-06 11:08:05 +0000
4419+++ src/main/java/com/akiban/sql/parser/IndexConstraintDefinitionNode.java 2013-05-08 22:15:59 +0000
4420@@ -1,18 +1,17 @@
4421 /**
4422- * Copyright © 2012 Akiban Technologies, Inc. All rights
4423- * reserved.
4424- *
4425- * This program and the accompanying materials are made available
4426- * under the terms of the Eclipse Public License v1.0 which
4427- * accompanies this distribution, and is available at
4428- * http://www.eclipse.org/legal/epl-v10.html
4429- *
4430- * This program may also be available under different license terms.
4431- * For more information, see www.akiban.com or contact
4432- * licensing@akiban.com.
4433- *
4434- * Contributors:
4435- * Akiban Technologies, Inc.
4436+ * Copyright 2011-2013 Akiban Technologies, Inc.
4437+ *
4438+ * Licensed under the Apache License, Version 2.0 (the "License");
4439+ * you may not use this file except in compliance with the License.
4440+ * You may obtain a copy of the License at
4441+ *
4442+ * http://www.apache.org/licenses/LICENSE-2.0
4443+ *
4444+ * Unless required by applicable law or agreed to in writing, software
4445+ * distributed under the License is distributed on an "AS IS" BASIS,
4446+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4447+ * See the License for the specific language governing permissions and
4448+ * limitations under the License.
4449 */
4450
4451 package com.akiban.sql.parser;
4452
4453=== modified file 'src/main/java/com/akiban/sql/parser/IndexDefinition.java'
4454--- src/main/java/com/akiban/sql/parser/IndexDefinition.java 2013-04-13 22:25:50 +0000
4455+++ src/main/java/com/akiban/sql/parser/IndexDefinition.java 2013-05-08 22:15:59 +0000
4456@@ -1,18 +1,17 @@
4457 /**
4458- * Copyright © 2013 Akiban Technologies, Inc. All rights
4459- * reserved.
4460- *
4461- * This program and the accompanying materials are made available
4462- * under the terms of the Eclipse Public License v1.0 which
4463- * accompanies this distribution, and is available at
4464- * http://www.eclipse.org/legal/epl-v10.html
4465- *
4466- * This program may also be available under different license terms.
4467- * For more information, see www.akiban.com or contact
4468- * licensing@akiban.com.
4469- *
4470- * Contributors:
4471- * Akiban Technologies, Inc.
4472+ * Copyright 2011-2013 Akiban Technologies, Inc.
4473+ *
4474+ * Licensed under the Apache License, Version 2.0 (the "License");
4475+ * you may not use this file except in compliance with the License.
4476+ * You may obtain a copy of the License at
4477+ *
4478+ * http://www.apache.org/licenses/LICENSE-2.0
4479+ *
4480+ * Unless required by applicable law or agreed to in writing, software
4481+ * distributed under the License is distributed on an "AS IS" BASIS,
4482+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4483+ * See the License for the specific language governing permissions and
4484+ * limitations under the License.
4485 */
4486 package com.akiban.sql.parser;
4487
4488
4489=== modified file 'src/main/java/com/akiban/sql/parser/IndexHintList.java'
4490--- src/main/java/com/akiban/sql/parser/IndexHintList.java 2012-11-07 17:49:31 +0000
4491+++ src/main/java/com/akiban/sql/parser/IndexHintList.java 2013-05-08 22:15:59 +0000
4492@@ -1,18 +1,17 @@
4493 /**
4494- * Copyright © 2012 Akiban Technologies, Inc. All rights
4495- * reserved.
4496- *
4497- * This program and the accompanying materials are made available
4498- * under the terms of the Eclipse Public License v1.0 which
4499- * accompanies this distribution, and is available at
4500- * http://www.eclipse.org/legal/epl-v10.html
4501- *
4502- * This program may also be available under different license terms.
4503- * For more information, see www.akiban.com or contact
4504- * licensing@akiban.com.
4505- *
4506- * Contributors:
4507- * Akiban Technologies, Inc.
4508+ * Copyright 2011-2013 Akiban Technologies, Inc.
4509+ *
4510+ * Licensed under the Apache License, Version 2.0 (the "License");
4511+ * you may not use this file except in compliance with the License.
4512+ * You may obtain a copy of the License at
4513+ *
4514+ * http://www.apache.org/licenses/LICENSE-2.0
4515+ *
4516+ * Unless required by applicable law or agreed to in writing, software
4517+ * distributed under the License is distributed on an "AS IS" BASIS,
4518+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4519+ * See the License for the specific language governing permissions and
4520+ * limitations under the License.
4521 */
4522
4523 package com.akiban.sql.parser;
4524
4525=== modified file 'src/main/java/com/akiban/sql/parser/IndexHintNode.java'
4526--- src/main/java/com/akiban/sql/parser/IndexHintNode.java 2012-11-07 17:49:31 +0000
4527+++ src/main/java/com/akiban/sql/parser/IndexHintNode.java 2013-05-08 22:15:59 +0000
4528@@ -1,18 +1,17 @@
4529 /**
4530- * Copyright © 2012 Akiban Technologies, Inc. All rights
4531- * reserved.
4532- *
4533- * This program and the accompanying materials are made available
4534- * under the terms of the Eclipse Public License v1.0 which
4535- * accompanies this distribution, and is available at
4536- * http://www.eclipse.org/legal/epl-v10.html
4537- *
4538- * This program may also be available under different license terms.
4539- * For more information, see www.akiban.com or contact
4540- * licensing@akiban.com.
4541- *
4542- * Contributors:
4543- * Akiban Technologies, Inc.
4544+ * Copyright 2011-2013 Akiban Technologies, Inc.
4545+ *
4546+ * Licensed under the Apache License, Version 2.0 (the "License");
4547+ * you may not use this file except in compliance with the License.
4548+ * You may obtain a copy of the License at
4549+ *
4550+ * http://www.apache.org/licenses/LICENSE-2.0
4551+ *
4552+ * Unless required by applicable law or agreed to in writing, software
4553+ * distributed under the License is distributed on an "AS IS" BASIS,
4554+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4555+ * See the License for the specific language governing permissions and
4556+ * limitations under the License.
4557 */
4558
4559 package com.akiban.sql.parser;
4560
4561=== modified file 'src/main/java/com/akiban/sql/parser/InsertNode.java'
4562--- src/main/java/com/akiban/sql/parser/InsertNode.java 2012-11-07 17:49:31 +0000
4563+++ src/main/java/com/akiban/sql/parser/InsertNode.java 2013-05-08 22:15:59 +0000
4564@@ -1,18 +1,17 @@
4565 /**
4566- * Copyright © 2012 Akiban Technologies, Inc. All rights
4567- * reserved.
4568- *
4569- * This program and the accompanying materials are made available
4570- * under the terms of the Eclipse Public License v1.0 which
4571- * accompanies this distribution, and is available at
4572- * http://www.eclipse.org/legal/epl-v10.html
4573- *
4574- * This program may also be available under different license terms.
4575- * For more information, see www.akiban.com or contact
4576- * licensing@akiban.com.
4577- *
4578- * Contributors:
4579- * Akiban Technologies, Inc.
4580+ * Copyright 2011-2013 Akiban Technologies, Inc.
4581+ *
4582+ * Licensed under the Apache License, Version 2.0 (the "License");
4583+ * you may not use this file except in compliance with the License.
4584+ * You may obtain a copy of the License at
4585+ *
4586+ * http://www.apache.org/licenses/LICENSE-2.0
4587+ *
4588+ * Unless required by applicable law or agreed to in writing, software
4589+ * distributed under the License is distributed on an "AS IS" BASIS,
4590+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4591+ * See the License for the specific language governing permissions and
4592+ * limitations under the License.
4593 */
4594
4595 /* The original from which this derives bore the following: */
4596
4597=== modified file 'src/main/java/com/akiban/sql/parser/IntersectOrExceptNode.java'
4598--- src/main/java/com/akiban/sql/parser/IntersectOrExceptNode.java 2012-11-07 17:49:31 +0000
4599+++ src/main/java/com/akiban/sql/parser/IntersectOrExceptNode.java 2013-05-08 22:15:59 +0000
4600@@ -1,18 +1,17 @@
4601 /**
4602- * Copyright © 2012 Akiban Technologies, Inc. All rights
4603- * reserved.
4604- *
4605- * This program and the accompanying materials are made available
4606- * under the terms of the Eclipse Public License v1.0 which
4607- * accompanies this distribution, and is available at
4608- * http://www.eclipse.org/legal/epl-v10.html
4609- *
4610- * This program may also be available under different license terms.
4611- * For more information, see www.akiban.com or contact
4612- * licensing@akiban.com.
4613- *
4614- * Contributors:
4615- * Akiban Technologies, Inc.
4616+ * Copyright 2011-2013 Akiban Technologies, Inc.
4617+ *
4618+ * Licensed under the Apache License, Version 2.0 (the "License");
4619+ * you may not use this file except in compliance with the License.
4620+ * You may obtain a copy of the License at
4621+ *
4622+ * http://www.apache.org/licenses/LICENSE-2.0
4623+ *
4624+ * Unless required by applicable law or agreed to in writing, software
4625+ * distributed under the License is distributed on an "AS IS" BASIS,
4626+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4627+ * See the License for the specific language governing permissions and
4628+ * limitations under the License.
4629 */
4630
4631 /* The original from which this derives bore the following: */
4632
4633=== modified file 'src/main/java/com/akiban/sql/parser/IsNode.java'
4634--- src/main/java/com/akiban/sql/parser/IsNode.java 2012-11-07 17:49:31 +0000
4635+++ src/main/java/com/akiban/sql/parser/IsNode.java 2013-05-08 22:15:59 +0000
4636@@ -1,18 +1,17 @@
4637 /**
4638- * Copyright © 2012 Akiban Technologies, Inc. All rights
4639- * reserved.
4640- *
4641- * This program and the accompanying materials are made available
4642- * under the terms of the Eclipse Public License v1.0 which
4643- * accompanies this distribution, and is available at
4644- * http://www.eclipse.org/legal/epl-v10.html
4645- *
4646- * This program may also be available under different license terms.
4647- * For more information, see www.akiban.com or contact
4648- * licensing@akiban.com.
4649- *
4650- * Contributors:
4651- * Akiban Technologies, Inc.
4652+ * Copyright 2011-2013 Akiban Technologies, Inc.
4653+ *
4654+ * Licensed under the Apache License, Version 2.0 (the "License");
4655+ * you may not use this file except in compliance with the License.
4656+ * You may obtain a copy of the License at
4657+ *
4658+ * http://www.apache.org/licenses/LICENSE-2.0
4659+ *
4660+ * Unless required by applicable law or agreed to in writing, software
4661+ * distributed under the License is distributed on an "AS IS" BASIS,
4662+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4663+ * See the License for the specific language governing permissions and
4664+ * limitations under the License.
4665 */
4666
4667 /* The original from which this derives bore the following: */
4668
4669=== modified file 'src/main/java/com/akiban/sql/parser/IsNullNode.java'
4670--- src/main/java/com/akiban/sql/parser/IsNullNode.java 2012-11-07 17:49:31 +0000
4671+++ src/main/java/com/akiban/sql/parser/IsNullNode.java 2013-05-08 22:15:59 +0000
4672@@ -1,18 +1,17 @@
4673 /**
4674- * Copyright © 2012 Akiban Technologies, Inc. All rights
4675- * reserved.
4676- *
4677- * This program and the accompanying materials are made available
4678- * under the terms of the Eclipse Public License v1.0 which
4679- * accompanies this distribution, and is available at
4680- * http://www.eclipse.org/legal/epl-v10.html
4681- *
4682- * This program may also be available under different license terms.
4683- * For more information, see www.akiban.com or contact
4684- * licensing@akiban.com.
4685- *
4686- * Contributors:
4687- * Akiban Technologies, Inc.
4688+ * Copyright 2011-2013 Akiban Technologies, Inc.
4689+ *
4690+ * Licensed under the Apache License, Version 2.0 (the "License");
4691+ * you may not use this file except in compliance with the License.
4692+ * You may obtain a copy of the License at
4693+ *
4694+ * http://www.apache.org/licenses/LICENSE-2.0
4695+ *
4696+ * Unless required by applicable law or agreed to in writing, software
4697+ * distributed under the License is distributed on an "AS IS" BASIS,
4698+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4699+ * See the License for the specific language governing permissions and
4700+ * limitations under the License.
4701 */
4702
4703 /* The original from which this derives bore the following: */
4704
4705=== modified file 'src/main/java/com/akiban/sql/parser/IsolationLevel.java'
4706--- src/main/java/com/akiban/sql/parser/IsolationLevel.java 2012-11-07 17:49:31 +0000
4707+++ src/main/java/com/akiban/sql/parser/IsolationLevel.java 2013-05-08 22:15:59 +0000
4708@@ -1,18 +1,17 @@
4709 /**
4710- * Copyright © 2012 Akiban Technologies, Inc. All rights
4711- * reserved.
4712- *
4713- * This program and the accompanying materials are made available
4714- * under the terms of the Eclipse Public License v1.0 which
4715- * accompanies this distribution, and is available at
4716- * http://www.eclipse.org/legal/epl-v10.html
4717- *
4718- * This program may also be available under different license terms.
4719- * For more information, see www.akiban.com or contact
4720- * licensing@akiban.com.
4721- *
4722- * Contributors:
4723- * Akiban Technologies, Inc.
4724+ * Copyright 2011-2013 Akiban Technologies, Inc.
4725+ *
4726+ * Licensed under the Apache License, Version 2.0 (the "License");
4727+ * you may not use this file except in compliance with the License.
4728+ * You may obtain a copy of the License at
4729+ *
4730+ * http://www.apache.org/licenses/LICENSE-2.0
4731+ *
4732+ * Unless required by applicable law or agreed to in writing, software
4733+ * distributed under the License is distributed on an "AS IS" BASIS,
4734+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4735+ * See the License for the specific language governing permissions and
4736+ * limitations under the License.
4737 */
4738
4739 /**
4740
4741=== modified file 'src/main/java/com/akiban/sql/parser/JavaToSQLValueNode.java'
4742--- src/main/java/com/akiban/sql/parser/JavaToSQLValueNode.java 2012-11-07 17:49:31 +0000
4743+++ src/main/java/com/akiban/sql/parser/JavaToSQLValueNode.java 2013-05-08 22:15:59 +0000
4744@@ -1,18 +1,17 @@
4745 /**
4746- * Copyright © 2012 Akiban Technologies, Inc. All rights
4747- * reserved.
4748- *
4749- * This program and the accompanying materials are made available
4750- * under the terms of the Eclipse Public License v1.0 which
4751- * accompanies this distribution, and is available at
4752- * http://www.eclipse.org/legal/epl-v10.html
4753- *
4754- * This program may also be available under different license terms.
4755- * For more information, see www.akiban.com or contact
4756- * licensing@akiban.com.
4757- *
4758- * Contributors:
4759- * Akiban Technologies, Inc.
4760+ * Copyright 2011-2013 Akiban Technologies, Inc.
4761+ *
4762+ * Licensed under the Apache License, Version 2.0 (the "License");
4763+ * you may not use this file except in compliance with the License.
4764+ * You may obtain a copy of the License at
4765+ *
4766+ * http://www.apache.org/licenses/LICENSE-2.0
4767+ *
4768+ * Unless required by applicable law or agreed to in writing, software
4769+ * distributed under the License is distributed on an "AS IS" BASIS,
4770+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4771+ * See the License for the specific language governing permissions and
4772+ * limitations under the License.
4773 */
4774
4775 /* The original from which this derives bore the following: */
4776
4777=== modified file 'src/main/java/com/akiban/sql/parser/JavaValueNode.java'
4778--- src/main/java/com/akiban/sql/parser/JavaValueNode.java 2012-11-07 17:49:31 +0000
4779+++ src/main/java/com/akiban/sql/parser/JavaValueNode.java 2013-05-08 22:15:59 +0000
4780@@ -1,18 +1,17 @@
4781 /**
4782- * Copyright © 2012 Akiban Technologies, Inc. All rights
4783- * reserved.
4784- *
4785- * This program and the accompanying materials are made available
4786- * under the terms of the Eclipse Public License v1.0 which
4787- * accompanies this distribution, and is available at
4788- * http://www.eclipse.org/legal/epl-v10.html
4789- *
4790- * This program may also be available under different license terms.
4791- * For more information, see www.akiban.com or contact
4792- * licensing@akiban.com.
4793- *
4794- * Contributors:
4795- * Akiban Technologies, Inc.
4796+ * Copyright 2011-2013 Akiban Technologies, Inc.
4797+ *
4798+ * Licensed under the Apache License, Version 2.0 (the "License");
4799+ * you may not use this file except in compliance with the License.
4800+ * You may obtain a copy of the License at
4801+ *
4802+ * http://www.apache.org/licenses/LICENSE-2.0
4803+ *
4804+ * Unless required by applicable law or agreed to in writing, software
4805+ * distributed under the License is distributed on an "AS IS" BASIS,
4806+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4807+ * See the License for the specific language governing permissions and
4808+ * limitations under the License.
4809 */
4810
4811 /* The original from which this derives bore the following: */
4812
4813=== modified file 'src/main/java/com/akiban/sql/parser/JoinNode.java'
4814--- src/main/java/com/akiban/sql/parser/JoinNode.java 2012-11-07 17:49:31 +0000
4815+++ src/main/java/com/akiban/sql/parser/JoinNode.java 2013-05-08 22:15:59 +0000
4816@@ -1,18 +1,17 @@
4817 /**
4818- * Copyright © 2012 Akiban Technologies, Inc. All rights
4819- * reserved.
4820- *
4821- * This program and the accompanying materials are made available
4822- * under the terms of the Eclipse Public License v1.0 which
4823- * accompanies this distribution, and is available at
4824- * http://www.eclipse.org/legal/epl-v10.html
4825- *
4826- * This program may also be available under different license terms.
4827- * For more information, see www.akiban.com or contact
4828- * licensing@akiban.com.
4829- *
4830- * Contributors:
4831- * Akiban Technologies, Inc.
4832+ * Copyright 2011-2013 Akiban Technologies, Inc.
4833+ *
4834+ * Licensed under the Apache License, Version 2.0 (the "License");
4835+ * you may not use this file except in compliance with the License.
4836+ * You may obtain a copy of the License at
4837+ *
4838+ * http://www.apache.org/licenses/LICENSE-2.0
4839+ *
4840+ * Unless required by applicable law or agreed to in writing, software
4841+ * distributed under the License is distributed on an "AS IS" BASIS,
4842+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4843+ * See the License for the specific language governing permissions and
4844+ * limitations under the License.
4845 */
4846
4847 /* The original from which this derives bore the following: */
4848
4849=== modified file 'src/main/java/com/akiban/sql/parser/LeftRightFuncOperatorNode.java'
4850--- src/main/java/com/akiban/sql/parser/LeftRightFuncOperatorNode.java 2012-11-07 17:49:31 +0000
4851+++ src/main/java/com/akiban/sql/parser/LeftRightFuncOperatorNode.java 2013-05-08 22:15:59 +0000
4852@@ -1,18 +1,17 @@
4853 /**
4854- * Copyright © 2012 Akiban Technologies, Inc. All rights
4855- * reserved.
4856- *
4857- * This program and the accompanying materials are made available
4858- * under the terms of the Eclipse Public License v1.0 which
4859- * accompanies this distribution, and is available at
4860- * http://www.eclipse.org/legal/epl-v10.html
4861- *
4862- * This program may also be available under different license terms.
4863- * For more information, see www.akiban.com or contact
4864- * licensing@akiban.com.
4865- *
4866- * Contributors:
4867- * Akiban Technologies, Inc.
4868+ * Copyright 2011-2013 Akiban Technologies, Inc.
4869+ *
4870+ * Licensed under the Apache License, Version 2.0 (the "License");
4871+ * you may not use this file except in compliance with the License.
4872+ * You may obtain a copy of the License at
4873+ *
4874+ * http://www.apache.org/licenses/LICENSE-2.0
4875+ *
4876+ * Unless required by applicable law or agreed to in writing, software
4877+ * distributed under the License is distributed on an "AS IS" BASIS,
4878+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4879+ * See the License for the specific language governing permissions and
4880+ * limitations under the License.
4881 */
4882
4883 package com.akiban.sql.parser;
4884
4885=== modified file 'src/main/java/com/akiban/sql/parser/LengthOperatorNode.java'
4886--- src/main/java/com/akiban/sql/parser/LengthOperatorNode.java 2012-11-07 17:49:31 +0000
4887+++ src/main/java/com/akiban/sql/parser/LengthOperatorNode.java 2013-05-08 22:15:59 +0000
4888@@ -1,18 +1,17 @@
4889 /**
4890- * Copyright © 2012 Akiban Technologies, Inc. All rights
4891- * reserved.
4892- *
4893- * This program and the accompanying materials are made available
4894- * under the terms of the Eclipse Public License v1.0 which
4895- * accompanies this distribution, and is available at
4896- * http://www.eclipse.org/legal/epl-v10.html
4897- *
4898- * This program may also be available under different license terms.
4899- * For more information, see www.akiban.com or contact
4900- * licensing@akiban.com.
4901- *
4902- * Contributors:
4903- * Akiban Technologies, Inc.
4904+ * Copyright 2011-2013 Akiban Technologies, Inc.
4905+ *
4906+ * Licensed under the Apache License, Version 2.0 (the "License");
4907+ * you may not use this file except in compliance with the License.
4908+ * You may obtain a copy of the License at
4909+ *
4910+ * http://www.apache.org/licenses/LICENSE-2.0
4911+ *
4912+ * Unless required by applicable law or agreed to in writing, software
4913+ * distributed under the License is distributed on an "AS IS" BASIS,
4914+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4915+ * See the License for the specific language governing permissions and
4916+ * limitations under the License.
4917 */
4918
4919 /* The original from which this derives bore the following: */
4920
4921=== modified file 'src/main/java/com/akiban/sql/parser/LikeEscapeOperatorNode.java'
4922--- src/main/java/com/akiban/sql/parser/LikeEscapeOperatorNode.java 2012-11-07 17:49:31 +0000
4923+++ src/main/java/com/akiban/sql/parser/LikeEscapeOperatorNode.java 2013-05-08 22:15:59 +0000
4924@@ -1,18 +1,17 @@
4925 /**
4926- * Copyright © 2012 Akiban Technologies, Inc. All rights
4927- * reserved.
4928- *
4929- * This program and the accompanying materials are made available
4930- * under the terms of the Eclipse Public License v1.0 which
4931- * accompanies this distribution, and is available at
4932- * http://www.eclipse.org/legal/epl-v10.html
4933- *
4934- * This program may also be available under different license terms.
4935- * For more information, see www.akiban.com or contact
4936- * licensing@akiban.com.
4937- *
4938- * Contributors:
4939- * Akiban Technologies, Inc.
4940+ * Copyright 2011-2013 Akiban Technologies, Inc.
4941+ *
4942+ * Licensed under the Apache License, Version 2.0 (the "License");
4943+ * you may not use this file except in compliance with the License.
4944+ * You may obtain a copy of the License at
4945+ *
4946+ * http://www.apache.org/licenses/LICENSE-2.0
4947+ *
4948+ * Unless required by applicable law or agreed to in writing, software
4949+ * distributed under the License is distributed on an "AS IS" BASIS,
4950+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4951+ * See the License for the specific language governing permissions and
4952+ * limitations under the License.
4953 */
4954
4955 /* The original from which this derives bore the following: */
4956
4957=== modified file 'src/main/java/com/akiban/sql/parser/LockTableNode.java'
4958--- src/main/java/com/akiban/sql/parser/LockTableNode.java 2012-11-07 17:49:31 +0000
4959+++ src/main/java/com/akiban/sql/parser/LockTableNode.java 2013-05-08 22:15:59 +0000
4960@@ -1,18 +1,17 @@
4961 /**
4962- * Copyright © 2012 Akiban Technologies, Inc. All rights
4963- * reserved.
4964- *
4965- * This program and the accompanying materials are made available
4966- * under the terms of the Eclipse Public License v1.0 which
4967- * accompanies this distribution, and is available at
4968- * http://www.eclipse.org/legal/epl-v10.html
4969- *
4970- * This program may also be available under different license terms.
4971- * For more information, see www.akiban.com or contact
4972- * licensing@akiban.com.
4973- *
4974- * Contributors:
4975- * Akiban Technologies, Inc.
4976+ * Copyright 2011-2013 Akiban Technologies, Inc.
4977+ *
4978+ * Licensed under the Apache License, Version 2.0 (the "License");
4979+ * you may not use this file except in compliance with the License.
4980+ * You may obtain a copy of the License at
4981+ *
4982+ * http://www.apache.org/licenses/LICENSE-2.0
4983+ *
4984+ * Unless required by applicable law or agreed to in writing, software
4985+ * distributed under the License is distributed on an "AS IS" BASIS,
4986+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4987+ * See the License for the specific language governing permissions and
4988+ * limitations under the License.
4989 */
4990
4991 /* The original from which this derives bore the following: */
4992
4993=== modified file 'src/main/java/com/akiban/sql/parser/MethodCallNode.java'
4994--- src/main/java/com/akiban/sql/parser/MethodCallNode.java 2012-11-07 17:49:31 +0000
4995+++ src/main/java/com/akiban/sql/parser/MethodCallNode.java 2013-05-08 22:15:59 +0000
4996@@ -1,18 +1,17 @@
4997 /**
4998- * Copyright © 2012 Akiban Technologies, Inc. All rights
4999- * reserved.
5000- *
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches