# For shutting up Test::Harness.
# Has to work on 5.004 which doesn't have Tie::StdHandle.
package Dev::Null;
sub WRITE {}
sub PRINT {}
sub PRINTF {}
sub TIEHANDLE {
my $class = shift;
my $
#ifndef AGENT_NULL_H
#define AGENT_NULL_H
#ifdef __cplusplus
extern "C" {
#endif
/*
* null.h
*/
/*
* literally does nothing and is used as a final handler for
* "do-nothing" nodes tha
create view global_xactTable as
select
cast(global_xid as char(2)) as gxid,
status,
case when first_instant is NULL then 'NULL' else 'false' end as readOnly,
cast (username as ch
--
-- this test shows the current supported null value functionality
--
autocommit off;
-- trying to define null and not null for a column
create table a(a1 int null not null);
-- same as above, exc