22 lines
		
	
	
		
			543 B
		
	
	
	
		
			Plaintext
		
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			543 B
		
	
	
	
		
			Plaintext
		
	
	
-- source ../include/ps_truncate_all_tables.inc
 | 
						|
# Tests for sys schema
 | 
						|
# Verify the sys.memory_global_total view
 | 
						|
 | 
						|
# Ensure structure changes don't slip in
 | 
						|
DESC sys.memory_global_total;
 | 
						|
 | 
						|
# Make sure view select does not error, but ignore results
 | 
						|
--disable_result_log
 | 
						|
SELECT * FROM sys.memory_global_total;
 | 
						|
--enable_result_log
 | 
						|
 | 
						|
 | 
						|
# Ensure structure changes don't slip in
 | 
						|
DESC sys.x$memory_global_total;
 | 
						|
 | 
						|
# Make sure view select does not error, but ignore results
 | 
						|
--disable_result_log
 | 
						|
SELECT * FROM sys.x$memory_global_total;
 | 
						|
--enable_result_log
 | 
						|
 |