ClickHouse/tests/integration/test_executable_dictionary/user_scripts/input_implicit.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
150 B
Python
Raw Normal View History

2021-12-25 13:34:17 +00:00
#!/usr/bin/python3
import sys
if __name__ == "__main__":
2021-12-25 13:34:17 +00:00
for line in sys.stdin:
print("Key " + line, end="")
2021-12-25 13:34:17 +00:00
sys.stdout.flush()