index
int64
repo_id
string
file_path
string
content
string
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/bnf/BnfVisitor.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.bnf; import java.util.ArrayList; /** * The visitor interface for BNF rules. */ public interface BnfVisitor { /** * Visit ...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/bnf/Rule.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.bnf; import java.util.HashMap; /** * Represents a BNF rule. */ public interface Rule { /** * Update cross references. ...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/bnf/RuleElement.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.bnf; import java.util.HashMap; import org.h2.util.StringUtils; /** * A single terminal rule in a BNF object. */ public class RuleE...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/bnf/RuleFixed.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.bnf; import java.util.HashMap; /** * Represents a hard coded terminal rule in a BNF object. */ public class RuleFixed implements Ru...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/bnf/RuleHead.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.bnf; /** * Represents the head of a BNF rule. */ public class RuleHead { private final String section; private final String ...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/bnf/RuleList.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.bnf; import java.util.ArrayList; import java.util.HashMap; import org.h2.util.New; /** * Represents a sequence of BNF rules, or a li...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/bnf/RuleOptional.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.bnf; import java.util.HashMap; /** * Represents an optional BNF rule. */ public class RuleOptional implements Rule { private fi...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/bnf/RuleRepeat.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.bnf; import java.util.HashMap; /** * Represents a loop in a BNF object. */ public class RuleRepeat implements Rule { private f...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/bnf/Sentence.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.bnf; import java.util.HashMap; import java.util.HashSet; import java.util.Objects; import java.util.concurrent.TimeUnit; import org.h...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/bnf
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/bnf/context/DbColumn.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.bnf.context; import java.sql.DatabaseMetaData; import java.sql.ResultSet; import java.sql.SQLException; /** * Keeps the meta data in...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/bnf
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/bnf/context/DbContents.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.bnf.context; import java.sql.Connection; import java.sql.DatabaseMetaData; import java.sql.PreparedStatement; import java.sql.ResultSe...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/bnf
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/bnf/context/DbContextRule.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.bnf.context; import java.util.HashMap; import java.util.HashSet; import org.h2.bnf.Bnf; import org.h2.bnf.BnfVisitor; import org.h2.b...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/bnf
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/bnf/context/DbProcedure.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.bnf.context; import java.sql.DatabaseMetaData; import java.sql.ResultSet; import java.sql.SQLException; import java.util.ArrayList; im...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/bnf
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/bnf/context/DbSchema.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.bnf.context; import java.sql.DatabaseMetaData; import java.sql.ResultSet; import java.sql.SQLException; import java.util.ArrayList; i...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/bnf
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/bnf/context/DbTableOrView.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.bnf.context; import java.sql.DatabaseMetaData; import java.sql.ResultSet; import java.sql.SQLException; import java.util.ArrayList; im...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/Command.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command; import java.sql.SQLException; import java.util.ArrayList; import org.h2.api.ErrorCode; import org.h2.engine.Constants; import...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/CommandContainer.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command; import java.util.ArrayList; import org.h2.api.DatabaseEventListener; import org.h2.command.dml.Explain; import org.h2.command...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/CommandInterface.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command; import java.util.ArrayList; import org.h2.expression.ParameterInterface; import org.h2.result.ResultInterface; import org.h2....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/CommandList.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command; import java.util.ArrayList; import org.h2.expression.ParameterInterface; import org.h2.result.ResultInterface; /** * Repres...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/CommandRemote.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command; import java.io.IOException; import java.util.ArrayList; import org.h2.engine.Constants; import org.h2.engine.GeneratedKeysMo...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/Parser.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group * * Nicolas Fortin, Atelier SIG, IRSTV FR CNRS 24888 * Support for the operator "&&" as an alias for SPATIAL_INTERSECTS */ package org.h2.command; im...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/Prepared.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command; import java.util.ArrayList; import java.util.List; import org.h2.api.DatabaseEventListener; import org.h2.api.ErrorCode; impo...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/AlterIndexRename.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.engine.Database; import org.h2.engine....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/AlterSchemaRename.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.engine.Database; import org.h2.engine....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/AlterTableAddConstraint.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import java.util.ArrayList; import java.util.Collections; import java.util.HashSet; import org.h2.api.ErrorCode; import o...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/AlterTableAlterColumn.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import java.util.ArrayList; import java.util.HashSet; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/AlterTableDropConstraint.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.constraint.Constraint; import org.h2.e...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/AlterTableRename.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.engine.Database; import org.h2.engine....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/AlterTableRenameColumn.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.engine.Database; import org.h2.engine....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/AlterTableRenameConstraint.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.constraint.Constraint; import org.h2.e...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/AlterUser.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.engine.Database; import org.h2.engine....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/AlterView.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.command.CommandInterface; import org.h2.engine.Right; import org.h2.engine.Session; import org.h2.message.D...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/Analyze.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import java.util.ArrayList; import org.h2.command.CommandInterface; import org.h2.command.Prepared; import org.h2.engine....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/CommandWithColumns.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import java.util.ArrayList; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.engine.Co...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/CreateAggregate.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.engine.Database; import org.h2.engine....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/CreateConstant.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.engine.Database; import org.h2.engine....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/CreateFunctionAlias.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.engine.Database; import org.h2.engine....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/CreateIndex.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.engine.Constants; import org.h2.engine...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/CreateLinkedTable.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.engine.Database; import org.h2.engine....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/CreateRole.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.engine.Database; import org.h2.engine....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/CreateSchema.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import java.util.ArrayList; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.engine.Dat...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/CreateSequence.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.engine.Database; import org.h2.engine....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/CreateSynonym.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.engine.Database; import org.h2.engine....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/CreateSynonymData.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.engine.Session; import org.h2.schema.Schema; /** * The data required to create a synonym. */ public clas...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/CreateTable.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import java.util.ArrayList; import java.util.HashSet; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/CreateTableData.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import java.util.ArrayList; import org.h2.engine.Session; import org.h2.schema.Schema; import org.h2.table.Column; import...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/CreateTrigger.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.api.Trigger; import org.h2.command.CommandInterface; import org.h2.engine.Data...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/CreateUser.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.engine.Database; import org.h2.engine....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/CreateUserDataType.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.engine.Database; import org.h2.engine....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/CreateView.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import java.util.ArrayList; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.command.dm...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/DeallocateProcedure.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.command.CommandInterface; import org.h2.engine.Session; /** * This class represents the statement * DEAL...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/DefineCommand.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.command.Prepared; import org.h2.engine.Session; import org.h2.result.ResultInterface; /** * This class re...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/DropAggregate.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.engine.Database; import org.h2.engine....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/DropConstant.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.engine.Database; import org.h2.engine....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/DropDatabase.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import java.util.ArrayList; import org.h2.command.CommandInterface; import org.h2.engine.Database; import org.h2.engine.D...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/DropFunctionAlias.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.engine.Database; import org.h2.engine....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/DropIndex.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import java.util.ArrayList; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.constrain...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/DropRole.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.engine.Constants; import org.h2.engine...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/DropSchema.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.constraint.ConstraintActionType; impor...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/DropSequence.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.engine.Database; import org.h2.engine....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/DropSynonym.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.engine.Session; import org.h2.message....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/DropTable.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import java.util.List; import java.util.concurrent.CopyOnWriteArrayList; import org.h2.api.ErrorCode; import org.h2.comma...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/DropTrigger.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.engine.Database; import org.h2.engine....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/DropUser.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.engine.Database; import org.h2.engine....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/DropUserDataType.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.engine.Database; import org.h2.engine....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/DropView.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import java.util.ArrayList; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.constraint...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/GrantRevoke.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import java.util.ArrayList; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.engine.Da...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/PrepareProcedure.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import java.util.ArrayList; import org.h2.command.CommandInterface; import org.h2.command.Prepared; import org.h2.engine....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/SchemaCommand.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.engine.Session; import org.h2.schema.Schema; /** * This class represents a non-transaction statement that...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/SetComment.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.engine.Comment; import org.h2.engine.D...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/ddl/TruncateTable.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.engine.Right; import org.h2.engine.Ses...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/dml/AlterSequence.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.dml; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.command.ddl.SchemaCommand; import org....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/dml/AlterTableSet.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.dml; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.command.ddl.SchemaCommand; import org....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/dml/BackupCommand.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.dml; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.util.ArrayList; import j...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/dml/Call.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.dml; import java.sql.ResultSet; import org.h2.command.CommandInterface; import org.h2.command.Prepared; import org.h2.engine.S...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/dml/Delete.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.dml; import org.h2.api.Trigger; import org.h2.command.CommandInterface; import org.h2.command.Prepared; import org.h2.engine.R...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/dml/ExecuteProcedure.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.dml; import java.util.ArrayList; import org.h2.command.CommandInterface; import org.h2.command.Prepared; import org.h2.engine....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/dml/Explain.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.dml; import java.util.Map; import java.util.TreeMap; import java.util.Map.Entry; import org.h2.command.CommandInterface; impor...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/dml/Insert.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.dml; import java.util.ArrayList; import java.util.HashMap; import org.h2.api.ErrorCode; import org.h2.api.Trigger; import org....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/dml/Merge.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.dml; import java.util.ArrayList; import org.h2.api.ErrorCode; import org.h2.api.Trigger; import org.h2.command.Command; import...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/dml/MergeUsing.java
/* * Copyright 2004-2017 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.dml; import java.util.ArrayList; import java.util.Arrays; import java.util.HashMap; import java.util.HashSet; import org.h2.ap...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/dml/NoOperation.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.dml; import org.h2.command.CommandInterface; import org.h2.command.Prepared; import org.h2.engine.Session; import org.h2.resul...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/dml/Optimizer.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.dml; import java.util.Random; import java.util.concurrent.TimeUnit; import org.h2.engine.Session; import org.h2.expression.Ex...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/dml/Query.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.dml; import java.util.ArrayList; import java.util.HashSet; import org.h2.api.ErrorCode; import org.h2.command.Prepared; impor...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/dml/Replace.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.dml; import org.h2.api.ErrorCode; import org.h2.api.Trigger; import org.h2.command.Command; import org.h2.command.CommandInter...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/dml/RunScriptCommand.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.dml; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.nio.charset.Char...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/dml/ScriptBase.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.dml; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.IOException; import java.io.Input...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/dml/ScriptCommand.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.dml; import java.io.BufferedInputStream; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/dml/Select.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.dml; import org.h2.api.ErrorCode; import org.h2.api.Trigger; import org.h2.command.CommandInterface; import org.h2.engine.Cons...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/dml/SelectListColumnResolver.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.dml; import java.util.ArrayList; import org.h2.expression.Expression; import org.h2.expression.ExpressionColumn; import org.h2...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/dml/SelectOrderBy.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.dml; import org.h2.expression.Expression; /** * Describes one element of the ORDER BY clause of a query. */ public class Se...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/dml/SelectUnion.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.dml; import java.util.ArrayList; import java.util.HashSet; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/dml/Set.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.dml; import java.text.Collator; import org.h2.api.ErrorCode; import org.h2.command.CommandInterface; import org.h2.command.Pre...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/dml/SetTypes.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.dml; import java.util.ArrayList; /** * The list of setting for a SET statement. */ public class SetTypes { /** * ...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/dml/TransactionCommand.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.dml; import org.h2.command.CommandInterface; import org.h2.command.Prepared; import org.h2.engine.Database; import org.h2.engi...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/command/dml/Update.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.dml; import java.util.ArrayList; import java.util.HashMap; import java.util.Objects; import org.h2.api.ErrorCode; import org....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/compress/CompressDeflate.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.compress; import java.util.StringTokenizer; import java.util.zip.DataFormatException; import java.util.zip.Deflater; import java.util....
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/compress/CompressLZF.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * * This code is based on the LZF algorithm from Marc Lehmann. It is a * re-implementation of the C code: * http://cvs.schmorp.de/liblzf/lzf_c.c?view=markup * http://cvs.schmorp.de...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/compress/CompressNo.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.compress; /** * This class implements a data compression algorithm that does in fact not * compress. This is useful if the data can ...
0
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2
java-sources/ai/platon/pulsar/pulsar-h2/1.4.196/org/h2/compress/Compressor.java
/* * Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.compress; /** * Each data compression algorithm must implement this interface. */ public interface Compressor { /** * No ...