1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
# YML test files are auto-generated from SQL files and should not be edited by
# hand. To help enforce this, the "hash" field in the file must match a hash
# computed by SQLFluff when running the tests. Please run
# `python test/generate_parse_fixture_yml.py` to generate them after adding or
# altering SQL files.
_hash: 0b634bc3cad1afb1344957fa51eeb1e7115d94e2c30635877c25bbed99daad50
file:
- statement:
lock_table_statement:
- keyword: LOCK
- keyword: TABLE
- table_reference:
naked_identifier: films
- keyword: IN
- keyword: SHARE
- keyword: MODE
- statement_terminator: ;
- statement:
lock_table_statement:
- keyword: LOCK
- keyword: TABLE
- table_reference:
naked_identifier: films
- keyword: IN
- keyword: SHARE
- keyword: ROW
- keyword: EXCLUSIVE
- keyword: MODE
- statement_terminator: ;
- statement:
lock_table_statement:
- keyword: LOCK
- keyword: TABLE
- table_reference:
naked_identifier: team
- keyword: IN
- keyword: ACCESS
- keyword: EXCLUSIVE
- keyword: MODE
- statement_terminator: ;
- statement:
lock_table_statement:
- keyword: lock
- keyword: table
- table_reference:
naked_identifier: stud1
- keyword: IN
- keyword: SHARE
- keyword: UPDATE
- keyword: EXCLUSIVE
- keyword: MODE
- statement_terminator: ;
- statement:
lock_table_statement:
- keyword: LOCK
- keyword: TABLE
- table_reference:
naked_identifier: crontable
- keyword: NOWAIT
- statement_terminator: ;
|