Пример #1
0
        public void TestSignaturesV3_0_X()
        {
            string tableName = "my_new_table";

            _spark.Range(15).Write().Format("delta").SaveAsTable(tableName);

            Assert.IsType <DeltaTable>(DeltaTable.ForName(tableName));
            DeltaTable table = DeltaTable.ForName(_spark, tableName);

            table.UpgradeTableProtocol(1, 3);
        }