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
=== modified file 'LICENSE.txt'
--- LICENSE.txt 2012-11-07 17:17:42 +0000
+++ LICENSE.txt 2013-05-08 22:15:59 +0000
@@ -1,188 +1,202 @@
1http://www.eclipse.org/legal/epl-v10.html1 Apache License
22 Version 2.0, January 2004
3Eclipse Public License - v 1.03 http://www.apache.org/licenses/
44
5THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC5 TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM6
7CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.7 1. Definitions.
88
91. DEFINITIONS9 "License" shall mean the terms and conditions for use, reproduction,
1010 and distribution as defined by Sections 1 through 9 of this document.
11"Contribution" means:11
1212 "Licensor" shall mean the copyright owner or entity authorized by
13a) in the case of the initial Contributor, the initial code and documentation13 the copyright owner that is granting the License.
14distributed under this Agreement, and b) in the case of each subsequent14
15Contributor: i) changes to the Program, and ii) additions to the Program; where15 "Legal Entity" shall mean the union of the acting entity and all
16such changes and/or additions to the Program originate from and are distributed16 other entities that control, are controlled by, or are under common
17by that particular Contributor. A Contribution 'originates' from a Contributor17 control with that entity. For the purposes of this definition,
18if it was added to the Program by such Contributor itself or anyone acting on18 "control" means (i) the power, direct or indirect, to cause the
19such Contributor's behalf. Contributions do not include additions to the Program19 direction or management of such entity, whether by contract or
20which: (i) are separate modules of software distributed in conjunction with the20 otherwise, or (ii) ownership of fifty percent (50%) or more of the
21Program under their own license agreement, and (ii) are not derivative works of21 outstanding shares, or (iii) beneficial ownership of such entity.
22the Program. "Contributor" means any person or entity that distributes the22
23Program.23 "You" (or "Your") shall mean an individual or Legal Entity
2424 exercising permissions granted by this License.
25"Licensed Patents" mean patent claims licensable by a Contributor which are25
26necessarily infringed by the use or sale of its Contribution alone or when26 "Source" form shall mean the preferred form for making modifications,
27combined with the Program.27 including but not limited to software source code, documentation
2828 source, and configuration files.
29"Program" means the Contributions distributed in accordance with this Agreement.29
3030 "Object" form shall mean any form resulting from mechanical
31"Recipient" means anyone who receives the Program under this Agreement,31 transformation or translation of a Source form, including but
32including all Contributors.32 not limited to compiled object code, generated documentation,
3333 and conversions to other media types.
342. GRANT OF RIGHTS34
3535 "Work" shall mean the work of authorship, whether in Source or
36a) Subject to the terms of this Agreement, each Contributor hereby grants36 Object form, made available under the License, as indicated by a
37Recipient a non-exclusive, worldwide, royalty-free copyright license to37 copyright notice that is included in or attached to the work
38reproduce, prepare derivative works of, publicly display, publicly perform,38 (an example is provided in the Appendix below).
39distribute and sublicense the Contribution of such Contributor, if any, and such39
40derivative works, in source code and object code form. b) Subject to the terms40 "Derivative Works" shall mean any work, whether in Source or Object
41of this Agreement, each Contributor hereby grants Recipient a non-exclusive,41 form, that is based on (or derived from) the Work and for which the
42worldwide, royalty-free patent license under Licensed Patents to make, use,42 editorial revisions, annotations, elaborations, or other modifications
43sell, offer to sell, import and otherwise transfer the Contribution of such43 represent, as a whole, an original work of authorship. For the purposes
44Contributor, if any, in source code and object code form. This patent license44 of this License, Derivative Works shall not include works that remain
45shall apply to the combination of the Contribution and the Program if, at the45 separable from, or merely link (or bind by name) to the interfaces of,
46time the Contribution is added by the Contributor, such addition of the46 the Work and Derivative Works thereof.
47Contribution causes such combination to be covered by the Licensed Patents. The47
48patent license shall not apply to any other combinations which include the48 "Contribution" shall mean any work of authorship, including
49Contribution. No hardware per se is licensed hereunder. c) Recipient understands49 the original version of the Work and any modifications or additions
50that although each Contributor grants the licenses to its Contributions set50 to that Work or Derivative Works thereof, that is intentionally
51forth herein, no assurances are provided by any Contributor that the Program51 submitted to Licensor for inclusion in the Work by the copyright owner
52does not infringe the patent or other intellectual property rights of any other52 or by an individual or Legal Entity authorized to submit on behalf of
53entity. Each Contributor disclaims any liability to Recipient for claims brought53 the copyright owner. For the purposes of this definition, "submitted"
54by any other entity based on infringement of intellectual property rights or54 means any form of electronic, verbal, or written communication sent
55otherwise. As a condition to exercising the rights and licenses granted55 to the Licensor or its representatives, including but not limited to
56hereunder, each Recipient hereby assumes sole responsibility to secure any other56 communication on electronic mailing lists, source code control systems,
57intellectual property rights needed, if any. For example, if a third party57 and issue tracking systems that are managed by, or on behalf of, the
58patent license is required to allow Recipient to distribute the Program, it is58 Licensor for the purpose of discussing and improving the Work, but
59Recipient's responsibility to acquire that license before distributing the59 excluding communication that is conspicuously marked or otherwise
60Program. d) Each Contributor represents that to its knowledge it has sufficient60 designated in writing by the copyright owner as "Not a Contribution."
61copyright rights in its Contribution, if any, to grant the copyright license set61
62forth in this Agreement. 3. REQUIREMENTS62 "Contributor" shall mean Licensor and any individual or Legal Entity
6363 on behalf of whom a Contribution has been received by Licensor and
64A Contributor may choose to distribute the Program in object code form under its64 subsequently incorporated within the Work.
65own license agreement, provided that:65
6666 2. Grant of Copyright License. Subject to the terms and conditions of
67a) it complies with the terms and conditions of this Agreement; and b) its67 this License, each Contributor hereby grants to You a perpetual,
68license agreement: i) effectively disclaims on behalf of all Contributors all68 worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69warranties and conditions, express and implied, including warranties or69 copyright license to reproduce, prepare Derivative Works of,
70conditions of title and non-infringement, and implied warranties or conditions70 publicly display, publicly perform, sublicense, and distribute the
71of merchantability and fitness for a particular purpose; ii) effectively71 Work and such Derivative Works in Source or Object form.
72excludes on behalf of all Contributors all liability for damages, including72
73direct, indirect, special, incidental and consequential damages, such as lost73 3. Grant of Patent License. Subject to the terms and conditions of
74profits; iii) states that any provisions which differ from this Agreement are74 this License, each Contributor hereby grants to You a perpetual,
75offered by that Contributor alone and not by any other party; and iv) states75 worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76that source code for the Program is available from such Contributor, and informs76 (except as stated in this section) patent license to make, have made,
77licensees how to obtain it in a reasonable manner on or through a medium77 use, offer to sell, sell, import, and otherwise transfer the Work,
78customarily used for software exchange. When the Program is made available in78 where such license applies only to those patent claims licensable
79source code form:79 by such Contributor that are necessarily infringed by their
8080 Contribution(s) alone or by combination of their Contribution(s)
81a) it must be made available under this Agreement; and b) a copy of this81 with the Work to which such Contribution(s) was submitted. If You
82Agreement must be included with each copy of the Program. Contributors may not82 institute patent litigation against any entity (including a
83remove or alter any copyright notices contained within the Program.83 cross-claim or counterclaim in a lawsuit) alleging that the Work
8484 or a Contribution incorporated within the Work constitutes direct
85Each Contributor must identify itself as the originator of its Contribution, if85 or contributory patent infringement, then any patent licenses
86any, in a manner that reasonably allows subsequent Recipients to identify the86 granted to You under this License for that Work shall terminate
87originator of the Contribution.87 as of the date such litigation is filed.
8888
894. COMMERCIAL DISTRIBUTION89 4. Redistribution. You may reproduce and distribute copies of the
9090 Work or Derivative Works thereof in any medium, with or without
91Commercial distributors of software may accept certain responsibilities with91 modifications, and in Source or Object form, provided that You
92respect to end users, business partners and the like. While this license is92 meet the following conditions:
93intended to facilitate the commercial use of the Program, the Contributor who93
94includes the Program in a commercial product offering should do so in a manner94 (a) You must give any other recipients of the Work or
95which does not create potential liability for other Contributors. Therefore, if95 Derivative Works a copy of this License; and
96a Contributor includes the Program in a commercial product offering, such96
97Contributor ("Commercial Contributor") hereby agrees to defend and indemnify97 (b) You must cause any modified files to carry prominent notices
98every other Contributor ("Indemnified Contributor") against any losses, damages98 stating that You changed the files; and
99and costs (collectively "Losses") arising from claims, lawsuits and other legal99
100actions brought by a third party against the Indemnified Contributor to the100 (c) You must retain, in the Source form of any Derivative Works
101extent caused by the acts or omissions of such Commercial Contributor in101 that You distribute, all copyright, patent, trademark, and
102connection with its distribution of the Program in a commercial product102 attribution notices from the Source form of the Work,
103offering. The obligations in this section do not apply to any claims or Losses103 excluding those notices that do not pertain to any part of
104relating to any actual or alleged intellectual property infringement. In order104 the Derivative Works; and
105to qualify, an Indemnified Contributor must: a) promptly notify the Commercial105
106Contributor in writing of such claim, and b) allow the Commercial Contributor to106 (d) If the Work includes a "NOTICE" text file as part of its
107control, and cooperate with the Commercial Contributor in, the defense and any107 distribution, then any Derivative Works that You distribute must
108related settlement negotiations. The Indemnified Contributor may participate in108 include a readable copy of the attribution notices contained
109any such claim at its own expense.109 within such NOTICE file, excluding those notices that do not
110110 pertain to any part of the Derivative Works, in at least one
111For example, a Contributor might include the Program in a commercial product111 of the following places: within a NOTICE text file distributed
112offering, Product X. That Contributor is then a Commercial Contributor. If that112 as part of the Derivative Works; within the Source form or
113Commercial Contributor then makes performance claims, or offers warranties113 documentation, if provided along with the Derivative Works; or,
114related to Product X, those performance claims and warranties are such114 within a display generated by the Derivative Works, if and
115Commercial Contributor's responsibility alone. Under this section, the115 wherever such third-party notices normally appear. The contents
116Commercial Contributor would have to defend claims against the other116 of the NOTICE file are for informational purposes only and
117Contributors related to those performance claims and warranties, and if a court117 do not modify the License. You may add Your own attribution
118requires any other Contributor to pay any damages as a result, the Commercial118 notices within Derivative Works that You distribute, alongside
119Contributor must pay those damages.119 or as an addendum to the NOTICE text from the Work, provided
120120 that such additional attribution notices cannot be construed
1215. NO WARRANTY121 as modifying the License.
122122
123EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN123 You may add Your own copyright statement to Your modifications and
124"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR124 may provide additional or different license terms and conditions
125IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,125 for use, reproduction, or distribution of Your modifications, or
126NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each126 for any such Derivative Works as a whole, provided Your use,
127Recipient is solely responsible for determining the appropriateness of using and127 reproduction, and distribution of the Work otherwise complies with
128distributing the Program and assumes all risks associated with its exercise of128 the conditions stated in this License.
129rights under this Agreement , including but not limited to the risks and costs129
130of program errors, compliance with applicable laws, damage to or loss of data,130 5. Submission of Contributions. Unless You explicitly state otherwise,
131programs or equipment, and unavailability or interruption of operations.131 any Contribution intentionally submitted for inclusion in the Work
132132 by You to the Licensor shall be under the terms and conditions of
1336. DISCLAIMER OF LIABILITY133 this License, without any additional terms or conditions.
134134 Notwithstanding the above, nothing herein shall supersede or modify
135EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY135 the terms of any separate license agreement you may have executed
136CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,136 with Licensor regarding such Contributions.
137SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST137
138PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,138 6. Trademarks. This License does not grant permission to use the trade
139STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY139 names, trademarks, service marks, or product names of the Licensor,
140OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS140 except as required for reasonable and customary use in describing the
141GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.141 origin of the Work and reproducing the content of the NOTICE file.
142142
1437. GENERAL143 7. Disclaimer of Warranty. Unless required by applicable law or
144144 agreed to in writing, Licensor provides the Work (and each
145If any provision of this Agreement is invalid or unenforceable under applicable145 Contributor provides its Contributions) on an "AS IS" BASIS,
146law, it shall not affect the validity or enforceability of the remainder of the146 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147terms of this Agreement, and without further action by the parties hereto, such147 implied, including, without limitation, any warranties or conditions
148provision shall be reformed to the minimum extent necessary to make such148 of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149provision valid and enforceable.149 PARTICULAR PURPOSE. You are solely responsible for determining the
150150 appropriateness of using or redistributing the Work and assume any
151If Recipient institutes patent litigation against any entity (including a151 risks associated with Your exercise of permissions under this License.
152cross-claim or counterclaim in a lawsuit) alleging that the Program itself152
153(excluding combinations of the Program with other software or hardware)153 8. Limitation of Liability. In no event and under no legal theory,
154infringes such Recipient's patent(s), then such Recipient's rights granted under154 whether in tort (including negligence), contract, or otherwise,
155Section 2(b) shall terminate as of the date such litigation is filed.155 unless required by applicable law (such as deliberate and grossly
156156 negligent acts) or agreed to in writing, shall any Contributor be
157All Recipient's rights under this Agreement shall terminate if it fails to157 liable to You for damages, including any direct, indirect, special,
158comply with any of the material terms or conditions of this Agreement and does158 incidental, or consequential damages of any character arising as a
159not cure such failure in a reasonable period of time after becoming aware of159 result of this License or out of the use or inability to use the
160such noncompliance. If all Recipient's rights under this Agreement terminate,160 Work (including but not limited to damages for loss of goodwill,
161Recipient agrees to cease use and distribution of the Program as soon as161 work stoppage, computer failure or malfunction, or any and all
162reasonably practicable. However, Recipient's obligations under this Agreement162 other commercial damages or losses), even if such Contributor
163and any licenses granted by Recipient relating to the Program shall continue and163 has been advised of the possibility of such damages.
164survive.164
165165 9. Accepting Warranty or Additional Liability. While redistributing
166Everyone is permitted to copy and distribute copies of this Agreement, but in166 the Work or Derivative Works thereof, You may choose to offer,
167order to avoid inconsistency the Agreement is copyrighted and may only be167 and charge a fee for, acceptance of support, warranty, indemnity,
168modified in the following manner. The Agreement Steward reserves the right to168 or other liability obligations and/or rights consistent with this
169publish new versions (including revisions) of this Agreement from time to time.169 License. However, in accepting such obligations, You may act only
170No one other than the Agreement Steward has the right to modify this Agreement.170 on Your own behalf and on Your sole responsibility, not on behalf
171The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation171 of any other Contributor, and only if You agree to indemnify,
172may assign the responsibility to serve as the Agreement Steward to a suitable172 defend, and hold each Contributor harmless for any liability
173separate entity. Each new version of the Agreement will be given a173 incurred by, or claims asserted against, such Contributor by reason
174distinguishing version number. The Program (including Contributions) may always174 of your accepting any such warranty or additional liability.
175be distributed subject to the version of the Agreement under which it was175
176received. In addition, after a new version of the Agreement is published,176 END OF TERMS AND CONDITIONS
177Contributor may elect to distribute the Program (including its Contributions)177
178under the new version. Except as expressly stated in Sections 2(a) and 2(b)178 APPENDIX: How to apply the Apache License to your work.
179above, Recipient receives no rights or licenses to the intellectual property of179
180any Contributor under this Agreement, whether expressly, by implication,180 To apply the Apache License to your work, attach the following
181estoppel or otherwise. All rights in the Program not expressly granted under181 boilerplate notice, with the fields enclosed by brackets "[]"
182this Agreement are reserved.182 replaced with your own identifying information. (Don't include
183183 the brackets!) The text should be enclosed in the appropriate
184This Agreement is governed by the laws of the State of New York and the184 comment syntax for the file format. We also recommend that a
185intellectual property laws of the United States of America. No party to this185 file or class name and description of purpose be included on the
186Agreement will bring a legal action under this Agreement more than one year186 same "printed page" as the copyright notice for easier
187after the cause of action arose. Each party waives its rights to a jury trial in187 identification within third-party archives.
188any resulting litigation.188
189 Copyright [yyyy] [name of copyright owner]
190
191 Licensed under the Apache License, Version 2.0 (the "License");
192 you may not use this file except in compliance with the License.
193 You may obtain a copy of the License at
194
195 http://www.apache.org/licenses/LICENSE-2.0
196
197 Unless required by applicable law or agreed to in writing, software
198 distributed under the License is distributed on an "AS IS" BASIS,
199 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200 See the License for the specific language governing permissions and
201 limitations under the License.
202
189203
=== modified file 'build_release.sh'
--- build_release.sh 2013-01-14 17:07:57 +0000
+++ build_release.sh 2013-05-08 22:15:59 +0000
@@ -1,26 +1,27 @@
1#!/bin/bash1#!/bin/bash
2#2#
3# Copyright © 2012 Akiban Technologies, Inc. All rights reserved.3# Copyright 2010-2013 Akiban Technologies, Inc.
4#4#
5# This program and the accompanying materials are made available5# Licensed under the Apache License, Version 2.0 (the "License");
6# under the terms of the Eclipse Public License v1.0 which6# you may not use this file except in compliance with the License.
7# accompanies this distribution, and is available at7# You may obtain a copy of the License at
8# http://www.eclipse.org/legal/epl-v10.html8#
9#9# http://www.apache.org/licenses/LICENSE-2.0
10# This program may also be available under different license terms.10#
11# For more information, see www.akiban.com or contact licensing@akiban.com.11# Unless required by applicable law or agreed to in writing, software
12#12# distributed under the License is distributed on an "AS IS" BASIS,
13# Contributors:13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# Akiban Technologies, Inc.14# See the License for the specific language governing permissions and
15# limitations under the License.
15#16#
1617
17#18#
18# Build build artifacts associated with a release19# Build build artifacts associated with a release
19# - Bundles/packages20# - Bundles/packages
20# - akiban-sql-parser-X.X.X.zip (binary, EPL)21# - akiban-sql-parser-X.X.X.zip (binary, Apache)
21# - akiban-sql-parser-X.X.X.tar.gz (binary, EPL)22# - akiban-sql-parser-X.X.X.tar.gz (binary, Apache)
22# - akiban-sql-parser-X.X.X-source.zip (source, EPL)23# - akiban-sql-parser-X.X.X-source.zip (source, Apache)
23# - akiban-sql-parser-X.X.X-source.tar.gz (source, EPL)24# - akiban-sql-parser-X.X.X-source.tar.gz (source, Apache)
24#25#
2526
26set -e27set -e
2728
=== modified file 'pom.xml'
--- pom.xml 2013-05-08 22:15:59 +0000
+++ pom.xml 2013-05-08 22:15:59 +0000
@@ -22,8 +22,8 @@
2222
23 <licenses>23 <licenses>
24 <license>24 <license>
25 <name>Eclipse Public License v1.0</name>25 <name>The Apache Software License, Version 2.0</name>
26 <url>http://www.eclipse.org/legal/epl-v10.html</url>26 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
27 <distribution>repo</distribution>27 <distribution>repo</distribution>
28 </license>28 </license>
29 </licenses>29 </licenses>
@@ -158,8 +158,8 @@
158 <headerSections>158 <headerSections>
159 <headerSection>159 <headerSection>
160 <key>__YEAR_SECTION__</key>160 <key>__YEAR_SECTION__</key>
161 <defaultValue>2012</defaultValue>161 <defaultValue>2013</defaultValue>
162 <ensureMatch>20(11)\-2012|2012|2013</ensureMatch>162 <ensureMatch>20(11|12|13)\-2013|2013</ensureMatch>
163 </headerSection>163 </headerSection>
164 </headerSections>164 </headerSections>
165 <strictCheck>true</strictCheck>165 <strictCheck>true</strictCheck>
166166
=== modified file 'src/etc/header.txt'
--- src/etc/header.txt 2012-11-07 17:13:18 +0000
+++ src/etc/header.txt 2013-05-08 22:15:59 +0000
@@ -1,14 +1,13 @@
1Copyright © __YEAR_SECTION__ Akiban Technologies, Inc. All rights1Copyright __YEAR_SECTION__ Akiban Technologies, Inc.
2reserved.2
33Licensed under the Apache License, Version 2.0 (the "License");
4This program and the accompanying materials are made available4you may not use this file except in compliance with the License.
5under the terms of the Eclipse Public License v1.0 which5You may obtain a copy of the License at
6accompanies this distribution, and is available at6
7http://www.eclipse.org/legal/epl-v10.html7 http://www.apache.org/licenses/LICENSE-2.0
88
9This program may also be available under different license terms.9Unless required by applicable law or agreed to in writing, software
10For more information, see www.akiban.com or contact10distributed under the License is distributed on an "AS IS" BASIS,
11licensing@akiban.com.11WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212See the License for the specific language governing permissions and
13Contributors:13limitations under the License.
14Akiban Technologies, Inc.
1514
=== modified file 'src/main/java/com/akiban/sql/IncomparableException.java'
--- src/main/java/com/akiban/sql/IncomparableException.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/IncomparableException.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18package com.akiban.sql;17package com.akiban.sql;
1918
=== modified file 'src/main/java/com/akiban/sql/StandardException.java'
--- src/main/java/com/akiban/sql/StandardException.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/StandardException.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/**17/**
@@ -20,20 +19,6 @@
20 *19 *
21 */20 */
2221
23/* Copyright (C) 2011 Akiban Technologies Inc.
24 * This program is free software: you can redistribute it and/or modify
25 * it under the terms of the GNU Affero General Public License, version 3,
26 * as published by the Free Software Foundation.
27 *
28 * This program is distributed in the hope that it will be useful,
29 * but WITHOUT ANY WARRANTY; without even the implied warranty of
30 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31 * GNU Affero General Public License for more details.
32 *
33 * You should have received a copy of the GNU Affero General Public License
34 * along with this program. If not, see <http://www.gnu.org/licenses/>.
35*/
36
37// TODO: The Derby exception handling coordinated localized messages22// TODO: The Derby exception handling coordinated localized messages
38// and SQLSTATE values, which will be needed, but in the context of23// and SQLSTATE values, which will be needed, but in the context of
39// the new engine.24// the new engine.
4025
=== modified file 'src/main/java/com/akiban/sql/compiler/BitTypeCompiler.java'
--- src/main/java/com/akiban/sql/compiler/BitTypeCompiler.java 2012-11-08 20:15:40 +0000
+++ src/main/java/com/akiban/sql/compiler/BitTypeCompiler.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/compiler/BooleanNormalizer.java'
--- src/main/java/com/akiban/sql/compiler/BooleanNormalizer.java 2012-11-08 20:15:40 +0000
+++ src/main/java/com/akiban/sql/compiler/BooleanNormalizer.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/compiler/BooleanTypeCompiler.java'
--- src/main/java/com/akiban/sql/compiler/BooleanTypeCompiler.java 2012-11-07 18:55:29 +0000
+++ src/main/java/com/akiban/sql/compiler/BooleanTypeCompiler.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/compiler/CLOBTypeCompiler.java'
--- src/main/java/com/akiban/sql/compiler/CLOBTypeCompiler.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/compiler/CLOBTypeCompiler.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/compiler/CharTypeCompiler.java'
--- src/main/java/com/akiban/sql/compiler/CharTypeCompiler.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/compiler/CharTypeCompiler.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/compiler/DateTypeCompiler.java'
--- src/main/java/com/akiban/sql/compiler/DateTypeCompiler.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/compiler/DateTypeCompiler.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/compiler/IntervalTypeCompiler.java'
--- src/main/java/com/akiban/sql/compiler/IntervalTypeCompiler.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/compiler/IntervalTypeCompiler.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18package com.akiban.sql.compiler;17package com.akiban.sql.compiler;
1918
=== modified file 'src/main/java/com/akiban/sql/compiler/LOBTypeCompiler.java'
--- src/main/java/com/akiban/sql/compiler/LOBTypeCompiler.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/compiler/LOBTypeCompiler.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/compiler/NumericTypeCompiler.java'
--- src/main/java/com/akiban/sql/compiler/NumericTypeCompiler.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/compiler/NumericTypeCompiler.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/compiler/RefTypeCompiler.java'
--- src/main/java/com/akiban/sql/compiler/RefTypeCompiler.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/compiler/RefTypeCompiler.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/compiler/TimeTypeCompiler.java'
--- src/main/java/com/akiban/sql/compiler/TimeTypeCompiler.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/compiler/TimeTypeCompiler.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/compiler/TimestampTypeCompiler.java'
--- src/main/java/com/akiban/sql/compiler/TimestampTypeCompiler.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/compiler/TimestampTypeCompiler.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/compiler/TypeCompiler.java'
--- src/main/java/com/akiban/sql/compiler/TypeCompiler.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/compiler/TypeCompiler.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/compiler/TypeComputer.java'
--- src/main/java/com/akiban/sql/compiler/TypeComputer.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/compiler/TypeComputer.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18package com.akiban.sql.compiler;17package com.akiban.sql.compiler;
1918
=== modified file 'src/main/java/com/akiban/sql/compiler/UserDefinedTypeCompiler.java'
--- src/main/java/com/akiban/sql/compiler/UserDefinedTypeCompiler.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/compiler/UserDefinedTypeCompiler.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/compiler/XMLTypeCompiler.java'
--- src/main/java/com/akiban/sql/compiler/XMLTypeCompiler.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/compiler/XMLTypeCompiler.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/ASTVisitor.java'
--- src/main/java/com/akiban/sql/parser/ASTVisitor.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/ASTVisitor.java 2013-05-08 22:15:59 +0000
@@ -1,19 +1,18 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.15 */
16 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
2019
=== modified file 'src/main/java/com/akiban/sql/parser/AccessMode.java'
--- src/main/java/com/akiban/sql/parser/AccessMode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/AccessMode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/**17/**
1918
=== modified file 'src/main/java/com/akiban/sql/parser/AggregateNode.java'
--- src/main/java/com/akiban/sql/parser/AggregateNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/AggregateNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/AggregateWindowFunctionNode.java'
--- src/main/java/com/akiban/sql/parser/AggregateWindowFunctionNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/AggregateWindowFunctionNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/AllResultColumn.java'
--- src/main/java/com/akiban/sql/parser/AllResultColumn.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/AllResultColumn.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/AlterAddIndexNode.java'
--- src/main/java/com/akiban/sql/parser/AlterAddIndexNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/AlterAddIndexNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18package com.akiban.sql.parser;17package com.akiban.sql.parser;
1918
=== modified file 'src/main/java/com/akiban/sql/parser/AlterDropIndexNode.java'
--- src/main/java/com/akiban/sql/parser/AlterDropIndexNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/AlterDropIndexNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18package com.akiban.sql.parser;17package com.akiban.sql.parser;
1918
=== modified file 'src/main/java/com/akiban/sql/parser/AlterServerNode.java'
--- src/main/java/com/akiban/sql/parser/AlterServerNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/AlterServerNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18package com.akiban.sql.parser;17package com.akiban.sql.parser;
1918
=== modified file 'src/main/java/com/akiban/sql/parser/AlterTableNode.java'
--- src/main/java/com/akiban/sql/parser/AlterTableNode.java 2012-11-30 18:20:01 +0000
+++ src/main/java/com/akiban/sql/parser/AlterTableNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/AlterTableRenameColumnNode.java'
--- src/main/java/com/akiban/sql/parser/AlterTableRenameColumnNode.java 2013-02-05 07:11:51 +0000
+++ src/main/java/com/akiban/sql/parser/AlterTableRenameColumnNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18package com.akiban.sql.parser;17package com.akiban.sql.parser;
1918
=== modified file 'src/main/java/com/akiban/sql/parser/AlterTableRenameNode.java'
--- src/main/java/com/akiban/sql/parser/AlterTableRenameNode.java 2012-11-09 19:27:35 +0000
+++ src/main/java/com/akiban/sql/parser/AlterTableRenameNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18package com.akiban.sql.parser;17package com.akiban.sql.parser;
1918
=== modified file 'src/main/java/com/akiban/sql/parser/AndNode.java'
--- src/main/java/com/akiban/sql/parser/AndNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/AndNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/BaseColumnNode.java'
--- src/main/java/com/akiban/sql/parser/BaseColumnNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/BaseColumnNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/BaseToken.java'
--- src/main/java/com/akiban/sql/parser/BaseToken.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/BaseToken.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this dervices bore the following: */17/* The original from which this dervices bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/BetweenOperatorNode.java'
--- src/main/java/com/akiban/sql/parser/BetweenOperatorNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/BetweenOperatorNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/BinaryArithmeticOperatorNode.java'
--- src/main/java/com/akiban/sql/parser/BinaryArithmeticOperatorNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/BinaryArithmeticOperatorNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/BinaryBitOperatorNode.java'
--- src/main/java/com/akiban/sql/parser/BinaryBitOperatorNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/BinaryBitOperatorNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18package com.akiban.sql.parser;17package com.akiban.sql.parser;
1918
=== modified file 'src/main/java/com/akiban/sql/parser/BinaryComparisonOperatorNode.java'
--- src/main/java/com/akiban/sql/parser/BinaryComparisonOperatorNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/BinaryComparisonOperatorNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/BinaryListOperatorNode.java'
--- src/main/java/com/akiban/sql/parser/BinaryListOperatorNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/BinaryListOperatorNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/BinaryLogicalOperatorNode.java'
--- src/main/java/com/akiban/sql/parser/BinaryLogicalOperatorNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/BinaryLogicalOperatorNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/BinaryOperatorNode.java'
--- src/main/java/com/akiban/sql/parser/BinaryOperatorNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/BinaryOperatorNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/BinaryRelationalOperatorNode.java'
--- src/main/java/com/akiban/sql/parser/BinaryRelationalOperatorNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/BinaryRelationalOperatorNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/BitConstantNode.java'
--- src/main/java/com/akiban/sql/parser/BitConstantNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/BitConstantNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/BooleanConstantNode.java'
--- src/main/java/com/akiban/sql/parser/BooleanConstantNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/BooleanConstantNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/CallStatementNode.java'
--- src/main/java/com/akiban/sql/parser/CallStatementNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/CallStatementNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/CastNode.java'
--- src/main/java/com/akiban/sql/parser/CastNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/CastNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/CharConstantNode.java'
--- src/main/java/com/akiban/sql/parser/CharConstantNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/CharConstantNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/CloseStatementNode.java'
--- src/main/java/com/akiban/sql/parser/CloseStatementNode.java 2012-12-13 23:01:21 +0000
+++ src/main/java/com/akiban/sql/parser/CloseStatementNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18package com.akiban.sql.parser;17package com.akiban.sql.parser;
1918
=== modified file 'src/main/java/com/akiban/sql/parser/CoalesceFunctionNode.java'
--- src/main/java/com/akiban/sql/parser/CoalesceFunctionNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/CoalesceFunctionNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/ColumnDefinitionNode.java'
--- src/main/java/com/akiban/sql/parser/ColumnDefinitionNode.java 2013-04-11 18:47:18 +0000
+++ src/main/java/com/akiban/sql/parser/ColumnDefinitionNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/ColumnReference.java'
--- src/main/java/com/akiban/sql/parser/ColumnReference.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/ColumnReference.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/ConcatenationOperatorNode.java'
--- src/main/java/com/akiban/sql/parser/ConcatenationOperatorNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/ConcatenationOperatorNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/ConditionalNode.java'
--- src/main/java/com/akiban/sql/parser/ConditionalNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/ConditionalNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/ConstantNode.java'
--- src/main/java/com/akiban/sql/parser/ConstantNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/ConstantNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/ConstraintDefinitionNode.java'
--- src/main/java/com/akiban/sql/parser/ConstraintDefinitionNode.java 2013-03-06 11:08:05 +0000
+++ src/main/java/com/akiban/sql/parser/ConstraintDefinitionNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/CopyStatementNode.java'
--- src/main/java/com/akiban/sql/parser/CopyStatementNode.java 2012-12-30 20:08:04 +0000
+++ src/main/java/com/akiban/sql/parser/CopyStatementNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18package com.akiban.sql.parser;17package com.akiban.sql.parser;
1918
=== modified file 'src/main/java/com/akiban/sql/parser/CreateAliasNode.java'
--- src/main/java/com/akiban/sql/parser/CreateAliasNode.java 2013-04-10 23:54:23 +0000
+++ src/main/java/com/akiban/sql/parser/CreateAliasNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/CreateIndexNode.java'
--- src/main/java/com/akiban/sql/parser/CreateIndexNode.java 2013-03-06 11:08:05 +0000
+++ src/main/java/com/akiban/sql/parser/CreateIndexNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/CreateRoleNode.java'
--- src/main/java/com/akiban/sql/parser/CreateRoleNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/CreateRoleNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/CreateSchemaNode.java'
--- src/main/java/com/akiban/sql/parser/CreateSchemaNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/CreateSchemaNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/CreateSequenceNode.java'
--- src/main/java/com/akiban/sql/parser/CreateSequenceNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/CreateSequenceNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/CreateTableNode.java'
--- src/main/java/com/akiban/sql/parser/CreateTableNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/CreateTableNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/CreateTriggerNode.java'
--- src/main/java/com/akiban/sql/parser/CreateTriggerNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/CreateTriggerNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/CreateViewNode.java'
--- src/main/java/com/akiban/sql/parser/CreateViewNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/CreateViewNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/CurrentDatetimeOperatorNode.java'
--- src/main/java/com/akiban/sql/parser/CurrentDatetimeOperatorNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/CurrentDatetimeOperatorNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/CurrentOfNode.java'
--- src/main/java/com/akiban/sql/parser/CurrentOfNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/CurrentOfNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/CurrentRowLocationNode.java'
--- src/main/java/com/akiban/sql/parser/CurrentRowLocationNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/CurrentRowLocationNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/CurrentSequenceNode.java'
--- src/main/java/com/akiban/sql/parser/CurrentSequenceNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/CurrentSequenceNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/CursorNode.java'
--- src/main/java/com/akiban/sql/parser/CursorNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/CursorNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/DDLStatementNode.java'
--- src/main/java/com/akiban/sql/parser/DDLStatementNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/DDLStatementNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/DMLModStatementNode.java'
--- src/main/java/com/akiban/sql/parser/DMLModStatementNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/DMLModStatementNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/DMLStatementNode.java'
--- src/main/java/com/akiban/sql/parser/DMLStatementNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/DMLStatementNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/DeallocateStatementNode.java'
--- src/main/java/com/akiban/sql/parser/DeallocateStatementNode.java 2012-12-13 23:01:21 +0000
+++ src/main/java/com/akiban/sql/parser/DeallocateStatementNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18package com.akiban.sql.parser;17package com.akiban.sql.parser;
1918
=== modified file 'src/main/java/com/akiban/sql/parser/DeclareStatementNode.java'
--- src/main/java/com/akiban/sql/parser/DeclareStatementNode.java 2012-12-13 23:01:21 +0000
+++ src/main/java/com/akiban/sql/parser/DeclareStatementNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18package com.akiban.sql.parser;17package com.akiban.sql.parser;
1918
=== modified file 'src/main/java/com/akiban/sql/parser/DefaultNode.java'
--- src/main/java/com/akiban/sql/parser/DefaultNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/DefaultNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/DeleteNode.java'
--- src/main/java/com/akiban/sql/parser/DeleteNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/DeleteNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/DistinctNode.java'
--- src/main/java/com/akiban/sql/parser/DistinctNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/DistinctNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/DropAliasNode.java'
--- src/main/java/com/akiban/sql/parser/DropAliasNode.java 2012-11-28 20:18:21 +0000
+++ src/main/java/com/akiban/sql/parser/DropAliasNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/DropGroupNode.java'
--- src/main/java/com/akiban/sql/parser/DropGroupNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/DropGroupNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18package com.akiban.sql.parser;17package com.akiban.sql.parser;
1918
=== modified file 'src/main/java/com/akiban/sql/parser/DropIndexNode.java'
--- src/main/java/com/akiban/sql/parser/DropIndexNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/DropIndexNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/DropRoleNode.java'
--- src/main/java/com/akiban/sql/parser/DropRoleNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/DropRoleNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/DropSchemaNode.java'
--- src/main/java/com/akiban/sql/parser/DropSchemaNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/DropSchemaNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/DropSequenceNode.java'
--- src/main/java/com/akiban/sql/parser/DropSequenceNode.java 2013-04-13 22:25:50 +0000
+++ src/main/java/com/akiban/sql/parser/DropSequenceNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/DropTableNode.java'
--- src/main/java/com/akiban/sql/parser/DropTableNode.java 2012-11-28 20:18:21 +0000
+++ src/main/java/com/akiban/sql/parser/DropTableNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/DropTriggerNode.java'
--- src/main/java/com/akiban/sql/parser/DropTriggerNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/DropTriggerNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/DropViewNode.java'
--- src/main/java/com/akiban/sql/parser/DropViewNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/DropViewNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/ExecuteStatementNode.java'
--- src/main/java/com/akiban/sql/parser/ExecuteStatementNode.java 2012-12-13 23:01:21 +0000
+++ src/main/java/com/akiban/sql/parser/ExecuteStatementNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18package com.akiban.sql.parser;17package com.akiban.sql.parser;
1918
=== modified file 'src/main/java/com/akiban/sql/parser/ExistenceCheck.java'
--- src/main/java/com/akiban/sql/parser/ExistenceCheck.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/ExistenceCheck.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18package com.akiban.sql.parser;17package com.akiban.sql.parser;
1918
=== modified file 'src/main/java/com/akiban/sql/parser/ExplainStatementNode.java'
--- src/main/java/com/akiban/sql/parser/ExplainStatementNode.java 2013-01-07 20:39:53 +0000
+++ src/main/java/com/akiban/sql/parser/ExplainStatementNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18package com.akiban.sql.parser;17package com.akiban.sql.parser;
1918
=== modified file 'src/main/java/com/akiban/sql/parser/ExplicitCollateNode.java'
--- src/main/java/com/akiban/sql/parser/ExplicitCollateNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/ExplicitCollateNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18package com.akiban.sql.parser;17package com.akiban.sql.parser;
1918
=== modified file 'src/main/java/com/akiban/sql/parser/ExtractOperatorNode.java'
--- src/main/java/com/akiban/sql/parser/ExtractOperatorNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/ExtractOperatorNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/FKConstraintDefinitionNode.java'
--- src/main/java/com/akiban/sql/parser/FKConstraintDefinitionNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/FKConstraintDefinitionNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/FetchStatementNode.java'
--- src/main/java/com/akiban/sql/parser/FetchStatementNode.java 2012-12-13 23:01:21 +0000
+++ src/main/java/com/akiban/sql/parser/FetchStatementNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18package com.akiban.sql.parser;17package com.akiban.sql.parser;
1918
=== modified file 'src/main/java/com/akiban/sql/parser/FromBaseTable.java'
--- src/main/java/com/akiban/sql/parser/FromBaseTable.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/FromBaseTable.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/FromList.java'
--- src/main/java/com/akiban/sql/parser/FromList.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/FromList.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/FromSubquery.java'
--- src/main/java/com/akiban/sql/parser/FromSubquery.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/FromSubquery.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/FromTable.java'
--- src/main/java/com/akiban/sql/parser/FromTable.java 2013-01-10 23:53:16 +0000
+++ src/main/java/com/akiban/sql/parser/FromTable.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/FromVTI.java'
--- src/main/java/com/akiban/sql/parser/FromVTI.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/FromVTI.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/GenerationClauseNode.java'
--- src/main/java/com/akiban/sql/parser/GenerationClauseNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/GenerationClauseNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/GetCurrentConnectionNode.java'
--- src/main/java/com/akiban/sql/parser/GetCurrentConnectionNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/GetCurrentConnectionNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/GrantNode.java'
--- src/main/java/com/akiban/sql/parser/GrantNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/GrantNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/GrantRoleNode.java'
--- src/main/java/com/akiban/sql/parser/GrantRoleNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/GrantRoleNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/GroupByColumn.java'
--- src/main/java/com/akiban/sql/parser/GroupByColumn.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/GroupByColumn.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/GroupByList.java'
--- src/main/java/com/akiban/sql/parser/GroupByList.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/GroupByList.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/GroupConcatNode.java'
--- src/main/java/com/akiban/sql/parser/GroupConcatNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/GroupConcatNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18package com.akiban.sql.parser;17package com.akiban.sql.parser;
1918
=== modified file 'src/main/java/com/akiban/sql/parser/HalfOuterJoinNode.java'
--- src/main/java/com/akiban/sql/parser/HalfOuterJoinNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/HalfOuterJoinNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/HasNodeVisitor.java'
--- src/main/java/com/akiban/sql/parser/HasNodeVisitor.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/HasNodeVisitor.java 2013-05-08 22:15:59 +0000
@@ -1,19 +1,18 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.15 */
16 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
2019
=== modified file 'src/main/java/com/akiban/sql/parser/InListOperatorNode.java'
--- src/main/java/com/akiban/sql/parser/InListOperatorNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/InListOperatorNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/IndexColumn.java'
--- src/main/java/com/akiban/sql/parser/IndexColumn.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/IndexColumn.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18package com.akiban.sql.parser;17package com.akiban.sql.parser;
1918
=== modified file 'src/main/java/com/akiban/sql/parser/IndexColumnList.java'
--- src/main/java/com/akiban/sql/parser/IndexColumnList.java 2013-02-25 00:17:53 +0000
+++ src/main/java/com/akiban/sql/parser/IndexColumnList.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18package com.akiban.sql.parser;17package com.akiban.sql.parser;
1918
=== modified file 'src/main/java/com/akiban/sql/parser/IndexConstraintDefinitionNode.java'
--- src/main/java/com/akiban/sql/parser/IndexConstraintDefinitionNode.java 2013-03-06 11:08:05 +0000
+++ src/main/java/com/akiban/sql/parser/IndexConstraintDefinitionNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18package com.akiban.sql.parser;17package com.akiban.sql.parser;
1918
=== modified file 'src/main/java/com/akiban/sql/parser/IndexDefinition.java'
--- src/main/java/com/akiban/sql/parser/IndexDefinition.java 2013-04-13 22:25:50 +0000
+++ src/main/java/com/akiban/sql/parser/IndexDefinition.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2013 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
17package com.akiban.sql.parser;16package com.akiban.sql.parser;
1817
1918
=== modified file 'src/main/java/com/akiban/sql/parser/IndexHintList.java'
--- src/main/java/com/akiban/sql/parser/IndexHintList.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/IndexHintList.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18package com.akiban.sql.parser;17package com.akiban.sql.parser;
1918
=== modified file 'src/main/java/com/akiban/sql/parser/IndexHintNode.java'
--- src/main/java/com/akiban/sql/parser/IndexHintNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/IndexHintNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18package com.akiban.sql.parser;17package com.akiban.sql.parser;
1918
=== modified file 'src/main/java/com/akiban/sql/parser/InsertNode.java'
--- src/main/java/com/akiban/sql/parser/InsertNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/InsertNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/IntersectOrExceptNode.java'
--- src/main/java/com/akiban/sql/parser/IntersectOrExceptNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/IntersectOrExceptNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/IsNode.java'
--- src/main/java/com/akiban/sql/parser/IsNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/IsNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/IsNullNode.java'
--- src/main/java/com/akiban/sql/parser/IsNullNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/IsNullNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/IsolationLevel.java'
--- src/main/java/com/akiban/sql/parser/IsolationLevel.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/IsolationLevel.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/**17/**
1918
=== modified file 'src/main/java/com/akiban/sql/parser/JavaToSQLValueNode.java'
--- src/main/java/com/akiban/sql/parser/JavaToSQLValueNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/JavaToSQLValueNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/JavaValueNode.java'
--- src/main/java/com/akiban/sql/parser/JavaValueNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/JavaValueNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/JoinNode.java'
--- src/main/java/com/akiban/sql/parser/JoinNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/JoinNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/LeftRightFuncOperatorNode.java'
--- src/main/java/com/akiban/sql/parser/LeftRightFuncOperatorNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/LeftRightFuncOperatorNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18package com.akiban.sql.parser;17package com.akiban.sql.parser;
1918
=== modified file 'src/main/java/com/akiban/sql/parser/LengthOperatorNode.java'
--- src/main/java/com/akiban/sql/parser/LengthOperatorNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/LengthOperatorNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/LikeEscapeOperatorNode.java'
--- src/main/java/com/akiban/sql/parser/LikeEscapeOperatorNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/LikeEscapeOperatorNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/LockTableNode.java'
--- src/main/java/com/akiban/sql/parser/LockTableNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/LockTableNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights2 * Copyright 2011-2013 Akiban Technologies, Inc.
3 * reserved.3 *
4 *4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * This program and the accompanying materials are made available5 * you may not use this file except in compliance with the License.
6 * under the terms of the Eclipse Public License v1.0 which6 * You may obtain a copy of the License at
7 * accompanies this distribution, and is available at7 *
8 * http://www.eclipse.org/legal/epl-v10.html8 * http://www.apache.org/licenses/LICENSE-2.0
9 *9 *
10 * This program may also be available under different license terms.10 * Unless required by applicable law or agreed to in writing, software
11 * For more information, see www.akiban.com or contact11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * licensing@akiban.com.12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *13 * See the License for the specific language governing permissions and
14 * Contributors:14 * limitations under the License.
15 * Akiban Technologies, Inc.
16 */15 */
1716
18/* The original from which this derives bore the following: */17/* The original from which this derives bore the following: */
1918
=== modified file 'src/main/java/com/akiban/sql/parser/MethodCallNode.java'
--- src/main/java/com/akiban/sql/parser/MethodCallNode.java 2012-11-07 17:49:31 +0000
+++ src/main/java/com/akiban/sql/parser/MethodCallNode.java 2013-05-08 22:15:59 +0000
@@ -1,18 +1,17 @@
1/**1/**
2 * Copyright © 2012 Akiban Technologies, Inc. All rights
3 * reserved.
4 *
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches