Skip to content

Commit

Permalink
Remove the QueryPlanBuilder and AlgProcessor
Browse files Browse the repository at this point in the history
  • Loading branch information
tobias-weber committed Jul 16, 2024
1 parent 9cbcbc9 commit 7ec14a7
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 391 deletions.
17 changes: 0 additions & 17 deletions dbms/src/main/java/org/polypheny/db/PolyphenyDb.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.List;
import java.util.Optional;
import java.util.TimeZone;
import java.util.UUID;
Expand All @@ -46,7 +45,6 @@
import org.polypheny.db.catalog.entity.LogicalAdapter.AdapterType;
import org.polypheny.db.catalog.exceptions.GenericRuntimeException;
import org.polypheny.db.catalog.impl.PolyCatalog;
import org.polypheny.db.catalog.logistic.DataModel;
import org.polypheny.db.cli.PolyModesConverter;
import org.polypheny.db.config.Config;
import org.polypheny.db.config.Config.ConfigListener;
Expand All @@ -63,8 +61,6 @@
import org.polypheny.db.iface.Authenticator;
import org.polypheny.db.iface.QueryInterfaceManager;
import org.polypheny.db.information.StatusService;
import org.polypheny.db.languages.LanguageManager;
import org.polypheny.db.languages.QueryLanguage;
import org.polypheny.db.monitoring.core.MonitoringServiceProvider;
import org.polypheny.db.monitoring.information.HostInformation;
import org.polypheny.db.monitoring.information.JavaInformation;
Expand All @@ -75,7 +71,6 @@
import org.polypheny.db.partition.PartitionManagerFactory;
import org.polypheny.db.partition.PartitionManagerFactoryImpl;
import org.polypheny.db.plugins.PolyPluginManager;
import org.polypheny.db.processing.AlgProcessor;
import org.polypheny.db.processing.AuthenticatorImpl;
import org.polypheny.db.processing.ConstraintEnforceAttacher.ConstraintTracker;
import org.polypheny.db.routing.RoutingManager;
Expand Down Expand Up @@ -382,18 +377,6 @@ public void join( final long millis ) throws InterruptedException {
PartitionManagerFactory.setAndGetInstance( new PartitionManagerFactoryImpl() );
FrequencyMap.setAndGetInstance( new FrequencyMapImpl( catalog ) );

// temporary add sql and rel here
QueryLanguage language = new QueryLanguage(
DataModel.RELATIONAL,
"alg",
List.of( "alg", "algebra" ),
null,
AlgProcessor::new,
null,
q -> null,
c -> c );
LanguageManager.getINSTANCE().addQueryLanguage( language );

// Initialize index manager
initializeIndexManager();

Expand Down
96 changes: 0 additions & 96 deletions dbms/src/main/java/org/polypheny/db/processing/AlgProcessor.java

This file was deleted.

177 changes: 0 additions & 177 deletions webui/src/main/java/org/polypheny/db/webui/QueryPlanBuilder.java

This file was deleted.

Loading

0 comments on commit 7ec14a7

Please sign in to comment.