ClickHouse/tests/integration/test_executable_dictionary/user_scripts/source.py
2022-03-22 17:39:58 +01:00

11 lines
215 B
Python
Executable File

#!/usr/bin/python3
import sys
if __name__ == "__main__":
print("1" + "\t" + "Value 1", end="\n")
print("2" + "\t" + "Value 2", end="\n")
print("3" + "\t" + "Value 3", end="\n")
sys.stdout.flush()