├── .github ├── release-drafter.yml ├── renovate.json └── workflows │ ├── gradle.yml │ ├── release-notes.yml │ └── release.yml ├── .gitignore ├── .idea └── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── .sdkmanrc ├── Dockerfile ├── LICENSE ├── README.md ├── gradle.properties ├── gradle ├── test-config.gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── plugin ├── build.gradle └── src │ ├── main │ ├── groovy │ │ └── gpc │ │ │ └── pgext │ │ │ ├── GrailsPostgresqlExtensionsGrailsPlugin.groovy │ │ │ └── hibernate │ │ │ ├── PostgresqlExtensionsDialect.groovy │ │ │ ├── criterion │ │ │ ├── array │ │ │ │ ├── PgArrayExpression.groovy │ │ │ │ ├── PgArrayILikeFunction.groovy │ │ │ │ └── PgEmptinessExpression.groovy │ │ │ ├── hstore │ │ │ │ ├── PgHstoreILikeValueFunction.groovy │ │ │ │ ├── PgHstoreOperatorExpression.groovy │ │ │ │ └── PgHstoreValueFunction.groovy │ │ │ └── json │ │ │ │ ├── PgJsonExpression.groovy │ │ │ │ └── PgJsonbOperator.groovy │ │ │ ├── order │ │ │ ├── OrderByRandom.groovy │ │ │ └── OrderBySqlFormula.groovy │ │ │ ├── postgresql │ │ │ └── criteria │ │ │ │ ├── ArrayCriterias.groovy │ │ │ │ ├── HstoreCriterias.groovy │ │ │ │ └── JsonCriterias.groovy │ │ │ ├── usertype │ │ │ ├── ArrayType.java │ │ │ ├── BidiEnumMap.groovy │ │ │ ├── HstoreHelper.groovy │ │ │ ├── HstoreMapType.groovy │ │ │ ├── HstoreParseException.groovy │ │ │ ├── HstoreParser.java │ │ │ ├── JsonMapType.groovy │ │ │ └── JsonbMapType.groovy │ │ │ └── utils │ │ │ ├── CriteriaUtils.groovy │ │ │ └── PgArrayUtils.groovy │ └── resources │ │ └── META-INF │ │ └── groovy │ │ └── org.codehaus.groovy.runtime.ExtensionModule │ └── test │ └── groovy │ └── gpc │ └── pgext │ └── hibernate │ └── usertype │ ├── HstoreHelperSpec.groovy │ └── HstoreParserSpec.groovy ├── settings.gradle └── test-apps └── app1 ├── build.gradle ├── grails-app ├── conf │ ├── application.yml │ ├── logback-spring.xml │ └── spring │ │ └── resources.groovy ├── domain │ └── app │ │ ├── array │ │ ├── TestDouble.groovy │ │ ├── TestEnum.groovy │ │ ├── TestFloat.groovy │ │ ├── TestInteger.groovy │ │ ├── TestLong.groovy │ │ ├── TestString.groovy │ │ └── TestUuid.groovy │ │ ├── criteria │ │ └── array │ │ │ ├── Like.groovy │ │ │ └── User.groovy │ │ ├── hstore │ │ └── TestHstoreMap.groovy │ │ └── json │ │ ├── TestMapJson.groovy │ │ └── TestMapJsonb.groovy ├── init │ └── app │ │ └── Application.groovy └── services │ └── app │ ├── criteria │ ├── array │ │ └── PgArrayTestSearchService.groovy │ ├── hstore │ │ └── PgHstoreTestSearchService.groovy │ └── json │ │ ├── PgJsonTestSearchService.groovy │ │ └── PgJsonbTestSearchService.groovy │ └── order │ └── PgOrderService.groovy └── src └── integration-test └── groovy └── test ├── array ├── PgContainsCriteriaTestServiceIntegrationSpec.groovy ├── PgEqualsCriteriaTestServiceIntegrationSpec.groovy ├── PgILikeCriteriaTestServiceIntegrationSpec.groovy ├── PgIsContainedByCriteriaTestServiceIntegrationSpec.groovy ├── PgIsEmptyCriteriaTestServiceIntegrationSpec.groovy ├── PgIsEmptyOrContainsCriteriaTestServiceIntegrationSpec.groovy ├── PgIsNotEmptyCriteriaTestServiceIntegrationSpec.groovy ├── PgNotEqualsCriteriaTestServiceIntegrationSpec.groovy ├── PgOverlapsCriteriaTestServiceIntegrationSpec.groovy ├── PostgresqlArraysDomainIntegrationSpec.groovy └── UuidBuilder.groovy ├── hstore ├── PgHstoreContainsIntegrationSpec.groovy ├── PgHstoreContainsKeyIntegrationSpec.groovy ├── PgHstoreILikeValueFunctionIntegrationSpec.groovy ├── PgHstoreIsContainedIntegrationSpec.groovy └── PostgresqlHstoreMapDomainIntegrationSpec.groovy ├── json ├── PgJsonEqualsIntegrationSpec.groovy ├── PgJsonPathsIntegrationSpec.groovy ├── PgJsonValuesIntegrationSpec.groovy ├── PgJsonbContainsIntegrationSpec.groovy ├── PgJsonbEqualsIntegrationSpec.groovy ├── PgJsonbIsContainedIntegrationSpec.groovy ├── PgJsonbPathsIntegrationSpec.groovy ├── PgJsonbValuesIntegrationSpec.groovy ├── PostgresqlJsonMapDomainIntegrationSpec.groovy └── PostgresqlJsonbMapDomainIntegrationSpec.groovy └── order └── PgOrderIntegrationSpec.groovy /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/gradle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/.github/workflows/gradle.yml -------------------------------------------------------------------------------- /.github/workflows/release-notes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/.github/workflows/release-notes.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.sdkmanrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/.sdkmanrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/test-config.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/gradle/test-config.gradle -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/gradlew.bat -------------------------------------------------------------------------------- /plugin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/plugin/build.gradle -------------------------------------------------------------------------------- /plugin/src/main/groovy/gpc/pgext/GrailsPostgresqlExtensionsGrailsPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/plugin/src/main/groovy/gpc/pgext/GrailsPostgresqlExtensionsGrailsPlugin.groovy -------------------------------------------------------------------------------- /plugin/src/main/groovy/gpc/pgext/hibernate/PostgresqlExtensionsDialect.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/plugin/src/main/groovy/gpc/pgext/hibernate/PostgresqlExtensionsDialect.groovy -------------------------------------------------------------------------------- /plugin/src/main/groovy/gpc/pgext/hibernate/criterion/array/PgArrayExpression.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/plugin/src/main/groovy/gpc/pgext/hibernate/criterion/array/PgArrayExpression.groovy -------------------------------------------------------------------------------- /plugin/src/main/groovy/gpc/pgext/hibernate/criterion/array/PgArrayILikeFunction.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/plugin/src/main/groovy/gpc/pgext/hibernate/criterion/array/PgArrayILikeFunction.groovy -------------------------------------------------------------------------------- /plugin/src/main/groovy/gpc/pgext/hibernate/criterion/array/PgEmptinessExpression.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/plugin/src/main/groovy/gpc/pgext/hibernate/criterion/array/PgEmptinessExpression.groovy -------------------------------------------------------------------------------- /plugin/src/main/groovy/gpc/pgext/hibernate/criterion/hstore/PgHstoreILikeValueFunction.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/plugin/src/main/groovy/gpc/pgext/hibernate/criterion/hstore/PgHstoreILikeValueFunction.groovy -------------------------------------------------------------------------------- /plugin/src/main/groovy/gpc/pgext/hibernate/criterion/hstore/PgHstoreOperatorExpression.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/plugin/src/main/groovy/gpc/pgext/hibernate/criterion/hstore/PgHstoreOperatorExpression.groovy -------------------------------------------------------------------------------- /plugin/src/main/groovy/gpc/pgext/hibernate/criterion/hstore/PgHstoreValueFunction.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/plugin/src/main/groovy/gpc/pgext/hibernate/criterion/hstore/PgHstoreValueFunction.groovy -------------------------------------------------------------------------------- /plugin/src/main/groovy/gpc/pgext/hibernate/criterion/json/PgJsonExpression.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/plugin/src/main/groovy/gpc/pgext/hibernate/criterion/json/PgJsonExpression.groovy -------------------------------------------------------------------------------- /plugin/src/main/groovy/gpc/pgext/hibernate/criterion/json/PgJsonbOperator.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/plugin/src/main/groovy/gpc/pgext/hibernate/criterion/json/PgJsonbOperator.groovy -------------------------------------------------------------------------------- /plugin/src/main/groovy/gpc/pgext/hibernate/order/OrderByRandom.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/plugin/src/main/groovy/gpc/pgext/hibernate/order/OrderByRandom.groovy -------------------------------------------------------------------------------- /plugin/src/main/groovy/gpc/pgext/hibernate/order/OrderBySqlFormula.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/plugin/src/main/groovy/gpc/pgext/hibernate/order/OrderBySqlFormula.groovy -------------------------------------------------------------------------------- /plugin/src/main/groovy/gpc/pgext/hibernate/postgresql/criteria/ArrayCriterias.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/plugin/src/main/groovy/gpc/pgext/hibernate/postgresql/criteria/ArrayCriterias.groovy -------------------------------------------------------------------------------- /plugin/src/main/groovy/gpc/pgext/hibernate/postgresql/criteria/HstoreCriterias.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/plugin/src/main/groovy/gpc/pgext/hibernate/postgresql/criteria/HstoreCriterias.groovy -------------------------------------------------------------------------------- /plugin/src/main/groovy/gpc/pgext/hibernate/postgresql/criteria/JsonCriterias.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/plugin/src/main/groovy/gpc/pgext/hibernate/postgresql/criteria/JsonCriterias.groovy -------------------------------------------------------------------------------- /plugin/src/main/groovy/gpc/pgext/hibernate/usertype/ArrayType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/plugin/src/main/groovy/gpc/pgext/hibernate/usertype/ArrayType.java -------------------------------------------------------------------------------- /plugin/src/main/groovy/gpc/pgext/hibernate/usertype/BidiEnumMap.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/plugin/src/main/groovy/gpc/pgext/hibernate/usertype/BidiEnumMap.groovy -------------------------------------------------------------------------------- /plugin/src/main/groovy/gpc/pgext/hibernate/usertype/HstoreHelper.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/plugin/src/main/groovy/gpc/pgext/hibernate/usertype/HstoreHelper.groovy -------------------------------------------------------------------------------- /plugin/src/main/groovy/gpc/pgext/hibernate/usertype/HstoreMapType.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/plugin/src/main/groovy/gpc/pgext/hibernate/usertype/HstoreMapType.groovy -------------------------------------------------------------------------------- /plugin/src/main/groovy/gpc/pgext/hibernate/usertype/HstoreParseException.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/plugin/src/main/groovy/gpc/pgext/hibernate/usertype/HstoreParseException.groovy -------------------------------------------------------------------------------- /plugin/src/main/groovy/gpc/pgext/hibernate/usertype/HstoreParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/plugin/src/main/groovy/gpc/pgext/hibernate/usertype/HstoreParser.java -------------------------------------------------------------------------------- /plugin/src/main/groovy/gpc/pgext/hibernate/usertype/JsonMapType.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/plugin/src/main/groovy/gpc/pgext/hibernate/usertype/JsonMapType.groovy -------------------------------------------------------------------------------- /plugin/src/main/groovy/gpc/pgext/hibernate/usertype/JsonbMapType.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/plugin/src/main/groovy/gpc/pgext/hibernate/usertype/JsonbMapType.groovy -------------------------------------------------------------------------------- /plugin/src/main/groovy/gpc/pgext/hibernate/utils/CriteriaUtils.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/plugin/src/main/groovy/gpc/pgext/hibernate/utils/CriteriaUtils.groovy -------------------------------------------------------------------------------- /plugin/src/main/groovy/gpc/pgext/hibernate/utils/PgArrayUtils.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/plugin/src/main/groovy/gpc/pgext/hibernate/utils/PgArrayUtils.groovy -------------------------------------------------------------------------------- /plugin/src/main/resources/META-INF/groovy/org.codehaus.groovy.runtime.ExtensionModule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/plugin/src/main/resources/META-INF/groovy/org.codehaus.groovy.runtime.ExtensionModule -------------------------------------------------------------------------------- /plugin/src/test/groovy/gpc/pgext/hibernate/usertype/HstoreHelperSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/plugin/src/test/groovy/gpc/pgext/hibernate/usertype/HstoreHelperSpec.groovy -------------------------------------------------------------------------------- /plugin/src/test/groovy/gpc/pgext/hibernate/usertype/HstoreParserSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/plugin/src/test/groovy/gpc/pgext/hibernate/usertype/HstoreParserSpec.groovy -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/settings.gradle -------------------------------------------------------------------------------- /test-apps/app1/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/build.gradle -------------------------------------------------------------------------------- /test-apps/app1/grails-app/conf/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/grails-app/conf/application.yml -------------------------------------------------------------------------------- /test-apps/app1/grails-app/conf/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/grails-app/conf/logback-spring.xml -------------------------------------------------------------------------------- /test-apps/app1/grails-app/conf/spring/resources.groovy: -------------------------------------------------------------------------------- 1 | // Place your Spring DSL code here 2 | beans = { 3 | } 4 | -------------------------------------------------------------------------------- /test-apps/app1/grails-app/domain/app/array/TestDouble.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/grails-app/domain/app/array/TestDouble.groovy -------------------------------------------------------------------------------- /test-apps/app1/grails-app/domain/app/array/TestEnum.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/grails-app/domain/app/array/TestEnum.groovy -------------------------------------------------------------------------------- /test-apps/app1/grails-app/domain/app/array/TestFloat.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/grails-app/domain/app/array/TestFloat.groovy -------------------------------------------------------------------------------- /test-apps/app1/grails-app/domain/app/array/TestInteger.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/grails-app/domain/app/array/TestInteger.groovy -------------------------------------------------------------------------------- /test-apps/app1/grails-app/domain/app/array/TestLong.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/grails-app/domain/app/array/TestLong.groovy -------------------------------------------------------------------------------- /test-apps/app1/grails-app/domain/app/array/TestString.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/grails-app/domain/app/array/TestString.groovy -------------------------------------------------------------------------------- /test-apps/app1/grails-app/domain/app/array/TestUuid.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/grails-app/domain/app/array/TestUuid.groovy -------------------------------------------------------------------------------- /test-apps/app1/grails-app/domain/app/criteria/array/Like.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/grails-app/domain/app/criteria/array/Like.groovy -------------------------------------------------------------------------------- /test-apps/app1/grails-app/domain/app/criteria/array/User.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/grails-app/domain/app/criteria/array/User.groovy -------------------------------------------------------------------------------- /test-apps/app1/grails-app/domain/app/hstore/TestHstoreMap.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/grails-app/domain/app/hstore/TestHstoreMap.groovy -------------------------------------------------------------------------------- /test-apps/app1/grails-app/domain/app/json/TestMapJson.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/grails-app/domain/app/json/TestMapJson.groovy -------------------------------------------------------------------------------- /test-apps/app1/grails-app/domain/app/json/TestMapJsonb.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/grails-app/domain/app/json/TestMapJsonb.groovy -------------------------------------------------------------------------------- /test-apps/app1/grails-app/init/app/Application.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/grails-app/init/app/Application.groovy -------------------------------------------------------------------------------- /test-apps/app1/grails-app/services/app/criteria/array/PgArrayTestSearchService.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/grails-app/services/app/criteria/array/PgArrayTestSearchService.groovy -------------------------------------------------------------------------------- /test-apps/app1/grails-app/services/app/criteria/hstore/PgHstoreTestSearchService.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/grails-app/services/app/criteria/hstore/PgHstoreTestSearchService.groovy -------------------------------------------------------------------------------- /test-apps/app1/grails-app/services/app/criteria/json/PgJsonTestSearchService.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/grails-app/services/app/criteria/json/PgJsonTestSearchService.groovy -------------------------------------------------------------------------------- /test-apps/app1/grails-app/services/app/criteria/json/PgJsonbTestSearchService.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/grails-app/services/app/criteria/json/PgJsonbTestSearchService.groovy -------------------------------------------------------------------------------- /test-apps/app1/grails-app/services/app/order/PgOrderService.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/grails-app/services/app/order/PgOrderService.groovy -------------------------------------------------------------------------------- /test-apps/app1/src/integration-test/groovy/test/array/PgContainsCriteriaTestServiceIntegrationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/src/integration-test/groovy/test/array/PgContainsCriteriaTestServiceIntegrationSpec.groovy -------------------------------------------------------------------------------- /test-apps/app1/src/integration-test/groovy/test/array/PgEqualsCriteriaTestServiceIntegrationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/src/integration-test/groovy/test/array/PgEqualsCriteriaTestServiceIntegrationSpec.groovy -------------------------------------------------------------------------------- /test-apps/app1/src/integration-test/groovy/test/array/PgILikeCriteriaTestServiceIntegrationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/src/integration-test/groovy/test/array/PgILikeCriteriaTestServiceIntegrationSpec.groovy -------------------------------------------------------------------------------- /test-apps/app1/src/integration-test/groovy/test/array/PgIsContainedByCriteriaTestServiceIntegrationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/src/integration-test/groovy/test/array/PgIsContainedByCriteriaTestServiceIntegrationSpec.groovy -------------------------------------------------------------------------------- /test-apps/app1/src/integration-test/groovy/test/array/PgIsEmptyCriteriaTestServiceIntegrationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/src/integration-test/groovy/test/array/PgIsEmptyCriteriaTestServiceIntegrationSpec.groovy -------------------------------------------------------------------------------- /test-apps/app1/src/integration-test/groovy/test/array/PgIsEmptyOrContainsCriteriaTestServiceIntegrationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/src/integration-test/groovy/test/array/PgIsEmptyOrContainsCriteriaTestServiceIntegrationSpec.groovy -------------------------------------------------------------------------------- /test-apps/app1/src/integration-test/groovy/test/array/PgIsNotEmptyCriteriaTestServiceIntegrationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/src/integration-test/groovy/test/array/PgIsNotEmptyCriteriaTestServiceIntegrationSpec.groovy -------------------------------------------------------------------------------- /test-apps/app1/src/integration-test/groovy/test/array/PgNotEqualsCriteriaTestServiceIntegrationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/src/integration-test/groovy/test/array/PgNotEqualsCriteriaTestServiceIntegrationSpec.groovy -------------------------------------------------------------------------------- /test-apps/app1/src/integration-test/groovy/test/array/PgOverlapsCriteriaTestServiceIntegrationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/src/integration-test/groovy/test/array/PgOverlapsCriteriaTestServiceIntegrationSpec.groovy -------------------------------------------------------------------------------- /test-apps/app1/src/integration-test/groovy/test/array/PostgresqlArraysDomainIntegrationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/src/integration-test/groovy/test/array/PostgresqlArraysDomainIntegrationSpec.groovy -------------------------------------------------------------------------------- /test-apps/app1/src/integration-test/groovy/test/array/UuidBuilder.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/src/integration-test/groovy/test/array/UuidBuilder.groovy -------------------------------------------------------------------------------- /test-apps/app1/src/integration-test/groovy/test/hstore/PgHstoreContainsIntegrationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/src/integration-test/groovy/test/hstore/PgHstoreContainsIntegrationSpec.groovy -------------------------------------------------------------------------------- /test-apps/app1/src/integration-test/groovy/test/hstore/PgHstoreContainsKeyIntegrationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/src/integration-test/groovy/test/hstore/PgHstoreContainsKeyIntegrationSpec.groovy -------------------------------------------------------------------------------- /test-apps/app1/src/integration-test/groovy/test/hstore/PgHstoreILikeValueFunctionIntegrationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/src/integration-test/groovy/test/hstore/PgHstoreILikeValueFunctionIntegrationSpec.groovy -------------------------------------------------------------------------------- /test-apps/app1/src/integration-test/groovy/test/hstore/PgHstoreIsContainedIntegrationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/src/integration-test/groovy/test/hstore/PgHstoreIsContainedIntegrationSpec.groovy -------------------------------------------------------------------------------- /test-apps/app1/src/integration-test/groovy/test/hstore/PostgresqlHstoreMapDomainIntegrationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/src/integration-test/groovy/test/hstore/PostgresqlHstoreMapDomainIntegrationSpec.groovy -------------------------------------------------------------------------------- /test-apps/app1/src/integration-test/groovy/test/json/PgJsonEqualsIntegrationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/src/integration-test/groovy/test/json/PgJsonEqualsIntegrationSpec.groovy -------------------------------------------------------------------------------- /test-apps/app1/src/integration-test/groovy/test/json/PgJsonPathsIntegrationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/src/integration-test/groovy/test/json/PgJsonPathsIntegrationSpec.groovy -------------------------------------------------------------------------------- /test-apps/app1/src/integration-test/groovy/test/json/PgJsonValuesIntegrationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/src/integration-test/groovy/test/json/PgJsonValuesIntegrationSpec.groovy -------------------------------------------------------------------------------- /test-apps/app1/src/integration-test/groovy/test/json/PgJsonbContainsIntegrationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/src/integration-test/groovy/test/json/PgJsonbContainsIntegrationSpec.groovy -------------------------------------------------------------------------------- /test-apps/app1/src/integration-test/groovy/test/json/PgJsonbEqualsIntegrationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/src/integration-test/groovy/test/json/PgJsonbEqualsIntegrationSpec.groovy -------------------------------------------------------------------------------- /test-apps/app1/src/integration-test/groovy/test/json/PgJsonbIsContainedIntegrationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/src/integration-test/groovy/test/json/PgJsonbIsContainedIntegrationSpec.groovy -------------------------------------------------------------------------------- /test-apps/app1/src/integration-test/groovy/test/json/PgJsonbPathsIntegrationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/src/integration-test/groovy/test/json/PgJsonbPathsIntegrationSpec.groovy -------------------------------------------------------------------------------- /test-apps/app1/src/integration-test/groovy/test/json/PgJsonbValuesIntegrationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/src/integration-test/groovy/test/json/PgJsonbValuesIntegrationSpec.groovy -------------------------------------------------------------------------------- /test-apps/app1/src/integration-test/groovy/test/json/PostgresqlJsonMapDomainIntegrationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/src/integration-test/groovy/test/json/PostgresqlJsonMapDomainIntegrationSpec.groovy -------------------------------------------------------------------------------- /test-apps/app1/src/integration-test/groovy/test/json/PostgresqlJsonbMapDomainIntegrationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/src/integration-test/groovy/test/json/PostgresqlJsonbMapDomainIntegrationSpec.groovy -------------------------------------------------------------------------------- /test-apps/app1/src/integration-test/groovy/test/order/PgOrderIntegrationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpc/grails-postgresql-extensions/HEAD/test-apps/app1/src/integration-test/groovy/test/order/PgOrderIntegrationSpec.groovy --------------------------------------------------------------------------------