Added missing functions into disk logstream source

This commit is contained in:
Andre Lorbach 2011-11-02 16:41:06 +01:00
parent 6b6724ab00
commit f086f6ec3e

View File

@ -92,13 +92,6 @@ class LogStreamDisk extends LogStream {
return SUCCESS; return SUCCESS;
} }
/*
* Helper function to clear the current querystring!
*/
public function ResetFilters()
{
// nothing todo in this logstream
}
/** /**
* Close the file. * Close the file.
@ -677,6 +670,97 @@ class LogStreamDisk extends LogStream {
} }
/*
* Helper function to clear the current querystring!
*/
public function ResetFilters()
{
// nothing todo in this logstream
return SUCCESS;
}
/*
* Helper function to verify fields | not needed in disk logstream!
*/
public abstract function VerifyFields( $arrProperitesIn )
{
return SUCCESS;
}
/*
* Helper function to create missing fields | not needed in disk logstream!
*/
public abstract function CreateMissingFields( $arrProperitesIn )
{
return SUCCESS;
}
/*
* Helper function to verify indexes | not needed in disk logstream!
*/
public abstract function VerifyIndexes( $arrProperitesIn )
{
return SUCCESS;
}
/*
* Helper function to create missing indexes | not needed in disk logstream!
*/
public abstract function CreateMissingIndexes( $arrProperitesIn )
{
return SUCCESS;
}
/*
* Helper function to verify triggers | not needed in disk logstream!
*/
public abstract function VerifyChecksumTrigger( $myTriggerProperty )
{
return SUCCESS;
}
/*
* Helper function to verify triggers | not needed in disk logstream!
*/
public abstract function CreateMissingTrigger( $myTriggerProperty, $myCheckSumProperty )
{
return SUCCESS;
}
/*
* Helper function to create missing triggers | not needed in disk logstream!
*/
public abstract function GetCreateMissingTriggerSQL( $myDBTriggerField, $myDBTriggerCheckSumField )
{
return SUCCESS;
}
/*
* Helper function to verify checksum field | not needed in disk logstream!
*/
public abstract function VerifyChecksumField( )
{
return SUCCESS;
}
/*
* Helper function to correct the checksum field | not needed in disk logstream!
*/
public abstract function ChangeChecksumFieldUnsigned( )
{
return SUCCESS;
}
/** /**
* Implementation of ConsolidateItemListByField * Implementation of ConsolidateItemListByField
* *