Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Kramar (2.98 sec)

  1. internal/s3select/sql/parser.go

    // AliasedExpression is an expression that can be optionally named
    type AliasedExpression struct {
    	Expression *Expression `parser:"@@"`
    	As         string      `parser:"[ \"AS\" @Ident | \"AS\" @LitString ]"`
    }
    
    // Grammar for Expression
    //
    // Expression          → AndCondition ("OR" AndCondition)*
    // AndCondition        → Condition ("AND" Condition)*
    // Condition           → "NOT" Condition | ConditionExpression
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 12.9K bytes
    - Viewed (0)
  2. src/bytes/bytes_test.go

    	out      string
    }
    
    var ReplaceTests = []ReplaceTest{
    	{"hello", "l", "L", 0, "hello"},
    	{"hello", "l", "L", -1, "heLLo"},
    	{"hello", "x", "X", -1, "hello"},
    	{"", "x", "X", -1, ""},
    	{"radar", "r", "<r>", -1, "<r>ada<r>"},
    	{"", "", "<>", -1, "<>"},
    	{"banana", "a", "<>", -1, "b<>n<>n<>"},
    	{"banana", "a", "<>", 1, "b<>nana"},
    	{"banana", "a", "<>", 1000, "b<>n<>n<>"},
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 24 16:07:25 GMT 2024
    - 56.2K bytes
    - Viewed (0)
Back to top