Hi All, I tried a simple join in two tables in SQL server for testing purpose.
Two tables test01 & test02 with same data (just 4 records). Join query: *select t1.num_tiny, t2.num_small from mssql.dbo.`test01` t1 join mssql.dbo.`test02` t2 on t1.num_int = t2.num_int;* *Error: SYSTEM ERROR: IllegalStateException: Failure while closing accountor. Expected private and shared pools to be set to initial values. However, one or more were not. Stats are* * zone init allocated delta * * private 1000000 926272 73728 * * shared 9999000000 9999000000 0.* *Fragment 0:0* What could be the reason for that? Anything wrong from my side or is it a bug? Regards, Devender
