8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-25 02:03:03 +01:00
firebird-mirror/src/dsql/parse.awk
2001-05-23 13:26:42 +00:00

8 lines
343 B
Awk

BEGIN {Output = 1}
/NOT_FLINTSTONE/ {if(FLINTSTONE) Output = 0 ; next}
/END_FLINTSTONE/ {if(FLINTSTONE) Output = 1 ; next}
/FLINT_CACHE/ {if(CACHE && FLINTSTONE) Output = 1 ; next}
/END_CACHE/ {if(CACHE && FLINTSTONE) Output = 0 ; next}
/FLINT_WAL/ {if(WAL && FLINTSTONE) Output = 1 ; next}
/END_WAL/ {if(WAL && FLINTSTONE) Output = 0 ; next}