Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for Elias (0.17 sec)

  1. statement.go

    			if stmt.TableExpr != nil {
    				stmt.TableExpr.Build(stmt)
    			} else {
    				write(v.Raw, stmt.Table)
    			}
    		} else {
    			write(v.Raw, v.Name)
    		}
    
    		if v.Alias != "" {
    			writer.WriteByte(' ')
    			write(v.Raw, v.Alias)
    		}
    	case clause.Column:
    		if v.Table != "" {
    			if v.Table == clause.CurrentTable {
    				write(v.Raw, stmt.Table)
    			} else {
    				write(v.Raw, v.Table)
    			}
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Fri Jan 12 08:42:21 GMT 2024
    - 19.8K bytes
    - Viewed (0)
  2. internal/s3select/unused-errors.go

    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errInvalidTableAlias(err error) *s3Error {
    	return &s3Error{
    		code:       "InvalidTableAlias",
    		message:    "The SQL expression contains an invalid table alias.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errUnsupportedSyntax(err error) *s3Error {
    	return &s3Error{
    		code:       "UnsupportedSyntax",
    		message:    "Encountered invalid syntax.",
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Feb 20 08:16:35 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  3. schema/field_test.go

    		BOOL    `gorm:"column:fbool"`
    		STRING  `gorm:"column:fstring"`
    		TIME    `gorm:"column:ftime"`
    		BYTES   `gorm:"column:fbytes"`
    	}
    )
    
    func TestTypeAliasField(t *testing.T) {
    	alias, err := schema.Parse(&TypeAlias{}, &sync.Map{}, schema.NamingStrategy{})
    	if err != nil {
    		t.Fatalf("Failed to parse TypeAlias with permission, got error %v", err)
    	}
    
    	fields := []*schema.Field{
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Sat Feb 19 09:02:53 GMT 2022
    - 12.7K bytes
    - Viewed (0)
  4. src/cmd/cgo/doc.go

    	symbols, use _ for local and remote.
    
    	Example:
    	//go:cgo_import_dynamic _ _ "libc.so.6"
    
    	For compatibility with current versions of SWIG,
    	#pragma dynimport is an alias for //go:cgo_import_dynamic.
    
    //go:cgo_dynamic_linker "<path>"
    
    	In internal linking mode, use "<path>" as the dynamic linker
    	in the final binary. This directive is only needed from one
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/operand_test.go

    	{"(4*4)(BP)", "16(BP)"},
    	{"(AX)", "(AX)"},
    	{"(BP)(CX*4)", "(BP)(CX*4)"},
    	{"(BP*8)", "0(BP*8)"},
    	{"(BX)", "(BX)"},
    	{"(SP)", "(SP)"},
    	{"*AX", "AX"}, // TODO: Should make * illegal here; a simple alias for JMP AX.
    	{"*runtimeĀ·_GetStdHandle(SB)", "*runtime._GetStdHandle(SB)"},
    	{"-(4+12)(DI)", "-16(DI)"},
    	{"-1(DI)(BX*1)", "-1(DI)(BX*1)"},
    	{"-96(DI)(BX*1)", "-96(DI)(BX*1)"},
    	{"0(AX)", "(AX)"},
    	{"0(BP)", "(BP)"},
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 18:31:05 GMT 2023
    - 23.9K bytes
    - Viewed (0)
Back to top