8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-26 08:43:03 +01:00
firebird-mirror/src/dsql/parse.awk

8 lines
343 B
Awk
Raw Normal View History

2001-05-23 15:26:42 +02:00
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}