blob: fa438763eb61652c6bf3cd93c507d41c4d4361db [file] [log] [blame]
/*
* 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.phoenix.end2end.salted;
import static org.apache.phoenix.util.TestUtil.TEST_PROPERTIES;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.Properties;
import org.apache.phoenix.end2end.ParallelStatsDisabledIT;
import org.apache.phoenix.util.PropertiesUtil;
import org.junit.Test;
public class SaltedTableVarLengthRowKeyIT extends ParallelStatsDisabledIT {
private static final String TEST_TABLE = generateUniqueName();
private static void initTableValues() throws Exception {
Properties props = PropertiesUtil.deepCopy(TEST_PROPERTIES);
Connection conn = DriverManager.getConnection(getUrl(), props);
conn.setAutoCommit(false);
try {
createTestTable(getUrl(), "create table " + TEST_TABLE + " " +
" (key_string varchar not null primary key, kv integer) SALT_BUCKETS=4\n");
String query = "UPSERT INTO " + TEST_TABLE + " VALUES(?,?)";
PreparedStatement stmt = conn.prepareStatement(query);
stmt.setString(1, "a");
stmt.setInt(2, 1);
stmt.execute();
stmt.setString(1, "ab");
stmt.setInt(2, 2);
stmt.execute();
stmt.setString(1, "abc");
stmt.setInt(2, 3);
stmt.execute();
conn.commit();
} finally {
conn.close();
}
}
@Test
public void testSelectValueWithPointKeyQuery() throws Exception {
Properties props = PropertiesUtil.deepCopy(TEST_PROPERTIES);
Connection conn = DriverManager.getConnection(getUrl(), props);
conn.setAutoCommit(false);
try {
initTableValues();
String query;
PreparedStatement stmt;
ResultSet rs;
query = "SELECT * FROM " + TEST_TABLE + " where key_string = 'abc'";
stmt = conn.prepareStatement(query);
rs = stmt.executeQuery();
assertTrue(rs.next());
assertEquals("abc", rs.getString(1));
assertEquals(3, rs.getInt(2));
assertFalse(rs.next());
} finally {
conn.close();
}
}
}