Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for row_number (0.05 sec)

  1. tests/generics_test.go

    	}).Where("name in ?", names).Find(ctx)
    	if err == nil {
    		t.Fatalf("Preload should failed, but got nil")
    	}
    
    	if DB.Dialector.Name() == "mysql" {
    		// mysql 5.7 doesn't support row_number()
    		if strings.HasPrefix(DB.Dialector.(*mysql.Dialector).ServerVersion, "5.7") {
    			return
    		}
    	}
    	results, err = db.Preload("Pets", func(db gorm.PreloadBuilder) error {
    		db.LimitPerRecord(5)
    		return nil
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Thu Sep 04 13:13:16 UTC 2025
    - 28K bytes
    - Viewed (0)
  2. generics.go

    						partitionBy.Exprs = append(partitionBy.Exprs, clause.Expr{SQL: "?", Vars: []interface{}{clause.Column{Name: column.Name}}})
    					}
    
    					rnnColumn := clause.Column{Name: "gorm_preload_rnn"}
    					sql := "ROW_NUMBER() OVER (PARTITION BY ? ?)"
    					vars := []interface{}{partitionBy}
    					if orderBy, ok := q.db.Statement.Clauses["ORDER BY"]; ok {
    						vars = append(vars, orderBy)
    					} else {
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Thu Sep 04 13:13:16 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  3. .github/workflows/maven.yml

          - name: Upload test artifacts
            uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
            if: failure() || cancelled()
            with:
              name: ${{ github.run_number }}-full-build-artifact-${{ runner.os }}-${{ matrix.java }}
              path: '**/target/surefire-reports/*'
    
      integration-tests:
        needs: initial-build
        runs-on: ${{ matrix.os }}
        strategy:
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Mon Aug 25 07:07:00 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/entity/FacetQueryViewTest.java

            @Override
            public String getLdapAttrDescription() {
                return "description";
            }
    
            @Override
            public String getLdapAttrRoomNumber() {
                return "roomNumber";
            }
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/job/SuggestJobTest.java

            @Override
            public String getLdapAttrDescription() {
                return "description";
            }
    
            @Override
            public String getLdapAttrRoomNumber() {
                return "roomNumber";
            }
        }
    
        // Mock SystemHelper implementation
        private class MockSystemHelper extends SystemHelper {
            @Override
            public File createTempFile(String prefix, String suffix) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 31.4K bytes
    - Viewed (0)
  6. RELEASE.md

            `tf.quantization.fake_quant_with_min_max_vars_per_channel_gradient`.
        *   New endpoints in tf.strings namespace: `tf.strings.join` (corresponds to
            `tf.string_join`), `tf.strings.regex_replace`, `tf.strings.to_number`
            (corresponds to `tf.string_to_number`), `tf.strings.strip` (corresponds
            to `tf.string_strip`), `tf.strings.substr`, `tf.strings.to_hash_bucket`
            (corresponds to `tf.string_to_hash_bucket`),
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Mon Aug 18 20:54:38 UTC 2025
    - 740K bytes
    - Viewed (1)
Back to top