Esempio n. 1
0
        public async Task CompileForStoreAsyncTest()
        {
            var query = "select 1 from #system.dual()";

            var arrays = await InstanceCreator.CompileForStoreAsync(query, Guid.NewGuid().ToString(), new SystemSchemaProvider());

            Assert.IsNotNull(arrays.DllFile);
            Assert.IsNotNull(arrays.PdbFile);

            Assert.AreNotEqual(0, arrays.DllFile.Length);
            Assert.AreNotEqual(0, arrays.PdbFile.Length);
        }