blob: a23d5d2cc63b3fb6b2122cbf9a01ab52fb99a04a [file] [log] [blame]
/*
Derby - Class org.apache.derby.impl.sql.catalog.SYSDUMMY1RowFactory
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to you under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package org.apache.derby.impl.sql.catalog;
import java.sql.Types;
import org.apache.derby.iapi.sql.dictionary.SystemColumn;
import org.apache.derby.iapi.sql.dictionary.TupleDescriptor;
import org.apache.derby.iapi.sql.dictionary.DataDictionary;
import org.apache.derby.iapi.sql.dictionary.DataDescriptorGenerator;
import org.apache.derby.iapi.sql.dictionary.CatalogRowFactory;
import org.apache.derby.iapi.error.StandardException;
import org.apache.derby.shared.common.sanity.SanityManager;
import org.apache.derby.iapi.sql.execute.ExecRow;
import org.apache.derby.iapi.sql.execute.ExecIndexRow;
import org.apache.derby.iapi.sql.execute.ExecutionFactory;
import org.apache.derby.iapi.types.DataValueFactory;
import org.apache.derby.iapi.types.RowLocation;
import org.apache.derby.iapi.types.DataValueDescriptor;
import org.apache.derby.iapi.types.SQLChar;
import org.apache.derby.iapi.services.uuid.UUIDFactory;
import org.apache.derby.catalog.UUID;
/**
* Factory for creating a SYSDUMMY1 row.
*
* @version 0.01
*
*/
class SYSDUMMY1RowFactory extends CatalogRowFactory
{
protected static final int SYSDUMMY1_COLUMN_COUNT = 1;
private static final String[] uuids =
{
"c013800d-00f8-5b70-bea3-00000019ed88", // catalog UUID
"c013800d-00f8-5b70-fee8-000000198c88" // heap UUID.
};
/*
* CONSTRUCTORS
*/
SYSDUMMY1RowFactory(UUIDFactory uuidf,
ExecutionFactory ef,
DataValueFactory dvf)
{
super(uuidf,ef,dvf);
initInfo(SYSDUMMY1_COLUMN_COUNT, "SYSDUMMY1",
null, null, uuids);
}
/**
* Make a SYSDUMMY1 row
*
*
* @return Row suitable for inserting into SYSSTATISTICS.
*
* @exception StandardException thrown on failure
*/
public ExecRow makeRow(TupleDescriptor td, TupleDescriptor parent)
throws StandardException
{
ExecRow row = getExecutionFactory().getValueRow(SYSDUMMY1_COLUMN_COUNT);
row.setColumn(1, new SQLChar("Y"));
return row;
}
public TupleDescriptor buildDescriptor(
ExecRow row,
TupleDescriptor parentDesc,
DataDictionary dd)
throws StandardException
{
return null;
}
/**
* Builds a list of columns suitable for creating this Catalog.
*
*
* @return array of SystemColumn suitable for making this catalog.
*/
public SystemColumn[] buildColumnList()
{
return new SystemColumn[] {
SystemColumnImpl.getColumn("IBMREQD", Types.CHAR, true, 1)
};
}
}