Deveel.Data.AlterTableTests.DropPrimary C# (CSharp) Method

DropPrimary() private method

private DropPrimary ( ) : void
return void
        public void DropPrimary()
        {
            var tableName = ObjectName.Parse("APP.test_table");

            AdminQuery.DropPrimaryKey(tableName);

            var pkey = AdminQuery.Session.Access().QueryTablePrimaryKey(tableName);

            Assert.IsNull(pkey);
        }