Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for urlparser (0.16 sec)

  1. internal/s3select/sql/parser.go

    		`|(?P<Float>\d*\.\d+([eE][-+]?\d+)?)` +
    		`|(?P<Int>\d+)` +
    		`|(?P<LitString>'([^']*('')?)*')` +
    		`|(?P<Operators><>|!=|<=|>=|\.\*|\[\*\]|[-+*/%,.()=<>\[\]])`,
    	))
    
    	// SQLParser is used to parse SQL statements
    	SQLParser = participle.MustBuild(
    		&Select{},
    		participle.Lexer(sqlLexer),
    		participle.CaseInsensitive("Keyword"),
    		participle.CaseInsensitive("Timeword"),
    	)
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 12.9K bytes
    - Viewed (0)
Back to top