Package org.voltdb.utils

Examples of org.voltdb.utils.NotImplementedException


        throw new NotImplementedException(this + " is a read-only Catalog object");
    }

    @Override
    public boolean retainAll(Collection<?> c) {
        throw new NotImplementedException(this + " is a read-only Catalog object");
    }
View Full Code Here


        }
        this.generator = generator;
    }
   
    public void remove() {
        throw new NotImplementedException("Remove not implemented");
    }
View Full Code Here

                                    case QUIT:
                                        stop = true;
                                        break;
                                    case DESCRIBE:
                                    case SHOW:
                                        throw new NotImplementedException("The command '" + targetCmd + "' is is not implemented");
                                    default:
                                        throw new RuntimeException("Unexpected command '" + targetCmd);
                                } // SWITCH
                            }
                            // Otherwise we'll send it to the server to deal with as an ad-hoc query
View Full Code Here

            }
            return Integer.valueOf(this.idx++);
        }
        @Override
        public void remove() {
            throw new NotImplementedException("PartitionSet Iterator remove is not implemented");
        }
View Full Code Here

     * @see edu.brown.utils.JSONSerializable#fromJSON(org.json.JSONObject,
     * org.voltdb.catalog.Database)
     */
    @Override
    public void fromJSON(JSONObject jsonObject, Database catalogDb) throws JSONException {
        throw new NotImplementedException("Cannot import JSON catalog");
    }
View Full Code Here

     * @see edu.brown.utils.JSONSerializable#load(java.lang.String,
     * org.voltdb.catalog.Database)
     */
    @Override
    public void load(File inputPath, Database catalogDb) throws IOException {
        throw new NotImplementedException("Cannot import JSON catalog");
    }
View Full Code Here

    /**
     * Store data from mapOutput tables to reduceInput table
     * reduceInput table should merge all incoming data from the mapOutput tables.
     */
    public Status storeData(int partition, VoltTable vt) {
        throw new NotImplementedException("Not able to store data for non-MapReduce transactions");
    }
View Full Code Here

            //
            } else {
                //
                // TODO: Need to figure out how COMPARE_IN is going to work
                //
                throw new NotImplementedException("The '" + exp_type + "' Expression is not yet supported");
            }
        // -------------------------------
        // AGGREGATES
        // -------------------------------
        } else if (exp instanceof AggregateExpression) {
View Full Code Here

        }
    }

    @Override
    public void trackingEnable(Long txnId) throws EEException {
        throw new NotImplementedException("Read/Write Set Tracking is disabled for IPC ExecutionEngine");
    }
View Full Code Here

    public void trackingEnable(Long txnId) throws EEException {
        throw new NotImplementedException("Read/Write Set Tracking is disabled for IPC ExecutionEngine");
    }
    @Override
    public void trackingFinish(Long txnId) throws EEException {
        throw new NotImplementedException("Read/Write Set Tracking is disabled for IPC ExecutionEngine");
    }
View Full Code Here

TOP

Related Classes of org.voltdb.utils.NotImplementedException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.