constants.py 345 B

12345678
  1. # comment placed on partition tables created by the partitioner
  2. # partition tables that do not have this comment will _never_
  3. # be deleted by the partitioner, this is a safety mechanism so
  4. # manually created partitions aren't accidently cleaned up
  5. AUTO_PARTITIONED_COMMENT = "psqlextra_auto_partitioned"
  6. __all__ = ["AUTO_PARTITIONED_COMMENT"]