Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DBCOMPATIBILITY (0.06 sec)

  1. tests/compose.yml

          while [ "$$counter" -le 20 ]; do
            if su - omm -c "gsql -U omm -d postgres -c \"SELECT 1;\""; then
              echo "Creating database gorm...";
              su - omm -c "gsql -U omm -d postgres -c \"CREATE DATABASE gorm DBCOMPATIBILITY '\'PG\'';\"";
              echo "Database initialized successfully";
              break;
            fi;
            echo "Waiting for database to be ready... ($$counter/12)";
            sleep 5;
            counter=$$(($$counter + 1));
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Mon Aug 04 04:07:30 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  2. .github/workflows/tests.yml

                then
                  echo "Creating database gorm..."
                  sql_file='/tmp/create_database.sql'
                  echo "CREATE DATABASE gorm DBCOMPATIBILITY 'PG';" > ${sql_file}
                  docker cp "${sql_file}" "${container_name}":"${sql_file}"
                  docker exec -i ${TTY_FLAG} "${container_name}" bash -c "su - omm -c 'gsql -U omm -f ${sql_file}'"
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Mon Jul 21 02:46:58 UTC 2025
    - 8.9K bytes
    - Viewed (0)
Back to top