use of org.apache.hadoop.hive.metastore.api.DefaultConstraintsRequest in project hive by apache.
the class NonCatCallsWithCatalog method defaultConstraints.
@Test
public void defaultConstraints() throws TException {
String constraintName = "ocdv";
// Table in non 'hive' catalog
List<SQLDefaultConstraint> dv = new SQLDefaultConstraintBuilder().onTable(testTables[2]).addColumn("test_col1").setConstraintName(constraintName).setDefaultVal("empty").build(conf);
client.addDefaultConstraint(dv);
DefaultConstraintsRequest rqst = new DefaultConstraintsRequest(testTables[2].getCatName(), testTables[2].getDbName(), testTables[2].getTableName());
List<SQLDefaultConstraint> fetched = client.getDefaultConstraints(rqst);
Assert.assertEquals(1, fetched.size());
Assert.assertEquals(expectedCatalog(), fetched.get(0).getCatName());
Assert.assertEquals(testTables[2].getDbName(), fetched.get(0).getTable_db());
Assert.assertEquals(testTables[2].getTableName(), fetched.get(0).getTable_name());
Assert.assertEquals("test_col1", fetched.get(0).getColumn_name());
Assert.assertEquals("empty", fetched.get(0).getDefault_value());
Assert.assertEquals(constraintName, fetched.get(0).getDc_name());
Assert.assertTrue(fetched.get(0).isEnable_cstr());
Assert.assertFalse(fetched.get(0).isValidate_cstr());
Assert.assertFalse(fetched.get(0).isRely_cstr());
Assert.assertEquals(testTables[2].getCatName(), fetched.get(0).getCatName());
client.dropConstraint(testTables[2].getDbName(), testTables[2].getTableName(), constraintName);
rqst = new DefaultConstraintsRequest(testTables[2].getCatName(), testTables[2].getDbName(), testTables[2].getTableName());
fetched = client.getDefaultConstraints(rqst);
Assert.assertTrue(fetched.isEmpty());
}
use of org.apache.hadoop.hive.metastore.api.DefaultConstraintsRequest in project hive by apache.
the class TestDefaultConstraint method createTableWithConstraintsPkInOtherCatalog.
@Test
public void createTableWithConstraintsPkInOtherCatalog() throws TException {
Table table = new TableBuilder().setTableName("table_in_other_catalog_with_constraints").inDb(inOtherCatalog).addCol("col1", "int").addCol("col2", "varchar(32)").build(metaStore.getConf());
List<SQLDefaultConstraint> dv = new SQLDefaultConstraintBuilder().onTable(table).addColumn("col1").setDefaultVal(0).build(metaStore.getConf());
client.createTableWithConstraints(table, null, null, null, null, dv, null);
DefaultConstraintsRequest rqst = new DefaultConstraintsRequest(table.getCatName(), table.getDbName(), table.getTableName());
List<SQLDefaultConstraint> fetched = client.getDefaultConstraints(rqst);
dv.get(0).setDc_name(fetched.get(0).getDc_name());
Assert.assertEquals(dv, fetched);
client.dropConstraint(table.getCatName(), table.getDbName(), table.getTableName(), dv.get(0).getDc_name());
rqst = new DefaultConstraintsRequest(table.getCatName(), table.getDbName(), table.getTableName());
fetched = client.getDefaultConstraints(rqst);
Assert.assertTrue(fetched.isEmpty());
}
use of org.apache.hadoop.hive.metastore.api.DefaultConstraintsRequest in project hive by apache.
the class TestDefaultConstraint method getNoSuchTable.
@Test
public void getNoSuchTable() throws TException {
DefaultConstraintsRequest rqst = new DefaultConstraintsRequest(DEFAULT_CATALOG_NAME, DEFAULT_DATABASE_NAME, "nosuch");
List<SQLDefaultConstraint> dv = client.getDefaultConstraints(rqst);
Assert.assertTrue(dv.isEmpty());
}
use of org.apache.hadoop.hive.metastore.api.DefaultConstraintsRequest in project hive by apache.
the class TestDefaultConstraint method createTableWithConstraintsPk.
@Test
public void createTableWithConstraintsPk() throws TException {
String constraintName = "ctwcdv";
Table table = new TableBuilder().setTableName("table_with_constraints").addCol("col1", "int").addCol("col2", "varchar(32)").build(metaStore.getConf());
List<SQLDefaultConstraint> dv = new SQLDefaultConstraintBuilder().onTable(table).addColumn("col1").setConstraintName(constraintName).setDefaultVal(0).build(metaStore.getConf());
client.createTableWithConstraints(table, null, null, null, null, dv, null);
DefaultConstraintsRequest rqst = new DefaultConstraintsRequest(table.getCatName(), table.getDbName(), table.getTableName());
List<SQLDefaultConstraint> fetched = client.getDefaultConstraints(rqst);
Assert.assertEquals(dv, fetched);
client.dropConstraint(table.getCatName(), table.getDbName(), table.getTableName(), constraintName);
rqst = new DefaultConstraintsRequest(table.getCatName(), table.getDbName(), table.getTableName());
fetched = client.getDefaultConstraints(rqst);
Assert.assertTrue(fetched.isEmpty());
}
use of org.apache.hadoop.hive.metastore.api.DefaultConstraintsRequest in project hive by apache.
the class TestDefaultConstraint method doubleAddUniqueConstraint.
@Test
public void doubleAddUniqueConstraint() throws TException {
Table table = testTables[0];
// Make sure get on a table with no key returns empty list
DefaultConstraintsRequest rqst = new DefaultConstraintsRequest(table.getCatName(), table.getDbName(), table.getTableName());
List<SQLDefaultConstraint> fetched = client.getDefaultConstraints(rqst);
Assert.assertTrue(fetched.isEmpty());
// Single column unnamed primary key in default catalog and database
List<SQLDefaultConstraint> dv = new SQLDefaultConstraintBuilder().onTable(table).addColumn("col1").setDefaultVal(0).build(metaStore.getConf());
client.addDefaultConstraint(dv);
try {
dv = new SQLDefaultConstraintBuilder().onTable(table).addColumn("col2").setDefaultVal("this string intentionally left empty").build(metaStore.getConf());
client.addDefaultConstraint(dv);
Assert.fail();
} catch (InvalidObjectException | TApplicationException e) {
// NOP
}
}
Aggregations