mirror of
https://github.com/sasjs/core.git
synced 2026-01-04 08:00:05 +00:00
These macros provide a centralised approach for locking tables where updates can happen in multiple passes. The mp_lockfilecheck macro will also verify the ability to create a SAS lock (if a v9 library engine, and not a view)
16 lines
246 B
SAS
16 lines
246 B
SAS
/**
|
|
@file
|
|
@brief init file for tests
|
|
|
|
**/
|
|
|
|
/* location in metadata or SAS Drive for temporary files */
|
|
%let mcTestAppLoc=/Public/temp/macrocore;
|
|
|
|
%macro loglevel();
|
|
%if &_debug=2477 %then %do;
|
|
options mprint;
|
|
%end;
|
|
%mend;
|
|
|
|
%loglevel() |