Begin;
Initialize;
InitializeSession "TESTDB";

Command "drop database TESTDB if exists";
Command "create database TESTDB";

Command "create table users (id int generated by default as identity not null, name nvarchar(50) not null, primary key(id))";

Command "insert users values (1, 'foo')";

# bug no.2236 (case 1) - following should succeed
NotExists "d:\\dm\\data\\TESTDB\\users\\IDENTITY";

TerminateSession;
Terminate;
End;

